launch.scene 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_name": "launch",
  14. "_objFlags": 0,
  15. "_parent": null,
  16. "_children": [
  17. {
  18. "__id__": 2
  19. },
  20. {
  21. "__id__": 13
  22. },
  23. {
  24. "__id__": 22
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [],
  29. "_prefab": null,
  30. "autoReleaseAssets": false,
  31. "_globals": {
  32. "__id__": 145
  33. },
  34. "_id": "5dc5fd7e-a2c7-432f-a01d-243f04160417"
  35. },
  36. {
  37. "__type__": "cc.Node",
  38. "_name": "常驻节点",
  39. "_objFlags": 0,
  40. "_parent": {
  41. "__id__": 1
  42. },
  43. "_children": [],
  44. "_active": true,
  45. "_components": [
  46. {
  47. "__id__": 3
  48. },
  49. {
  50. "__id__": 4
  51. },
  52. {
  53. "__id__": 5
  54. },
  55. {
  56. "__id__": 11
  57. },
  58. {
  59. "__id__": 12
  60. }
  61. ],
  62. "_prefab": null,
  63. "_lpos": {
  64. "__type__": "cc.Vec3",
  65. "x": 0,
  66. "y": 0,
  67. "z": 0
  68. },
  69. "_lrot": {
  70. "__type__": "cc.Quat",
  71. "x": 0,
  72. "y": 0,
  73. "z": 0,
  74. "w": 1
  75. },
  76. "_lscale": {
  77. "__type__": "cc.Vec3",
  78. "x": 1,
  79. "y": 1,
  80. "z": 1
  81. },
  82. "_layer": 1073741824,
  83. "_euler": {
  84. "__type__": "cc.Vec3",
  85. "x": 0,
  86. "y": 0,
  87. "z": 0
  88. },
  89. "_id": "8b5BICJTdL/6+ea9BpwOm4"
  90. },
  91. {
  92. "__type__": "5f742zonNVE/o2YFlJ/uV/k",
  93. "_name": "",
  94. "_objFlags": 0,
  95. "node": {
  96. "__id__": 2
  97. },
  98. "_enabled": true,
  99. "__prefab": null,
  100. "_id": "10ACNLJFdD/bo0Uhd9gGtL"
  101. },
  102. {
  103. "__type__": "850c9U3U8lF7qZh1Td8+CGf",
  104. "_name": "",
  105. "_objFlags": 0,
  106. "node": {
  107. "__id__": 2
  108. },
  109. "_enabled": true,
  110. "__prefab": null,
  111. "canvasName": "Canvas/弹窗",
  112. "_id": "87t1troFJC97SuT1hyoqGW"
  113. },
  114. {
  115. "__type__": "66fa2+fc01NnbMfnT3eHR2d",
  116. "_name": "",
  117. "_objFlags": 0,
  118. "node": {
  119. "__id__": 2
  120. },
  121. "_enabled": true,
  122. "__prefab": null,
  123. "hostIndex": 1,
  124. "hosts": [
  125. {
  126. "__id__": 6
  127. },
  128. {
  129. "__id__": 7
  130. },
  131. {
  132. "__id__": 8
  133. },
  134. {
  135. "__id__": 9
  136. },
  137. {
  138. "__id__": 10
  139. }
  140. ],
  141. "tails": [
  142. "node=td_jj_api"
  143. ],
  144. "errorDataType": 0,
  145. "useDebugLog": true,
  146. "key": "🧧🎁🎉💰🤩😍💯🉐📦💥",
  147. "_id": "29Bx3WzF1H2Kqjh0gE1SUn"
  148. },
  149. {
  150. "__type__": "HostData",
  151. "alias": "袁浩",
  152. "host": "172.16.15.161",
  153. "port": 80,
  154. "SSL": false
  155. },
  156. {
  157. "__type__": "HostData",
  158. "alias": "测试服",
  159. "host": "cp.mokasz.com",
  160. "port": 80,
  161. "SSL": false
  162. },
  163. {
  164. "__type__": "HostData",
  165. "alias": "正式服",
  166. "host": "jiangjun.weiyijing.cn",
  167. "port": 443,
  168. "SSL": true
  169. },
  170. {
  171. "__type__": "HostData",
  172. "alias": "吴杰",
  173. "host": "172.16.15.179",
  174. "port": 80,
  175. "SSL": false
  176. },
  177. {
  178. "__type__": "HostData",
  179. "alias": "孙雄",
  180. "host": "172.16.15.207",
  181. "port": 80,
  182. "SSL": false
  183. },
  184. {
  185. "__type__": "46912Veh4FCIp0IHOrJlmmB",
  186. "_name": "",
  187. "_objFlags": 0,
  188. "node": {
  189. "__id__": 2
  190. },
  191. "_enabled": true,
  192. "__prefab": null,
  193. "_id": "94J3c2vUtOvJbFg7NUTkm6"
  194. },
  195. {
  196. "__type__": "4e037tz4etLaJV2KR4AcyoH",
  197. "_name": "",
  198. "_objFlags": 0,
  199. "node": {
  200. "__id__": 2
  201. },
  202. "_enabled": true,
  203. "__prefab": null,
  204. "_id": "caqusFpx9MEYwsm/JOxSdr"
  205. },
  206. {
  207. "__type__": "cc.Node",
  208. "_name": "应用",
  209. "_objFlags": 0,
  210. "_parent": {
  211. "__id__": 1
  212. },
  213. "_children": [
  214. {
  215. "__id__": 14
  216. },
  217. {
  218. "__id__": 17
  219. },
  220. {
  221. "__id__": 46
  222. },
  223. {
  224. "__id__": 141
  225. },
  226. {
  227. "__id__": 143
  228. }
  229. ],
  230. "_active": true,
  231. "_components": [
  232. {
  233. "__id__": 144
  234. }
  235. ],
  236. "_prefab": null,
  237. "_lpos": {
  238. "__type__": "cc.Vec3",
  239. "x": 0,
  240. "y": 0,
  241. "z": 0
  242. },
  243. "_lrot": {
  244. "__type__": "cc.Quat",
  245. "x": 0,
  246. "y": 0,
  247. "z": 0,
  248. "w": 1
  249. },
  250. "_lscale": {
  251. "__type__": "cc.Vec3",
  252. "x": 1,
  253. "y": 1,
  254. "z": 1
  255. },
  256. "_layer": 1073741824,
  257. "_euler": {
  258. "__type__": "cc.Vec3",
  259. "x": 0,
  260. "y": 0,
  261. "z": 0
  262. },
  263. "_id": "42PCeOfH9EvbOUO4Rxrtux"
  264. },
  265. {
  266. "__type__": "cc.Node",
  267. "_name": "配置",
  268. "_objFlags": 0,
  269. "_parent": {
  270. "__id__": 13
  271. },
  272. "_children": [],
  273. "_active": true,
  274. "_components": [
  275. {
  276. "__id__": 15
  277. },
  278. {
  279. "__id__": 16
  280. }
  281. ],
  282. "_prefab": null,
  283. "_lpos": {
  284. "__type__": "cc.Vec3",
  285. "x": 0,
  286. "y": 0,
  287. "z": 0
  288. },
  289. "_lrot": {
  290. "__type__": "cc.Quat",
  291. "x": 0,
  292. "y": 0,
  293. "z": 0,
  294. "w": 1
  295. },
  296. "_lscale": {
  297. "__type__": "cc.Vec3",
  298. "x": 1,
  299. "y": 1,
  300. "z": 1
  301. },
  302. "_layer": 1073741824,
  303. "_euler": {
  304. "__type__": "cc.Vec3",
  305. "x": 0,
  306. "y": 0,
  307. "z": 0
  308. },
  309. "_id": "e4lYBfvDFFz4gOjoXKgheU"
  310. },
  311. {
  312. "__type__": "f38e3ZUeKVBRpbMR2E76T4g",
  313. "_name": "",
  314. "_objFlags": 0,
  315. "node": {
  316. "__id__": 14
  317. },
  318. "_enabled": true,
  319. "__prefab": null,
  320. "_id": "cbFy/sUUVEHY81xzSP/Y8s"
  321. },
  322. {
  323. "__type__": "51d52bYDWtDULcTQMSnXbYo",
  324. "_name": "",
  325. "_objFlags": 0,
  326. "node": {
  327. "__id__": 14
  328. },
  329. "_enabled": true,
  330. "__prefab": null,
  331. "rootPath": "configs/",
  332. "configPaths": [
  333. "serverConfig",
  334. "general",
  335. "monster",
  336. "mission",
  337. "skill",
  338. "barrack",
  339. "fetter",
  340. "buff",
  341. "help",
  342. "star",
  343. "commanderskill",
  344. "task",
  345. "taskActive",
  346. "heroReward",
  347. "battle"
  348. ],
  349. "_id": "88L5h6NoRGJYvTDpOVcf2I"
  350. },
  351. {
  352. "__type__": "cc.Node",
  353. "_name": "更新",
  354. "_objFlags": 0,
  355. "_parent": {
  356. "__id__": 13
  357. },
  358. "_children": [],
  359. "_active": true,
  360. "_components": [
  361. {
  362. "__id__": 18
  363. },
  364. {
  365. "__id__": 19
  366. }
  367. ],
  368. "_prefab": null,
  369. "_lpos": {
  370. "__type__": "cc.Vec3",
  371. "x": 0,
  372. "y": 0,
  373. "z": 0
  374. },
  375. "_lrot": {
  376. "__type__": "cc.Quat",
  377. "x": 0,
  378. "y": 0,
  379. "z": 0,
  380. "w": 1
  381. },
  382. "_lscale": {
  383. "__type__": "cc.Vec3",
  384. "x": 1,
  385. "y": 1,
  386. "z": 1
  387. },
  388. "_layer": 1073741824,
  389. "_euler": {
  390. "__type__": "cc.Vec3",
  391. "x": 0,
  392. "y": 0,
  393. "z": 0
  394. },
  395. "_id": "55fIM1wEpBHZJs1mHx3tQ9"
  396. },
  397. {
  398. "__type__": "fcf29bmHThDzZf/lzYNo409",
  399. "_name": "",
  400. "_objFlags": 0,
  401. "node": {
  402. "__id__": 17
  403. },
  404. "_enabled": true,
  405. "__prefab": null,
  406. "hostAlias": "",
  407. "withCredentials": false,
  408. "timeout": 0,
  409. "responseType": 3,
  410. "onProgress": [],
  411. "useEncrypt": false,
  412. "useLog": true,
  413. "_id": "8aMQoPqx1PPbQ3jg3J1H8p"
  414. },
  415. {
  416. "__type__": "7623cr7iU9Ex7COweFMWR5R",
  417. "_name": "",
  418. "_objFlags": 0,
  419. "node": {
  420. "__id__": 17
  421. },
  422. "_enabled": true,
  423. "__prefab": null,
  424. "progressBar": {
  425. "__id__": 20
  426. },
  427. "gameName": "td-jj",
  428. "_id": "08acJx9i1FYb7X9/c7e/Ez"
  429. },
  430. {
  431. "__type__": "cc.ProgressBar",
  432. "_name": "",
  433. "_objFlags": 0,
  434. "node": {
  435. "__id__": 21
  436. },
  437. "_enabled": true,
  438. "__prefab": {
  439. "__id__": 140
  440. },
  441. "_barSprite": {
  442. "__id__": 130
  443. },
  444. "_mode": 0,
  445. "_totalLength": 589,
  446. "_progress": 0,
  447. "_reverse": false,
  448. "_id": "3az2Yv271K4Lro1SNRxnW9"
  449. },
  450. {
  451. "__type__": "cc.Node",
  452. "_name": "加载进度",
  453. "_objFlags": 0,
  454. "_parent": {
  455. "__id__": 22
  456. },
  457. "_children": [
  458. {
  459. "__id__": 127
  460. },
  461. {
  462. "__id__": 51
  463. },
  464. {
  465. "__id__": 132
  466. }
  467. ],
  468. "_active": true,
  469. "_components": [
  470. {
  471. "__id__": 135
  472. },
  473. {
  474. "__id__": 137
  475. },
  476. {
  477. "__id__": 139
  478. },
  479. {
  480. "__id__": 20
  481. }
  482. ],
  483. "_prefab": null,
  484. "_lpos": {
  485. "__type__": "cc.Vec3",
  486. "x": 0,
  487. "y": -536.5,
  488. "z": 0
  489. },
  490. "_lrot": {
  491. "__type__": "cc.Quat",
  492. "x": 0,
  493. "y": 0,
  494. "z": 0,
  495. "w": 1
  496. },
  497. "_lscale": {
  498. "__type__": "cc.Vec3",
  499. "x": 1,
  500. "y": 1,
  501. "z": 1
  502. },
  503. "_layer": 33554432,
  504. "_euler": {
  505. "__type__": "cc.Vec3",
  506. "x": 0,
  507. "y": 0,
  508. "z": 0
  509. },
  510. "_id": "65SrycwAhHKqfGOKZmv//T"
  511. },
  512. {
  513. "__type__": "cc.Node",
  514. "_name": "Canvas",
  515. "_objFlags": 0,
  516. "_parent": {
  517. "__id__": 1
  518. },
  519. "_children": [
  520. {
  521. "__id__": 23
  522. },
  523. {
  524. "__id__": 25
  525. },
  526. {
  527. "__id__": 29
  528. },
  529. {
  530. "__id__": 33
  531. },
  532. {
  533. "__id__": 21
  534. },
  535. {
  536. "__id__": 37
  537. },
  538. {
  539. "__id__": 118
  540. }
  541. ],
  542. "_active": true,
  543. "_components": [
  544. {
  545. "__id__": 121
  546. },
  547. {
  548. "__id__": 123
  549. },
  550. {
  551. "__id__": 125
  552. }
  553. ],
  554. "_prefab": null,
  555. "_lpos": {
  556. "__type__": "cc.Vec3",
  557. "x": 375,
  558. "y": 667,
  559. "z": 0
  560. },
  561. "_lrot": {
  562. "__type__": "cc.Quat",
  563. "x": 0,
  564. "y": 0,
  565. "z": 0,
  566. "w": 1
  567. },
  568. "_lscale": {
  569. "__type__": "cc.Vec3",
  570. "x": 1,
  571. "y": 1,
  572. "z": 1
  573. },
  574. "_layer": 33554432,
  575. "_euler": {
  576. "__type__": "cc.Vec3",
  577. "x": 0,
  578. "y": 0,
  579. "z": 0
  580. },
  581. "_id": "6daF/oVylAg50aIJ5wuz3+"
  582. },
  583. {
  584. "__type__": "cc.Node",
  585. "_name": "Camera",
  586. "_objFlags": 0,
  587. "_parent": {
  588. "__id__": 22
  589. },
  590. "_children": [],
  591. "_active": true,
  592. "_components": [
  593. {
  594. "__id__": 24
  595. }
  596. ],
  597. "_prefab": null,
  598. "_lpos": {
  599. "__type__": "cc.Vec3",
  600. "x": 0,
  601. "y": 0,
  602. "z": 1000
  603. },
  604. "_lrot": {
  605. "__type__": "cc.Quat",
  606. "x": 0,
  607. "y": 0,
  608. "z": 0,
  609. "w": 1
  610. },
  611. "_lscale": {
  612. "__type__": "cc.Vec3",
  613. "x": 1,
  614. "y": 1,
  615. "z": 1
  616. },
  617. "_layer": 33554432,
  618. "_euler": {
  619. "__type__": "cc.Vec3",
  620. "x": 0,
  621. "y": 0,
  622. "z": 0
  623. },
  624. "_id": "3frvBiTClFKqZWeUryrwQp"
  625. },
  626. {
  627. "__type__": "cc.Camera",
  628. "_name": "",
  629. "_objFlags": 0,
  630. "node": {
  631. "__id__": 23
  632. },
  633. "_enabled": true,
  634. "__prefab": null,
  635. "_projection": 0,
  636. "_priority": 1073741824,
  637. "_fov": 45,
  638. "_fovAxis": 0,
  639. "_orthoHeight": 667,
  640. "_near": 1,
  641. "_far": 2000,
  642. "_color": {
  643. "__type__": "cc.Color",
  644. "r": 0,
  645. "g": 0,
  646. "b": 0,
  647. "a": 255
  648. },
  649. "_depth": 1,
  650. "_stencil": 0,
  651. "_clearFlags": 6,
  652. "_rect": {
  653. "__type__": "cc.Rect",
  654. "x": 0,
  655. "y": 0,
  656. "width": 1,
  657. "height": 1
  658. },
  659. "_aperture": 19,
  660. "_shutter": 7,
  661. "_iso": 0,
  662. "_screenScale": 1,
  663. "_visibility": 41943040,
  664. "_targetTexture": null,
  665. "_id": "f5rskH76NIWJeSvZgs2a2Y"
  666. },
  667. {
  668. "__type__": "cc.Node",
  669. "_name": "将军顶住 场景",
  670. "_objFlags": 0,
  671. "_parent": {
  672. "__id__": 22
  673. },
  674. "_children": [],
  675. "_active": true,
  676. "_components": [
  677. {
  678. "__id__": 26
  679. },
  680. {
  681. "__id__": 27
  682. },
  683. {
  684. "__id__": 28
  685. }
  686. ],
  687. "_prefab": null,
  688. "_lpos": {
  689. "__type__": "cc.Vec3",
  690. "x": 0,
  691. "y": 0,
  692. "z": 0
  693. },
  694. "_lrot": {
  695. "__type__": "cc.Quat",
  696. "x": 0,
  697. "y": 0,
  698. "z": 0,
  699. "w": 1
  700. },
  701. "_lscale": {
  702. "__type__": "cc.Vec3",
  703. "x": 1,
  704. "y": 1,
  705. "z": 1
  706. },
  707. "_layer": 33554432,
  708. "_euler": {
  709. "__type__": "cc.Vec3",
  710. "x": 0,
  711. "y": 0,
  712. "z": 0
  713. },
  714. "_id": "9d21OA9rRJCKROJrP296XR"
  715. },
  716. {
  717. "__type__": "cc.UITransform",
  718. "_name": "",
  719. "_objFlags": 0,
  720. "node": {
  721. "__id__": 25
  722. },
  723. "_enabled": true,
  724. "__prefab": null,
  725. "_contentSize": {
  726. "__type__": "cc.Size",
  727. "width": 750,
  728. "height": 1334
  729. },
  730. "_anchorPoint": {
  731. "__type__": "cc.Vec2",
  732. "x": 0.5,
  733. "y": 0.5
  734. },
  735. "_id": "6c7mQkUJ9KnLB3MHUIouza"
  736. },
  737. {
  738. "__type__": "cc.Sprite",
  739. "_name": "",
  740. "_objFlags": 0,
  741. "node": {
  742. "__id__": 25
  743. },
  744. "_enabled": true,
  745. "__prefab": null,
  746. "_visFlags": 0,
  747. "_customMaterial": null,
  748. "_srcBlendFactor": 2,
  749. "_dstBlendFactor": 4,
  750. "_color": {
  751. "__type__": "cc.Color",
  752. "r": 255,
  753. "g": 255,
  754. "b": 255,
  755. "a": 255
  756. },
  757. "_spriteFrame": {
  758. "__uuid__": "ef1e170e-5887-4bfe-bed0-b76601d36d9d@f9941",
  759. "__expectedType__": "cc.SpriteFrame"
  760. },
  761. "_type": 0,
  762. "_fillType": 0,
  763. "_sizeMode": 1,
  764. "_fillCenter": {
  765. "__type__": "cc.Vec2",
  766. "x": 0,
  767. "y": 0
  768. },
  769. "_fillStart": 0,
  770. "_fillRange": 0,
  771. "_isTrimmedMode": true,
  772. "_useGrayscale": false,
  773. "_atlas": null,
  774. "_id": "0etAirNVVDx5rfP1mEKaws"
  775. },
  776. {
  777. "__type__": "cc.Widget",
  778. "_name": "",
  779. "_objFlags": 0,
  780. "node": {
  781. "__id__": 25
  782. },
  783. "_enabled": true,
  784. "__prefab": null,
  785. "_alignFlags": 45,
  786. "_target": null,
  787. "_left": 0,
  788. "_right": 0,
  789. "_top": 0,
  790. "_bottom": 0,
  791. "_horizontalCenter": 0,
  792. "_verticalCenter": 0,
  793. "_isAbsLeft": true,
  794. "_isAbsRight": true,
  795. "_isAbsTop": true,
  796. "_isAbsBottom": true,
  797. "_isAbsHorizontalCenter": true,
  798. "_isAbsVerticalCenter": true,
  799. "_originalWidth": 100,
  800. "_originalHeight": 100,
  801. "_alignMode": 2,
  802. "_lockFlags": 0,
  803. "_id": "30bYIDwmNKfaw4WyiqwV6n"
  804. },
  805. {
  806. "__type__": "cc.Node",
  807. "_name": "logo",
  808. "_objFlags": 0,
  809. "_parent": {
  810. "__id__": 22
  811. },
  812. "_children": [],
  813. "_active": true,
  814. "_components": [
  815. {
  816. "__id__": 30
  817. },
  818. {
  819. "__id__": 31
  820. },
  821. {
  822. "__id__": 32
  823. }
  824. ],
  825. "_prefab": null,
  826. "_lpos": {
  827. "__type__": "cc.Vec3",
  828. "x": 0,
  829. "y": 344.929,
  830. "z": 0
  831. },
  832. "_lrot": {
  833. "__type__": "cc.Quat",
  834. "x": 0,
  835. "y": 0,
  836. "z": 0,
  837. "w": 1
  838. },
  839. "_lscale": {
  840. "__type__": "cc.Vec3",
  841. "x": 1,
  842. "y": 1,
  843. "z": 1
  844. },
  845. "_layer": 33554432,
  846. "_euler": {
  847. "__type__": "cc.Vec3",
  848. "x": 0,
  849. "y": 0,
  850. "z": 0
  851. },
  852. "_id": "64gb90KshHYrFGCO5in9nX"
  853. },
  854. {
  855. "__type__": "cc.UITransform",
  856. "_name": "",
  857. "_objFlags": 0,
  858. "node": {
  859. "__id__": 29
  860. },
  861. "_enabled": true,
  862. "__prefab": null,
  863. "_contentSize": {
  864. "__type__": "cc.Size",
  865. "width": 615,
  866. "height": 317
  867. },
  868. "_anchorPoint": {
  869. "__type__": "cc.Vec2",
  870. "x": 0.5,
  871. "y": 0.5
  872. },
  873. "_id": "daND5GKR5K+I0tBLGz1HLc"
  874. },
  875. {
  876. "__type__": "cc.Sprite",
  877. "_name": "",
  878. "_objFlags": 0,
  879. "node": {
  880. "__id__": 29
  881. },
  882. "_enabled": true,
  883. "__prefab": null,
  884. "_visFlags": 0,
  885. "_customMaterial": null,
  886. "_srcBlendFactor": 2,
  887. "_dstBlendFactor": 4,
  888. "_color": {
  889. "__type__": "cc.Color",
  890. "r": 255,
  891. "g": 255,
  892. "b": 255,
  893. "a": 255
  894. },
  895. "_spriteFrame": {
  896. "__uuid__": "5fbdf3e0-3532-41eb-8311-292755090367@f9941",
  897. "__expectedType__": "cc.SpriteFrame"
  898. },
  899. "_type": 0,
  900. "_fillType": 0,
  901. "_sizeMode": 1,
  902. "_fillCenter": {
  903. "__type__": "cc.Vec2",
  904. "x": 0,
  905. "y": 0
  906. },
  907. "_fillStart": 0,
  908. "_fillRange": 0,
  909. "_isTrimmedMode": true,
  910. "_useGrayscale": false,
  911. "_atlas": null,
  912. "_id": "dbACa07wBMEa561SykSnDr"
  913. },
  914. {
  915. "__type__": "cc.Animation",
  916. "_name": "",
  917. "_objFlags": 0,
  918. "node": {
  919. "__id__": 29
  920. },
  921. "_enabled": true,
  922. "__prefab": null,
  923. "playOnLoad": true,
  924. "_clips": [
  925. {
  926. "__uuid__": "8a3e443b-f558-435b-8c2f-d3ebed6abe9b",
  927. "__expectedType__": "cc.AnimationClip"
  928. }
  929. ],
  930. "_defaultClip": {
  931. "__uuid__": "8a3e443b-f558-435b-8c2f-d3ebed6abe9b",
  932. "__expectedType__": "cc.AnimationClip"
  933. },
  934. "_id": "86sUstVZ5DNYSXUs+QI2Dh"
  935. },
  936. {
  937. "__type__": "cc.Node",
  938. "_name": "人物",
  939. "_objFlags": 0,
  940. "_parent": {
  941. "__id__": 22
  942. },
  943. "_children": [],
  944. "_active": true,
  945. "_components": [
  946. {
  947. "__id__": 34
  948. },
  949. {
  950. "__id__": 35
  951. },
  952. {
  953. "__id__": 36
  954. }
  955. ],
  956. "_prefab": null,
  957. "_lpos": {
  958. "__type__": "cc.Vec3",
  959. "x": 0,
  960. "y": -296,
  961. "z": 0
  962. },
  963. "_lrot": {
  964. "__type__": "cc.Quat",
  965. "x": 0,
  966. "y": 0,
  967. "z": 0,
  968. "w": 1
  969. },
  970. "_lscale": {
  971. "__type__": "cc.Vec3",
  972. "x": 1,
  973. "y": 1,
  974. "z": 1
  975. },
  976. "_layer": 33554432,
  977. "_euler": {
  978. "__type__": "cc.Vec3",
  979. "x": 0,
  980. "y": 0,
  981. "z": 0
  982. },
  983. "_id": "53NZlVjf1GvLmXXRAHh2oF"
  984. },
  985. {
  986. "__type__": "cc.UITransform",
  987. "_name": "",
  988. "_objFlags": 0,
  989. "node": {
  990. "__id__": 33
  991. },
  992. "_enabled": true,
  993. "__prefab": null,
  994. "_contentSize": {
  995. "__type__": "cc.Size",
  996. "width": 750,
  997. "height": 742
  998. },
  999. "_anchorPoint": {
  1000. "__type__": "cc.Vec2",
  1001. "x": 0.5,
  1002. "y": 0.5
  1003. },
  1004. "_id": "fbdjIyufRNCrKBdXiPlzlD"
  1005. },
  1006. {
  1007. "__type__": "cc.Sprite",
  1008. "_name": "",
  1009. "_objFlags": 0,
  1010. "node": {
  1011. "__id__": 33
  1012. },
  1013. "_enabled": true,
  1014. "__prefab": null,
  1015. "_visFlags": 0,
  1016. "_customMaterial": null,
  1017. "_srcBlendFactor": 2,
  1018. "_dstBlendFactor": 4,
  1019. "_color": {
  1020. "__type__": "cc.Color",
  1021. "r": 255,
  1022. "g": 255,
  1023. "b": 255,
  1024. "a": 255
  1025. },
  1026. "_spriteFrame": {
  1027. "__uuid__": "474fb313-1287-4269-99ca-841e4da7d9ae@f9941",
  1028. "__expectedType__": "cc.SpriteFrame"
  1029. },
  1030. "_type": 0,
  1031. "_fillType": 0,
  1032. "_sizeMode": 1,
  1033. "_fillCenter": {
  1034. "__type__": "cc.Vec2",
  1035. "x": 0,
  1036. "y": 0
  1037. },
  1038. "_fillStart": 0,
  1039. "_fillRange": 0,
  1040. "_isTrimmedMode": true,
  1041. "_useGrayscale": false,
  1042. "_atlas": null,
  1043. "_id": "fdTAKUjOxPJpQgl6fQAXKj"
  1044. },
  1045. {
  1046. "__type__": "cc.Widget",
  1047. "_name": "",
  1048. "_objFlags": 0,
  1049. "node": {
  1050. "__id__": 33
  1051. },
  1052. "_enabled": true,
  1053. "__prefab": null,
  1054. "_alignFlags": 4,
  1055. "_target": null,
  1056. "_left": 0,
  1057. "_right": 0,
  1058. "_top": 0,
  1059. "_bottom": 0,
  1060. "_horizontalCenter": 0,
  1061. "_verticalCenter": 0,
  1062. "_isAbsLeft": true,
  1063. "_isAbsRight": true,
  1064. "_isAbsTop": true,
  1065. "_isAbsBottom": true,
  1066. "_isAbsHorizontalCenter": true,
  1067. "_isAbsVerticalCenter": true,
  1068. "_originalWidth": 750,
  1069. "_originalHeight": 0,
  1070. "_alignMode": 2,
  1071. "_lockFlags": 0,
  1072. "_id": "f6fmbcuhhB1KT+JQwb6eyl"
  1073. },
  1074. {
  1075. "__type__": "cc.Node",
  1076. "_name": "登录相关面板",
  1077. "_objFlags": 0,
  1078. "_parent": {
  1079. "__id__": 22
  1080. },
  1081. "_children": [
  1082. {
  1083. "__id__": 38
  1084. },
  1085. {
  1086. "__id__": 98
  1087. },
  1088. {
  1089. "__id__": 80
  1090. }
  1091. ],
  1092. "_active": true,
  1093. "_components": [
  1094. {
  1095. "__id__": 116
  1096. },
  1097. {
  1098. "__id__": 117
  1099. }
  1100. ],
  1101. "_prefab": null,
  1102. "_lpos": {
  1103. "__type__": "cc.Vec3",
  1104. "x": 0,
  1105. "y": -451,
  1106. "z": 0
  1107. },
  1108. "_lrot": {
  1109. "__type__": "cc.Quat",
  1110. "x": 0,
  1111. "y": 0,
  1112. "z": 0,
  1113. "w": 1
  1114. },
  1115. "_lscale": {
  1116. "__type__": "cc.Vec3",
  1117. "x": 1,
  1118. "y": 1,
  1119. "z": 1
  1120. },
  1121. "_layer": 33554432,
  1122. "_euler": {
  1123. "__type__": "cc.Vec3",
  1124. "x": 0,
  1125. "y": 0,
  1126. "z": 0
  1127. },
  1128. "_id": "feis1cYKhM94IEgRqsyB1q"
  1129. },
  1130. {
  1131. "__type__": "cc.Node",
  1132. "_name": "登录按钮",
  1133. "_objFlags": 0,
  1134. "_parent": {
  1135. "__id__": 37
  1136. },
  1137. "_children": [],
  1138. "_active": true,
  1139. "_components": [
  1140. {
  1141. "__id__": 39
  1142. },
  1143. {
  1144. "__id__": 41
  1145. },
  1146. {
  1147. "__id__": 43
  1148. },
  1149. {
  1150. "__id__": 96
  1151. }
  1152. ],
  1153. "_prefab": null,
  1154. "_lpos": {
  1155. "__type__": "cc.Vec3",
  1156. "x": 0,
  1157. "y": -2.2719999999999345,
  1158. "z": 0
  1159. },
  1160. "_lrot": {
  1161. "__type__": "cc.Quat",
  1162. "x": 0,
  1163. "y": 0,
  1164. "z": 0,
  1165. "w": 1
  1166. },
  1167. "_lscale": {
  1168. "__type__": "cc.Vec3",
  1169. "x": 1,
  1170. "y": 1,
  1171. "z": 1
  1172. },
  1173. "_layer": 33554432,
  1174. "_euler": {
  1175. "__type__": "cc.Vec3",
  1176. "x": 0,
  1177. "y": 0,
  1178. "z": 0
  1179. },
  1180. "_id": "c96nTi15xP55hU6nV1z0HA"
  1181. },
  1182. {
  1183. "__type__": "cc.UITransform",
  1184. "_name": "",
  1185. "_objFlags": 0,
  1186. "node": {
  1187. "__id__": 38
  1188. },
  1189. "_enabled": true,
  1190. "__prefab": {
  1191. "__id__": 40
  1192. },
  1193. "_contentSize": {
  1194. "__type__": "cc.Size",
  1195. "width": 341,
  1196. "height": 132
  1197. },
  1198. "_anchorPoint": {
  1199. "__type__": "cc.Vec2",
  1200. "x": 0.5,
  1201. "y": 0.5
  1202. },
  1203. "_id": "f3ukH3NwpLVLX99jH3yOIC"
  1204. },
  1205. {
  1206. "__type__": "cc.CompPrefabInfo",
  1207. "fileId": "98TYGMtwRBTYZZn4EZmhzJ"
  1208. },
  1209. {
  1210. "__type__": "cc.Sprite",
  1211. "_name": "",
  1212. "_objFlags": 0,
  1213. "node": {
  1214. "__id__": 38
  1215. },
  1216. "_enabled": true,
  1217. "__prefab": {
  1218. "__id__": 42
  1219. },
  1220. "_visFlags": 0,
  1221. "_customMaterial": null,
  1222. "_srcBlendFactor": 2,
  1223. "_dstBlendFactor": 4,
  1224. "_color": {
  1225. "__type__": "cc.Color",
  1226. "r": 255,
  1227. "g": 255,
  1228. "b": 255,
  1229. "a": 255
  1230. },
  1231. "_spriteFrame": {
  1232. "__uuid__": "4545607f-fdbf-4cde-a80f-1a67b2f0a9cd@f9941",
  1233. "__expectedType__": "cc.SpriteFrame"
  1234. },
  1235. "_type": 0,
  1236. "_fillType": 0,
  1237. "_sizeMode": 1,
  1238. "_fillCenter": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0,
  1241. "y": 0
  1242. },
  1243. "_fillStart": 0,
  1244. "_fillRange": 0,
  1245. "_isTrimmedMode": true,
  1246. "_useGrayscale": false,
  1247. "_atlas": null,
  1248. "_id": "13IKaRyrNOGpI3zyA/iY+h"
  1249. },
  1250. {
  1251. "__type__": "cc.CompPrefabInfo",
  1252. "fileId": "77BcV1zfNHo4LI4KRqZupe"
  1253. },
  1254. {
  1255. "__type__": "cc.Button",
  1256. "_name": "",
  1257. "_objFlags": 0,
  1258. "node": {
  1259. "__id__": 38
  1260. },
  1261. "_enabled": true,
  1262. "__prefab": {
  1263. "__id__": 44
  1264. },
  1265. "clickEvents": [
  1266. {
  1267. "__id__": 45
  1268. }
  1269. ],
  1270. "_interactable": true,
  1271. "_transition": 3,
  1272. "_normalColor": {
  1273. "__type__": "cc.Color",
  1274. "r": 214,
  1275. "g": 214,
  1276. "b": 214,
  1277. "a": 255
  1278. },
  1279. "_hoverColor": {
  1280. "__type__": "cc.Color",
  1281. "r": 211,
  1282. "g": 211,
  1283. "b": 211,
  1284. "a": 255
  1285. },
  1286. "_pressedColor": {
  1287. "__type__": "cc.Color",
  1288. "r": 255,
  1289. "g": 255,
  1290. "b": 255,
  1291. "a": 255
  1292. },
  1293. "_disabledColor": {
  1294. "__type__": "cc.Color",
  1295. "r": 124,
  1296. "g": 124,
  1297. "b": 124,
  1298. "a": 255
  1299. },
  1300. "_normalSprite": {
  1301. "__uuid__": "4545607f-fdbf-4cde-a80f-1a67b2f0a9cd@f9941",
  1302. "__expectedType__": "cc.SpriteFrame"
  1303. },
  1304. "_hoverSprite": {
  1305. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1306. "__expectedType__": "cc.SpriteFrame"
  1307. },
  1308. "_pressedSprite": {
  1309. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  1310. "__expectedType__": "cc.SpriteFrame"
  1311. },
  1312. "_disabledSprite": {
  1313. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  1314. "__expectedType__": "cc.SpriteFrame"
  1315. },
  1316. "_duration": 0.1,
  1317. "_zoomScale": 1.2,
  1318. "_target": {
  1319. "__id__": 38
  1320. },
  1321. "_id": "3e+fuhs0hOwbtamXjXiM7z"
  1322. },
  1323. {
  1324. "__type__": "cc.CompPrefabInfo",
  1325. "fileId": "2fOwBXUwBNvaJ4NyyrOq4C"
  1326. },
  1327. {
  1328. "__type__": "cc.ClickEvent",
  1329. "target": {
  1330. "__id__": 46
  1331. },
  1332. "component": "",
  1333. "_componentId": "e01b3pr7/xL7Li4RUWqmewn",
  1334. "handler": "onLogin",
  1335. "customEventData": ""
  1336. },
  1337. {
  1338. "__type__": "cc.Node",
  1339. "_name": "登录",
  1340. "_objFlags": 0,
  1341. "_parent": {
  1342. "__id__": 13
  1343. },
  1344. "_children": [],
  1345. "_active": true,
  1346. "_components": [
  1347. {
  1348. "__id__": 47
  1349. },
  1350. {
  1351. "__id__": 48
  1352. }
  1353. ],
  1354. "_prefab": null,
  1355. "_lpos": {
  1356. "__type__": "cc.Vec3",
  1357. "x": 0,
  1358. "y": 0,
  1359. "z": 0
  1360. },
  1361. "_lrot": {
  1362. "__type__": "cc.Quat",
  1363. "x": 0,
  1364. "y": 0,
  1365. "z": 0,
  1366. "w": 1
  1367. },
  1368. "_lscale": {
  1369. "__type__": "cc.Vec3",
  1370. "x": 1,
  1371. "y": 1,
  1372. "z": 1
  1373. },
  1374. "_layer": 1073741824,
  1375. "_euler": {
  1376. "__type__": "cc.Vec3",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 0
  1380. },
  1381. "_id": "48Q94/97lMoaS+9gTYuNUZ"
  1382. },
  1383. {
  1384. "__type__": "fcf29bmHThDzZf/lzYNo409",
  1385. "_name": "",
  1386. "_objFlags": 0,
  1387. "node": {
  1388. "__id__": 46
  1389. },
  1390. "_enabled": true,
  1391. "__prefab": null,
  1392. "hostAlias": "",
  1393. "withCredentials": false,
  1394. "timeout": 0,
  1395. "responseType": 3,
  1396. "onProgress": [],
  1397. "useEncrypt": true,
  1398. "useLog": true,
  1399. "_id": "3aPLR0X/NONabBlcVrlmA4"
  1400. },
  1401. {
  1402. "__type__": "e01b3pr7/xL7Li4RUWqmewn",
  1403. "_name": "",
  1404. "_objFlags": 0,
  1405. "node": {
  1406. "__id__": 46
  1407. },
  1408. "_enabled": true,
  1409. "__prefab": null,
  1410. "progressBar": {
  1411. "__id__": 20
  1412. },
  1413. "progressTxt": {
  1414. "__id__": 49
  1415. },
  1416. "accountInput": {
  1417. "__id__": 79
  1418. },
  1419. "loginType": 0,
  1420. "loginPanel": {
  1421. "__id__": 37
  1422. },
  1423. "_id": "8f2HDQCnhC8Jpx3y297TW9"
  1424. },
  1425. {
  1426. "__type__": "b8ac1o1JflJjZg9+e94eiuJ",
  1427. "_name": "",
  1428. "_objFlags": 0,
  1429. "node": {
  1430. "__id__": 50
  1431. },
  1432. "_enabled": true,
  1433. "__prefab": null,
  1434. "dataList": [
  1435. {
  1436. "__id__": 68
  1437. },
  1438. {
  1439. "__id__": 69
  1440. },
  1441. {
  1442. "__id__": 70
  1443. },
  1444. {
  1445. "__id__": 71
  1446. },
  1447. {
  1448. "__id__": 72
  1449. },
  1450. {
  1451. "__id__": 73
  1452. },
  1453. {
  1454. "__id__": 74
  1455. },
  1456. {
  1457. "__id__": 75
  1458. },
  1459. {
  1460. "__id__": 76
  1461. },
  1462. {
  1463. "__id__": 77
  1464. },
  1465. {
  1466. "__id__": 78
  1467. }
  1468. ],
  1469. "_string": "0%",
  1470. "_id": "26mt1HWUBPAaVXAcaepvh6"
  1471. },
  1472. {
  1473. "__type__": "cc.Node",
  1474. "_name": "加载进度文本",
  1475. "_objFlags": 0,
  1476. "_parent": {
  1477. "__id__": 51
  1478. },
  1479. "_children": [
  1480. {
  1481. "__id__": 57
  1482. },
  1483. {
  1484. "__id__": 60
  1485. },
  1486. {
  1487. "__id__": 63
  1488. }
  1489. ],
  1490. "_active": true,
  1491. "_components": [
  1492. {
  1493. "__id__": 66
  1494. },
  1495. {
  1496. "__id__": 67
  1497. },
  1498. {
  1499. "__id__": 49
  1500. }
  1501. ],
  1502. "_prefab": null,
  1503. "_lpos": {
  1504. "__type__": "cc.Vec3",
  1505. "x": 105,
  1506. "y": 0,
  1507. "z": 0
  1508. },
  1509. "_lrot": {
  1510. "__type__": "cc.Quat",
  1511. "x": 0,
  1512. "y": 0,
  1513. "z": 0,
  1514. "w": 1
  1515. },
  1516. "_lscale": {
  1517. "__type__": "cc.Vec3",
  1518. "x": 1,
  1519. "y": 1,
  1520. "z": 1
  1521. },
  1522. "_layer": 33554432,
  1523. "_euler": {
  1524. "__type__": "cc.Vec3",
  1525. "x": 0,
  1526. "y": 0,
  1527. "z": 0
  1528. },
  1529. "_id": "b5C2NcrdpPhoxqmQXFEQys"
  1530. },
  1531. {
  1532. "__type__": "cc.Node",
  1533. "_name": "加载提示",
  1534. "_objFlags": 0,
  1535. "_parent": {
  1536. "__id__": 21
  1537. },
  1538. "_children": [
  1539. {
  1540. "__id__": 52
  1541. },
  1542. {
  1543. "__id__": 50
  1544. }
  1545. ],
  1546. "_active": true,
  1547. "_components": [
  1548. {
  1549. "__id__": 55
  1550. },
  1551. {
  1552. "__id__": 56
  1553. }
  1554. ],
  1555. "_prefab": null,
  1556. "_lpos": {
  1557. "__type__": "cc.Vec3",
  1558. "x": 0,
  1559. "y": 52.982,
  1560. "z": 0
  1561. },
  1562. "_lrot": {
  1563. "__type__": "cc.Quat",
  1564. "x": 0,
  1565. "y": 0,
  1566. "z": 0,
  1567. "w": 1
  1568. },
  1569. "_lscale": {
  1570. "__type__": "cc.Vec3",
  1571. "x": 1,
  1572. "y": 1,
  1573. "z": 1
  1574. },
  1575. "_layer": 33554432,
  1576. "_euler": {
  1577. "__type__": "cc.Vec3",
  1578. "x": 0,
  1579. "y": 0,
  1580. "z": 0
  1581. },
  1582. "_id": "2cr9/SJf1CWKH64+o3ii7u"
  1583. },
  1584. {
  1585. "__type__": "cc.Node",
  1586. "_name": "加载不消耗流量",
  1587. "_objFlags": 0,
  1588. "_parent": {
  1589. "__id__": 51
  1590. },
  1591. "_children": [],
  1592. "_active": true,
  1593. "_components": [
  1594. {
  1595. "__id__": 53
  1596. },
  1597. {
  1598. "__id__": 54
  1599. }
  1600. ],
  1601. "_prefab": null,
  1602. "_lpos": {
  1603. "__type__": "cc.Vec3",
  1604. "x": -30,
  1605. "y": 0,
  1606. "z": 0
  1607. },
  1608. "_lrot": {
  1609. "__type__": "cc.Quat",
  1610. "x": 0,
  1611. "y": 0,
  1612. "z": 0,
  1613. "w": 1
  1614. },
  1615. "_lscale": {
  1616. "__type__": "cc.Vec3",
  1617. "x": 1,
  1618. "y": 1,
  1619. "z": 1
  1620. },
  1621. "_layer": 33554432,
  1622. "_euler": {
  1623. "__type__": "cc.Vec3",
  1624. "x": 0,
  1625. "y": 0,
  1626. "z": 0
  1627. },
  1628. "_id": "1cd8/ZU9FC8IsJ0Y+RJPyC"
  1629. },
  1630. {
  1631. "__type__": "cc.UITransform",
  1632. "_name": "",
  1633. "_objFlags": 0,
  1634. "node": {
  1635. "__id__": 52
  1636. },
  1637. "_enabled": true,
  1638. "__prefab": null,
  1639. "_contentSize": {
  1640. "__type__": "cc.Size",
  1641. "width": 200,
  1642. "height": 32
  1643. },
  1644. "_anchorPoint": {
  1645. "__type__": "cc.Vec2",
  1646. "x": 0.5,
  1647. "y": 0.5
  1648. },
  1649. "_id": "37UbcZiKlK+pF8V4VQMfor"
  1650. },
  1651. {
  1652. "__type__": "cc.Sprite",
  1653. "_name": "",
  1654. "_objFlags": 0,
  1655. "node": {
  1656. "__id__": 52
  1657. },
  1658. "_enabled": true,
  1659. "__prefab": null,
  1660. "_visFlags": 0,
  1661. "_customMaterial": null,
  1662. "_srcBlendFactor": 2,
  1663. "_dstBlendFactor": 4,
  1664. "_color": {
  1665. "__type__": "cc.Color",
  1666. "r": 255,
  1667. "g": 255,
  1668. "b": 255,
  1669. "a": 255
  1670. },
  1671. "_spriteFrame": {
  1672. "__uuid__": "e860307e-f3cf-451a-a5e2-fb1263edec87@f9941",
  1673. "__expectedType__": "cc.SpriteFrame"
  1674. },
  1675. "_type": 0,
  1676. "_fillType": 0,
  1677. "_sizeMode": 1,
  1678. "_fillCenter": {
  1679. "__type__": "cc.Vec2",
  1680. "x": 0,
  1681. "y": 0
  1682. },
  1683. "_fillStart": 0,
  1684. "_fillRange": 0,
  1685. "_isTrimmedMode": true,
  1686. "_useGrayscale": false,
  1687. "_atlas": null,
  1688. "_id": "1cAOs0OD1HBoO2x8BF3ghh"
  1689. },
  1690. {
  1691. "__type__": "cc.UITransform",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "node": {
  1695. "__id__": 51
  1696. },
  1697. "_enabled": true,
  1698. "__prefab": null,
  1699. "_contentSize": {
  1700. "__type__": "cc.Size",
  1701. "width": 260,
  1702. "height": 40
  1703. },
  1704. "_anchorPoint": {
  1705. "__type__": "cc.Vec2",
  1706. "x": 0.5,
  1707. "y": 0.5
  1708. },
  1709. "_id": "30GeaQTZJKG6GotakokiKx"
  1710. },
  1711. {
  1712. "__type__": "cc.Layout",
  1713. "_name": "",
  1714. "_objFlags": 0,
  1715. "node": {
  1716. "__id__": 51
  1717. },
  1718. "_enabled": true,
  1719. "__prefab": null,
  1720. "_resizeMode": 1,
  1721. "_layoutType": 0,
  1722. "_cellSize": {
  1723. "__type__": "cc.Size",
  1724. "width": 40,
  1725. "height": 40
  1726. },
  1727. "_startAxis": 0,
  1728. "_paddingLeft": 0,
  1729. "_paddingRight": 0,
  1730. "_paddingTop": 0,
  1731. "_paddingBottom": 0,
  1732. "_spacingX": 10,
  1733. "_spacingY": 0,
  1734. "_verticalDirection": 1,
  1735. "_horizontalDirection": 0,
  1736. "_constraint": 0,
  1737. "_constraintNum": 2,
  1738. "_affectedByScale": false,
  1739. "_isAlign": true,
  1740. "_id": "ff8T3cJGZIvJskeBlyrIrG"
  1741. },
  1742. {
  1743. "__type__": "cc.Node",
  1744. "_name": "9",
  1745. "_objFlags": 0,
  1746. "_parent": {
  1747. "__id__": 50
  1748. },
  1749. "_children": [],
  1750. "_active": true,
  1751. "_components": [
  1752. {
  1753. "__id__": 58
  1754. },
  1755. {
  1756. "__id__": 59
  1757. }
  1758. ],
  1759. "_prefab": null,
  1760. "_lpos": {
  1761. "__type__": "cc.Vec3",
  1762. "x": -13,
  1763. "y": 0,
  1764. "z": 0
  1765. },
  1766. "_lrot": {
  1767. "__type__": "cc.Quat",
  1768. "x": 0,
  1769. "y": 0,
  1770. "z": 0,
  1771. "w": 1
  1772. },
  1773. "_lscale": {
  1774. "__type__": "cc.Vec3",
  1775. "x": 1,
  1776. "y": 1,
  1777. "z": 1
  1778. },
  1779. "_layer": 33554432,
  1780. "_euler": {
  1781. "__type__": "cc.Vec3",
  1782. "x": 0,
  1783. "y": 0,
  1784. "z": 0
  1785. },
  1786. "_id": "6cAL4+uN5Dj6ruSdMSRGqj"
  1787. },
  1788. {
  1789. "__type__": "cc.UITransform",
  1790. "_name": "",
  1791. "_objFlags": 0,
  1792. "node": {
  1793. "__id__": 57
  1794. },
  1795. "_enabled": true,
  1796. "__prefab": null,
  1797. "_contentSize": {
  1798. "__type__": "cc.Size",
  1799. "width": 24,
  1800. "height": 28
  1801. },
  1802. "_anchorPoint": {
  1803. "__type__": "cc.Vec2",
  1804. "x": 0.5,
  1805. "y": 0.5
  1806. },
  1807. "_id": "3c932SnCBLY7pTjLXVHBGQ"
  1808. },
  1809. {
  1810. "__type__": "cc.Sprite",
  1811. "_name": "",
  1812. "_objFlags": 0,
  1813. "node": {
  1814. "__id__": 57
  1815. },
  1816. "_enabled": true,
  1817. "__prefab": null,
  1818. "_visFlags": 0,
  1819. "_customMaterial": null,
  1820. "_srcBlendFactor": 2,
  1821. "_dstBlendFactor": 4,
  1822. "_color": {
  1823. "__type__": "cc.Color",
  1824. "r": 255,
  1825. "g": 255,
  1826. "b": 255,
  1827. "a": 255
  1828. },
  1829. "_spriteFrame": {
  1830. "__uuid__": "7207b70d-5d8a-4e85-a3bd-53d6a5851ba1@f9941",
  1831. "__expectedType__": "cc.SpriteFrame"
  1832. },
  1833. "_type": 0,
  1834. "_fillType": 0,
  1835. "_sizeMode": 1,
  1836. "_fillCenter": {
  1837. "__type__": "cc.Vec2",
  1838. "x": 0,
  1839. "y": 0
  1840. },
  1841. "_fillStart": 0,
  1842. "_fillRange": 0,
  1843. "_isTrimmedMode": true,
  1844. "_useGrayscale": false,
  1845. "_atlas": null,
  1846. "_id": "8eWKKPINpK2p0GnkvxevZD"
  1847. },
  1848. {
  1849. "__type__": "cc.Node",
  1850. "_name": "8",
  1851. "_objFlags": 0,
  1852. "_parent": {
  1853. "__id__": 50
  1854. },
  1855. "_children": [],
  1856. "_active": true,
  1857. "_components": [
  1858. {
  1859. "__id__": 61
  1860. },
  1861. {
  1862. "__id__": 62
  1863. }
  1864. ],
  1865. "_prefab": null,
  1866. "_lpos": {
  1867. "__type__": "cc.Vec3",
  1868. "x": 12,
  1869. "y": 0,
  1870. "z": 0
  1871. },
  1872. "_lrot": {
  1873. "__type__": "cc.Quat",
  1874. "x": 0,
  1875. "y": 0,
  1876. "z": 0,
  1877. "w": 1
  1878. },
  1879. "_lscale": {
  1880. "__type__": "cc.Vec3",
  1881. "x": 1,
  1882. "y": 1,
  1883. "z": 1
  1884. },
  1885. "_layer": 33554432,
  1886. "_euler": {
  1887. "__type__": "cc.Vec3",
  1888. "x": 0,
  1889. "y": 0,
  1890. "z": 0
  1891. },
  1892. "_id": "1bqYU6kmdBeakiPh96J3W6"
  1893. },
  1894. {
  1895. "__type__": "cc.UITransform",
  1896. "_name": "",
  1897. "_objFlags": 0,
  1898. "node": {
  1899. "__id__": 60
  1900. },
  1901. "_enabled": true,
  1902. "__prefab": null,
  1903. "_contentSize": {
  1904. "__type__": "cc.Size",
  1905. "width": 26,
  1906. "height": 28
  1907. },
  1908. "_anchorPoint": {
  1909. "__type__": "cc.Vec2",
  1910. "x": 0.5,
  1911. "y": 0.5
  1912. },
  1913. "_id": "305E7McuVGvpdXJVTwUz0R"
  1914. },
  1915. {
  1916. "__type__": "cc.Sprite",
  1917. "_name": "",
  1918. "_objFlags": 0,
  1919. "node": {
  1920. "__id__": 60
  1921. },
  1922. "_enabled": true,
  1923. "__prefab": null,
  1924. "_visFlags": 0,
  1925. "_customMaterial": null,
  1926. "_srcBlendFactor": 2,
  1927. "_dstBlendFactor": 4,
  1928. "_color": {
  1929. "__type__": "cc.Color",
  1930. "r": 255,
  1931. "g": 255,
  1932. "b": 255,
  1933. "a": 255
  1934. },
  1935. "_spriteFrame": {
  1936. "__uuid__": "2e0b6995-70ed-4a2a-88fe-153b1a51586e@f9941",
  1937. "__expectedType__": "cc.SpriteFrame"
  1938. },
  1939. "_type": 0,
  1940. "_fillType": 0,
  1941. "_sizeMode": 1,
  1942. "_fillCenter": {
  1943. "__type__": "cc.Vec2",
  1944. "x": 0,
  1945. "y": 0
  1946. },
  1947. "_fillStart": 0,
  1948. "_fillRange": 0,
  1949. "_isTrimmedMode": true,
  1950. "_useGrayscale": false,
  1951. "_atlas": null,
  1952. "_id": "96IIrlc8ZCrrpUobk3u/hz"
  1953. },
  1954. {
  1955. "__type__": "cc.Node",
  1956. "_name": "%",
  1957. "_objFlags": 0,
  1958. "_parent": {
  1959. "__id__": 50
  1960. },
  1961. "_children": [],
  1962. "_active": false,
  1963. "_components": [
  1964. {
  1965. "__id__": 64
  1966. },
  1967. {
  1968. "__id__": 65
  1969. }
  1970. ],
  1971. "_prefab": null,
  1972. "_lpos": {
  1973. "__type__": "cc.Vec3",
  1974. "x": 22.5,
  1975. "y": 0,
  1976. "z": 0
  1977. },
  1978. "_lrot": {
  1979. "__type__": "cc.Quat",
  1980. "x": 0,
  1981. "y": 0,
  1982. "z": 0,
  1983. "w": 1
  1984. },
  1985. "_lscale": {
  1986. "__type__": "cc.Vec3",
  1987. "x": 1,
  1988. "y": 1,
  1989. "z": 1
  1990. },
  1991. "_layer": 33554432,
  1992. "_euler": {
  1993. "__type__": "cc.Vec3",
  1994. "x": 0,
  1995. "y": 0,
  1996. "z": 0
  1997. },
  1998. "_id": "45W5YybylG66bu5cxzFg+g"
  1999. },
  2000. {
  2001. "__type__": "cc.UITransform",
  2002. "_name": "",
  2003. "_objFlags": 0,
  2004. "node": {
  2005. "__id__": 63
  2006. },
  2007. "_enabled": true,
  2008. "__prefab": null,
  2009. "_contentSize": {
  2010. "__type__": "cc.Size",
  2011. "width": 26,
  2012. "height": 28
  2013. },
  2014. "_anchorPoint": {
  2015. "__type__": "cc.Vec2",
  2016. "x": 0.5,
  2017. "y": 0.5
  2018. },
  2019. "_id": "7cqHQUBBVK6Zi9df6byd7w"
  2020. },
  2021. {
  2022. "__type__": "cc.Sprite",
  2023. "_name": "",
  2024. "_objFlags": 0,
  2025. "node": {
  2026. "__id__": 63
  2027. },
  2028. "_enabled": true,
  2029. "__prefab": null,
  2030. "_visFlags": 0,
  2031. "_customMaterial": null,
  2032. "_srcBlendFactor": 2,
  2033. "_dstBlendFactor": 4,
  2034. "_color": {
  2035. "__type__": "cc.Color",
  2036. "r": 255,
  2037. "g": 255,
  2038. "b": 255,
  2039. "a": 255
  2040. },
  2041. "_spriteFrame": {
  2042. "__uuid__": "2e0b6995-70ed-4a2a-88fe-153b1a51586e@f9941",
  2043. "__expectedType__": "cc.SpriteFrame"
  2044. },
  2045. "_type": 0,
  2046. "_fillType": 0,
  2047. "_sizeMode": 1,
  2048. "_fillCenter": {
  2049. "__type__": "cc.Vec2",
  2050. "x": 0,
  2051. "y": 0
  2052. },
  2053. "_fillStart": 0,
  2054. "_fillRange": 0,
  2055. "_isTrimmedMode": true,
  2056. "_useGrayscale": false,
  2057. "_atlas": null,
  2058. "_id": "f34zpIV5pGnqmtYT0o9+3i"
  2059. },
  2060. {
  2061. "__type__": "cc.UITransform",
  2062. "_name": "",
  2063. "_objFlags": 0,
  2064. "node": {
  2065. "__id__": 50
  2066. },
  2067. "_enabled": true,
  2068. "__prefab": null,
  2069. "_contentSize": {
  2070. "__type__": "cc.Size",
  2071. "width": 50,
  2072. "height": 40
  2073. },
  2074. "_anchorPoint": {
  2075. "__type__": "cc.Vec2",
  2076. "x": 0.5,
  2077. "y": 0.5
  2078. },
  2079. "_id": "0ewIqlK3VGj4tHxTgj6AhN"
  2080. },
  2081. {
  2082. "__type__": "cc.Layout",
  2083. "_name": "",
  2084. "_objFlags": 0,
  2085. "node": {
  2086. "__id__": 50
  2087. },
  2088. "_enabled": true,
  2089. "__prefab": null,
  2090. "_resizeMode": 0,
  2091. "_layoutType": 1,
  2092. "_cellSize": {
  2093. "__type__": "cc.Size",
  2094. "width": 40,
  2095. "height": 40
  2096. },
  2097. "_startAxis": 0,
  2098. "_paddingLeft": 0,
  2099. "_paddingRight": 0,
  2100. "_paddingTop": 0,
  2101. "_paddingBottom": 0,
  2102. "_spacingX": 0,
  2103. "_spacingY": 0,
  2104. "_verticalDirection": 1,
  2105. "_horizontalDirection": 0,
  2106. "_constraint": 0,
  2107. "_constraintNum": 2,
  2108. "_affectedByScale": false,
  2109. "_isAlign": true,
  2110. "_id": "93FSrIesxMmY/qrcPTiooU"
  2111. },
  2112. {
  2113. "__type__": "BitmapFontData",
  2114. "chair": "0",
  2115. "spriteFrame": {
  2116. "__uuid__": "7207b70d-5d8a-4e85-a3bd-53d6a5851ba1@f9941",
  2117. "__expectedType__": "cc.SpriteFrame"
  2118. }
  2119. },
  2120. {
  2121. "__type__": "BitmapFontData",
  2122. "chair": "1",
  2123. "spriteFrame": {
  2124. "__uuid__": "94546ce5-360a-4130-9ebe-e812028bbf4d@f9941",
  2125. "__expectedType__": "cc.SpriteFrame"
  2126. }
  2127. },
  2128. {
  2129. "__type__": "BitmapFontData",
  2130. "chair": "2",
  2131. "spriteFrame": {
  2132. "__uuid__": "02938c92-0f03-47f7-ac9e-627e5ccfe450@f9941",
  2133. "__expectedType__": "cc.SpriteFrame"
  2134. }
  2135. },
  2136. {
  2137. "__type__": "BitmapFontData",
  2138. "chair": "3",
  2139. "spriteFrame": {
  2140. "__uuid__": "241708ea-1fba-4df5-ac47-e8d827fd0266@f9941",
  2141. "__expectedType__": "cc.SpriteFrame"
  2142. }
  2143. },
  2144. {
  2145. "__type__": "BitmapFontData",
  2146. "chair": "4",
  2147. "spriteFrame": {
  2148. "__uuid__": "057695cf-3826-4595-9334-52921732404b@f9941",
  2149. "__expectedType__": "cc.SpriteFrame"
  2150. }
  2151. },
  2152. {
  2153. "__type__": "BitmapFontData",
  2154. "chair": "5",
  2155. "spriteFrame": {
  2156. "__uuid__": "90b1d79e-7b8c-4345-a3ff-9389100bdbe5@f9941",
  2157. "__expectedType__": "cc.SpriteFrame"
  2158. }
  2159. },
  2160. {
  2161. "__type__": "BitmapFontData",
  2162. "chair": "6",
  2163. "spriteFrame": {
  2164. "__uuid__": "cdde5694-fb11-4713-9cf4-20f31a12ce4a@f9941",
  2165. "__expectedType__": "cc.SpriteFrame"
  2166. }
  2167. },
  2168. {
  2169. "__type__": "BitmapFontData",
  2170. "chair": "7",
  2171. "spriteFrame": {
  2172. "__uuid__": "b276cbe4-1b96-4e93-ae37-2d32ddc19634@f9941",
  2173. "__expectedType__": "cc.SpriteFrame"
  2174. }
  2175. },
  2176. {
  2177. "__type__": "BitmapFontData",
  2178. "chair": "8",
  2179. "spriteFrame": {
  2180. "__uuid__": "dcf89c8a-5e1e-40d3-ad3b-3061421af805@f9941",
  2181. "__expectedType__": "cc.SpriteFrame"
  2182. }
  2183. },
  2184. {
  2185. "__type__": "BitmapFontData",
  2186. "chair": "9",
  2187. "spriteFrame": {
  2188. "__uuid__": "18f865d3-5029-42cf-938f-59bd3abca520@f9941",
  2189. "__expectedType__": "cc.SpriteFrame"
  2190. }
  2191. },
  2192. {
  2193. "__type__": "BitmapFontData",
  2194. "chair": "%",
  2195. "spriteFrame": {
  2196. "__uuid__": "2e0b6995-70ed-4a2a-88fe-153b1a51586e@f9941",
  2197. "__expectedType__": "cc.SpriteFrame"
  2198. }
  2199. },
  2200. {
  2201. "__type__": "cc.EditBox",
  2202. "_name": "",
  2203. "_objFlags": 0,
  2204. "node": {
  2205. "__id__": 80
  2206. },
  2207. "_enabled": true,
  2208. "__prefab": {
  2209. "__id__": 95
  2210. },
  2211. "editingDidBegan": [],
  2212. "textChanged": [],
  2213. "editingDidEnded": [],
  2214. "editingReturn": [],
  2215. "_textLabel": {
  2216. "__id__": 84
  2217. },
  2218. "_placeholderLabel": {
  2219. "__id__": 89
  2220. },
  2221. "_returnType": 0,
  2222. "_string": "",
  2223. "_tabIndex": 0,
  2224. "_backgroundImage": {
  2225. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  2226. "__expectedType__": "cc.SpriteFrame"
  2227. },
  2228. "_inputFlag": 5,
  2229. "_inputMode": 6,
  2230. "_maxLength": 80,
  2231. "_id": "4cPb+sAo5EPrPtoiE5kdBe"
  2232. },
  2233. {
  2234. "__type__": "cc.Node",
  2235. "_name": "用户名输入",
  2236. "_objFlags": 0,
  2237. "_parent": {
  2238. "__id__": 37
  2239. },
  2240. "_children": [
  2241. {
  2242. "__id__": 81
  2243. },
  2244. {
  2245. "__id__": 86
  2246. }
  2247. ],
  2248. "_active": true,
  2249. "_components": [
  2250. {
  2251. "__id__": 91
  2252. },
  2253. {
  2254. "__id__": 93
  2255. },
  2256. {
  2257. "__id__": 79
  2258. }
  2259. ],
  2260. "_prefab": null,
  2261. "_lpos": {
  2262. "__type__": "cc.Vec3",
  2263. "x": 0,
  2264. "y": 104.245,
  2265. "z": 0
  2266. },
  2267. "_lrot": {
  2268. "__type__": "cc.Quat",
  2269. "x": 0,
  2270. "y": 0,
  2271. "z": 0,
  2272. "w": 1
  2273. },
  2274. "_lscale": {
  2275. "__type__": "cc.Vec3",
  2276. "x": 1,
  2277. "y": 1,
  2278. "z": 1
  2279. },
  2280. "_layer": 33554432,
  2281. "_euler": {
  2282. "__type__": "cc.Vec3",
  2283. "x": 0,
  2284. "y": 0,
  2285. "z": 0
  2286. },
  2287. "_id": "85plHdgf1J9ZuvJQzoFX2q"
  2288. },
  2289. {
  2290. "__type__": "cc.Node",
  2291. "_name": "TEXT_LABEL",
  2292. "_objFlags": 0,
  2293. "_parent": {
  2294. "__id__": 80
  2295. },
  2296. "_children": [],
  2297. "_active": false,
  2298. "_components": [
  2299. {
  2300. "__id__": 82
  2301. },
  2302. {
  2303. "__id__": 84
  2304. }
  2305. ],
  2306. "_prefab": null,
  2307. "_lpos": {
  2308. "__type__": "cc.Vec3",
  2309. "x": -98,
  2310. "y": 20,
  2311. "z": 0
  2312. },
  2313. "_lrot": {
  2314. "__type__": "cc.Quat",
  2315. "x": 0,
  2316. "y": 0,
  2317. "z": 0,
  2318. "w": 1
  2319. },
  2320. "_lscale": {
  2321. "__type__": "cc.Vec3",
  2322. "x": 1,
  2323. "y": 1,
  2324. "z": 1
  2325. },
  2326. "_layer": 33554432,
  2327. "_euler": {
  2328. "__type__": "cc.Vec3",
  2329. "x": 0,
  2330. "y": 0,
  2331. "z": 0
  2332. },
  2333. "_id": "28evf/XO5BUbMV07X9LSm+"
  2334. },
  2335. {
  2336. "__type__": "cc.UITransform",
  2337. "_name": "",
  2338. "_objFlags": 0,
  2339. "node": {
  2340. "__id__": 81
  2341. },
  2342. "_enabled": true,
  2343. "__prefab": {
  2344. "__id__": 83
  2345. },
  2346. "_contentSize": {
  2347. "__type__": "cc.Size",
  2348. "width": 198,
  2349. "height": 40
  2350. },
  2351. "_anchorPoint": {
  2352. "__type__": "cc.Vec2",
  2353. "x": 0,
  2354. "y": 1
  2355. },
  2356. "_id": "54xhMJHR1D24s1YWpylMyh"
  2357. },
  2358. {
  2359. "__type__": "cc.CompPrefabInfo",
  2360. "fileId": "779kAXGTtMZKXfYlOg0Tfd"
  2361. },
  2362. {
  2363. "__type__": "cc.Label",
  2364. "_name": "",
  2365. "_objFlags": 0,
  2366. "node": {
  2367. "__id__": 81
  2368. },
  2369. "_enabled": true,
  2370. "__prefab": {
  2371. "__id__": 85
  2372. },
  2373. "_visFlags": 0,
  2374. "_customMaterial": null,
  2375. "_srcBlendFactor": 2,
  2376. "_dstBlendFactor": 4,
  2377. "_color": {
  2378. "__type__": "cc.Color",
  2379. "r": 255,
  2380. "g": 255,
  2381. "b": 255,
  2382. "a": 255
  2383. },
  2384. "_string": "",
  2385. "_horizontalAlign": 0,
  2386. "_verticalAlign": 1,
  2387. "_actualFontSize": 22,
  2388. "_fontSize": 22,
  2389. "_fontFamily": "Arial",
  2390. "_lineHeight": 40,
  2391. "_overflow": 1,
  2392. "_enableWrapText": false,
  2393. "_font": null,
  2394. "_isSystemFontUsed": true,
  2395. "_isItalic": false,
  2396. "_isBold": false,
  2397. "_isUnderline": false,
  2398. "_underlineHeight": 2,
  2399. "_cacheMode": 0,
  2400. "_id": "52nA3sU0tEMrVhI9sEp/+K"
  2401. },
  2402. {
  2403. "__type__": "cc.CompPrefabInfo",
  2404. "fileId": "ddIY+NJvlDTIQAg7PLVrGo"
  2405. },
  2406. {
  2407. "__type__": "cc.Node",
  2408. "_name": "PLACEHOLDER_LABEL",
  2409. "_objFlags": 0,
  2410. "_parent": {
  2411. "__id__": 80
  2412. },
  2413. "_children": [],
  2414. "_active": true,
  2415. "_components": [
  2416. {
  2417. "__id__": 87
  2418. },
  2419. {
  2420. "__id__": 89
  2421. }
  2422. ],
  2423. "_prefab": null,
  2424. "_lpos": {
  2425. "__type__": "cc.Vec3",
  2426. "x": -98,
  2427. "y": 20,
  2428. "z": 0
  2429. },
  2430. "_lrot": {
  2431. "__type__": "cc.Quat",
  2432. "x": 0,
  2433. "y": 0,
  2434. "z": 0,
  2435. "w": 1
  2436. },
  2437. "_lscale": {
  2438. "__type__": "cc.Vec3",
  2439. "x": 1,
  2440. "y": 1,
  2441. "z": 1
  2442. },
  2443. "_layer": 33554432,
  2444. "_euler": {
  2445. "__type__": "cc.Vec3",
  2446. "x": 0,
  2447. "y": 0,
  2448. "z": 0
  2449. },
  2450. "_id": "ccnzLLU8RFjLE2dzK0KtuT"
  2451. },
  2452. {
  2453. "__type__": "cc.UITransform",
  2454. "_name": "",
  2455. "_objFlags": 0,
  2456. "node": {
  2457. "__id__": 86
  2458. },
  2459. "_enabled": true,
  2460. "__prefab": {
  2461. "__id__": 88
  2462. },
  2463. "_contentSize": {
  2464. "__type__": "cc.Size",
  2465. "width": 198,
  2466. "height": 40
  2467. },
  2468. "_anchorPoint": {
  2469. "__type__": "cc.Vec2",
  2470. "x": 0,
  2471. "y": 1
  2472. },
  2473. "_id": "0a2cKyUzBIa6pajzahK0mJ"
  2474. },
  2475. {
  2476. "__type__": "cc.CompPrefabInfo",
  2477. "fileId": "d07wQj4whCUqYGJH1lEpVp"
  2478. },
  2479. {
  2480. "__type__": "cc.Label",
  2481. "_name": "",
  2482. "_objFlags": 0,
  2483. "node": {
  2484. "__id__": 86
  2485. },
  2486. "_enabled": true,
  2487. "__prefab": {
  2488. "__id__": 90
  2489. },
  2490. "_visFlags": 0,
  2491. "_customMaterial": null,
  2492. "_srcBlendFactor": 2,
  2493. "_dstBlendFactor": 4,
  2494. "_color": {
  2495. "__type__": "cc.Color",
  2496. "r": 201,
  2497. "g": 199,
  2498. "b": 199,
  2499. "a": 255
  2500. },
  2501. "_string": "输入测试账号",
  2502. "_horizontalAlign": 0,
  2503. "_verticalAlign": 1,
  2504. "_actualFontSize": 22,
  2505. "_fontSize": 22,
  2506. "_fontFamily": "Arial",
  2507. "_lineHeight": 40,
  2508. "_overflow": 1,
  2509. "_enableWrapText": false,
  2510. "_font": null,
  2511. "_isSystemFontUsed": true,
  2512. "_isItalic": false,
  2513. "_isBold": false,
  2514. "_isUnderline": false,
  2515. "_underlineHeight": 2,
  2516. "_cacheMode": 0,
  2517. "_id": "aeZlmbZoVD7qpSropVOFLO"
  2518. },
  2519. {
  2520. "__type__": "cc.CompPrefabInfo",
  2521. "fileId": "8fhi7qRLFJbK0abIJuXmCW"
  2522. },
  2523. {
  2524. "__type__": "cc.UITransform",
  2525. "_name": "",
  2526. "_objFlags": 0,
  2527. "node": {
  2528. "__id__": 80
  2529. },
  2530. "_enabled": true,
  2531. "__prefab": {
  2532. "__id__": 92
  2533. },
  2534. "_contentSize": {
  2535. "__type__": "cc.Size",
  2536. "width": 200,
  2537. "height": 40
  2538. },
  2539. "_anchorPoint": {
  2540. "__type__": "cc.Vec2",
  2541. "x": 0.5,
  2542. "y": 0.5
  2543. },
  2544. "_id": "6dpZjbhZ9A4rSzedUYpZXO"
  2545. },
  2546. {
  2547. "__type__": "cc.CompPrefabInfo",
  2548. "fileId": "1fhJOVuOVAGYSYZoiE25Uz"
  2549. },
  2550. {
  2551. "__type__": "cc.Sprite",
  2552. "_name": "",
  2553. "_objFlags": 0,
  2554. "node": {
  2555. "__id__": 80
  2556. },
  2557. "_enabled": true,
  2558. "__prefab": {
  2559. "__id__": 94
  2560. },
  2561. "_visFlags": 0,
  2562. "_customMaterial": null,
  2563. "_srcBlendFactor": 2,
  2564. "_dstBlendFactor": 4,
  2565. "_color": {
  2566. "__type__": "cc.Color",
  2567. "r": 255,
  2568. "g": 255,
  2569. "b": 255,
  2570. "a": 255
  2571. },
  2572. "_spriteFrame": {
  2573. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  2574. "__expectedType__": "cc.SpriteFrame"
  2575. },
  2576. "_type": 1,
  2577. "_fillType": 0,
  2578. "_sizeMode": 0,
  2579. "_fillCenter": {
  2580. "__type__": "cc.Vec2",
  2581. "x": 0,
  2582. "y": 0
  2583. },
  2584. "_fillStart": 0,
  2585. "_fillRange": 0,
  2586. "_isTrimmedMode": true,
  2587. "_useGrayscale": false,
  2588. "_atlas": null,
  2589. "_id": "fdz9cdp51M455bXLhNUw+J"
  2590. },
  2591. {
  2592. "__type__": "cc.CompPrefabInfo",
  2593. "fileId": "43qH95z3VGeYelCElKd6FW"
  2594. },
  2595. {
  2596. "__type__": "cc.CompPrefabInfo",
  2597. "fileId": "1bCHrwPGZOPrbmPh93kwpe"
  2598. },
  2599. {
  2600. "__type__": "e2211H+GvNPBLN0psbiSpVH",
  2601. "_name": "",
  2602. "_objFlags": 0,
  2603. "node": {
  2604. "__id__": 38
  2605. },
  2606. "_enabled": true,
  2607. "__prefab": {
  2608. "__id__": 97
  2609. },
  2610. "soundName": "",
  2611. "clips": [
  2612. {
  2613. "__uuid__": "e509227a-af5b-4329-bca9-d7da471f7dee",
  2614. "__expectedType__": "cc.AudioClip"
  2615. }
  2616. ],
  2617. "_volume": 1,
  2618. "playOnLoad": false,
  2619. "playOnTouch": true,
  2620. "oneShot": true,
  2621. "loop": false,
  2622. "_id": "920XxQJ4FEbYiPGE2SGz4k"
  2623. },
  2624. {
  2625. "__type__": "cc.CompPrefabInfo",
  2626. "fileId": "62efM/MtNEuJCOWMO9jZuO"
  2627. },
  2628. {
  2629. "__type__": "cc.Node",
  2630. "_name": "同意协议",
  2631. "_objFlags": 0,
  2632. "_parent": {
  2633. "__id__": 37
  2634. },
  2635. "_children": [
  2636. {
  2637. "__id__": 99
  2638. },
  2639. {
  2640. "__id__": 111
  2641. }
  2642. ],
  2643. "_active": true,
  2644. "_components": [
  2645. {
  2646. "__id__": 114
  2647. },
  2648. {
  2649. "__id__": 115
  2650. }
  2651. ],
  2652. "_prefab": null,
  2653. "_lpos": {
  2654. "__type__": "cc.Vec3",
  2655. "x": 0,
  2656. "y": -111.40800000000013,
  2657. "z": 0
  2658. },
  2659. "_lrot": {
  2660. "__type__": "cc.Quat",
  2661. "x": 0,
  2662. "y": 0,
  2663. "z": 0,
  2664. "w": 1
  2665. },
  2666. "_lscale": {
  2667. "__type__": "cc.Vec3",
  2668. "x": 1,
  2669. "y": 1,
  2670. "z": 1
  2671. },
  2672. "_layer": 33554432,
  2673. "_euler": {
  2674. "__type__": "cc.Vec3",
  2675. "x": 0,
  2676. "y": 0,
  2677. "z": 0
  2678. },
  2679. "_id": "47MHtiXPBEs5g20lWzu74V"
  2680. },
  2681. {
  2682. "__type__": "cc.Node",
  2683. "_name": "复选框",
  2684. "_objFlags": 0,
  2685. "_parent": {
  2686. "__id__": 98
  2687. },
  2688. "_children": [
  2689. {
  2690. "__id__": 100
  2691. }
  2692. ],
  2693. "_active": true,
  2694. "_components": [
  2695. {
  2696. "__id__": 105
  2697. },
  2698. {
  2699. "__id__": 107
  2700. },
  2701. {
  2702. "__id__": 109
  2703. }
  2704. ],
  2705. "_prefab": null,
  2706. "_lpos": {
  2707. "__type__": "cc.Vec3",
  2708. "x": -270.5,
  2709. "y": 0,
  2710. "z": 0
  2711. },
  2712. "_lrot": {
  2713. "__type__": "cc.Quat",
  2714. "x": 0,
  2715. "y": 0,
  2716. "z": 0,
  2717. "w": 1
  2718. },
  2719. "_lscale": {
  2720. "__type__": "cc.Vec3",
  2721. "x": 1,
  2722. "y": 1,
  2723. "z": 1
  2724. },
  2725. "_layer": 33554432,
  2726. "_euler": {
  2727. "__type__": "cc.Vec3",
  2728. "x": 0,
  2729. "y": 0,
  2730. "z": 0
  2731. },
  2732. "_id": "b4nHJRJHJJq60x7fkn7cSS"
  2733. },
  2734. {
  2735. "__type__": "cc.Node",
  2736. "_name": "Checkmark",
  2737. "_objFlags": 0,
  2738. "_parent": {
  2739. "__id__": 99
  2740. },
  2741. "_children": [],
  2742. "_active": true,
  2743. "_components": [
  2744. {
  2745. "__id__": 101
  2746. },
  2747. {
  2748. "__id__": 103
  2749. }
  2750. ],
  2751. "_prefab": null,
  2752. "_lpos": {
  2753. "__type__": "cc.Vec3",
  2754. "x": 0,
  2755. "y": 0,
  2756. "z": 0
  2757. },
  2758. "_lrot": {
  2759. "__type__": "cc.Quat",
  2760. "x": 0,
  2761. "y": 0,
  2762. "z": 0,
  2763. "w": 1
  2764. },
  2765. "_lscale": {
  2766. "__type__": "cc.Vec3",
  2767. "x": 1,
  2768. "y": 1,
  2769. "z": 1
  2770. },
  2771. "_layer": 33554432,
  2772. "_euler": {
  2773. "__type__": "cc.Vec3",
  2774. "x": 0,
  2775. "y": 0,
  2776. "z": 0
  2777. },
  2778. "_id": "85WL1ybOJBNaNcjjWlqPGf"
  2779. },
  2780. {
  2781. "__type__": "cc.UITransform",
  2782. "_name": "",
  2783. "_objFlags": 0,
  2784. "node": {
  2785. "__id__": 100
  2786. },
  2787. "_enabled": true,
  2788. "__prefab": {
  2789. "__id__": 102
  2790. },
  2791. "_contentSize": {
  2792. "__type__": "cc.Size",
  2793. "width": 52,
  2794. "height": 41
  2795. },
  2796. "_anchorPoint": {
  2797. "__type__": "cc.Vec2",
  2798. "x": 0.5,
  2799. "y": 0.5
  2800. },
  2801. "_id": "94aIu4C4RO5KvWi4HcIXvo"
  2802. },
  2803. {
  2804. "__type__": "cc.CompPrefabInfo",
  2805. "fileId": "e4k6OSwohL75lyfsntvPC5"
  2806. },
  2807. {
  2808. "__type__": "cc.Sprite",
  2809. "_name": "",
  2810. "_objFlags": 0,
  2811. "node": {
  2812. "__id__": 100
  2813. },
  2814. "_enabled": true,
  2815. "__prefab": {
  2816. "__id__": 104
  2817. },
  2818. "_visFlags": 0,
  2819. "_customMaterial": null,
  2820. "_srcBlendFactor": 2,
  2821. "_dstBlendFactor": 4,
  2822. "_color": {
  2823. "__type__": "cc.Color",
  2824. "r": 255,
  2825. "g": 255,
  2826. "b": 255,
  2827. "a": 255
  2828. },
  2829. "_spriteFrame": {
  2830. "__uuid__": "1a0c67bf-e9ce-4459-922d-aa5fd98e2ef7@f9941",
  2831. "__expectedType__": "cc.SpriteFrame"
  2832. },
  2833. "_type": 0,
  2834. "_fillType": 0,
  2835. "_sizeMode": 1,
  2836. "_fillCenter": {
  2837. "__type__": "cc.Vec2",
  2838. "x": 0,
  2839. "y": 0
  2840. },
  2841. "_fillStart": 0,
  2842. "_fillRange": 0,
  2843. "_isTrimmedMode": true,
  2844. "_useGrayscale": false,
  2845. "_atlas": null,
  2846. "_id": "b6ciXXTN1L4pfNi+6DPlXo"
  2847. },
  2848. {
  2849. "__type__": "cc.CompPrefabInfo",
  2850. "fileId": "25nHiyhlVLhbUiFI4JJ9Sn"
  2851. },
  2852. {
  2853. "__type__": "cc.UITransform",
  2854. "_name": "",
  2855. "_objFlags": 0,
  2856. "node": {
  2857. "__id__": 99
  2858. },
  2859. "_enabled": true,
  2860. "__prefab": {
  2861. "__id__": 106
  2862. },
  2863. "_contentSize": {
  2864. "__type__": "cc.Size",
  2865. "width": 41,
  2866. "height": 41
  2867. },
  2868. "_anchorPoint": {
  2869. "__type__": "cc.Vec2",
  2870. "x": 0.5,
  2871. "y": 0.5
  2872. },
  2873. "_id": "d0sLJt0gBFw6lyM9+uBtyC"
  2874. },
  2875. {
  2876. "__type__": "cc.CompPrefabInfo",
  2877. "fileId": "a7yxb8GDhNnIT24rnD3lO4"
  2878. },
  2879. {
  2880. "__type__": "cc.Sprite",
  2881. "_name": "",
  2882. "_objFlags": 0,
  2883. "node": {
  2884. "__id__": 99
  2885. },
  2886. "_enabled": true,
  2887. "__prefab": {
  2888. "__id__": 108
  2889. },
  2890. "_visFlags": 0,
  2891. "_customMaterial": null,
  2892. "_srcBlendFactor": 2,
  2893. "_dstBlendFactor": 4,
  2894. "_color": {
  2895. "__type__": "cc.Color",
  2896. "r": 255,
  2897. "g": 255,
  2898. "b": 255,
  2899. "a": 255
  2900. },
  2901. "_spriteFrame": {
  2902. "__uuid__": "22e1d79f-7e62-4c07-84b9-b9a31d648a4e@f9941",
  2903. "__expectedType__": "cc.SpriteFrame"
  2904. },
  2905. "_type": 0,
  2906. "_fillType": 0,
  2907. "_sizeMode": 1,
  2908. "_fillCenter": {
  2909. "__type__": "cc.Vec2",
  2910. "x": 0,
  2911. "y": 0
  2912. },
  2913. "_fillStart": 0,
  2914. "_fillRange": 0,
  2915. "_isTrimmedMode": true,
  2916. "_useGrayscale": false,
  2917. "_atlas": null,
  2918. "_id": "a6L/mBikpDiL8qLCoH5TKQ"
  2919. },
  2920. {
  2921. "__type__": "cc.CompPrefabInfo",
  2922. "fileId": "3a4GKzsKZCNLuWHErVRJ1B"
  2923. },
  2924. {
  2925. "__type__": "cc.Toggle",
  2926. "_name": "",
  2927. "_objFlags": 0,
  2928. "node": {
  2929. "__id__": 99
  2930. },
  2931. "_enabled": true,
  2932. "__prefab": {
  2933. "__id__": 110
  2934. },
  2935. "clickEvents": [],
  2936. "_interactable": true,
  2937. "_transition": 0,
  2938. "_normalColor": {
  2939. "__type__": "cc.Color",
  2940. "r": 214,
  2941. "g": 214,
  2942. "b": 214,
  2943. "a": 255
  2944. },
  2945. "_hoverColor": {
  2946. "__type__": "cc.Color",
  2947. "r": 211,
  2948. "g": 211,
  2949. "b": 211,
  2950. "a": 255
  2951. },
  2952. "_pressedColor": {
  2953. "__type__": "cc.Color",
  2954. "r": 255,
  2955. "g": 255,
  2956. "b": 255,
  2957. "a": 255
  2958. },
  2959. "_disabledColor": {
  2960. "__type__": "cc.Color",
  2961. "r": 124,
  2962. "g": 124,
  2963. "b": 124,
  2964. "a": 255
  2965. },
  2966. "_normalSprite": {
  2967. "__uuid__": "22e1d79f-7e62-4c07-84b9-b9a31d648a4e@f9941",
  2968. "__expectedType__": "cc.SpriteFrame"
  2969. },
  2970. "_hoverSprite": null,
  2971. "_pressedSprite": null,
  2972. "_disabledSprite": null,
  2973. "_duration": 0.1,
  2974. "_zoomScale": 1.2,
  2975. "_target": {
  2976. "__id__": 99
  2977. },
  2978. "checkEvents": [],
  2979. "_isChecked": true,
  2980. "_checkMark": {
  2981. "__id__": 103
  2982. },
  2983. "_id": "f2klq3EhZBMaFOlhKJmNew"
  2984. },
  2985. {
  2986. "__type__": "cc.CompPrefabInfo",
  2987. "fileId": "58GFHdMmJFBa4quSrrbzsk"
  2988. },
  2989. {
  2990. "__type__": "cc.Node",
  2991. "_name": "我已详细阅读并同意",
  2992. "_objFlags": 0,
  2993. "_parent": {
  2994. "__id__": 98
  2995. },
  2996. "_children": [],
  2997. "_active": true,
  2998. "_components": [
  2999. {
  3000. "__id__": 112
  3001. },
  3002. {
  3003. "__id__": 113
  3004. }
  3005. ],
  3006. "_prefab": null,
  3007. "_lpos": {
  3008. "__type__": "cc.Vec3",
  3009. "x": 30.5,
  3010. "y": 0,
  3011. "z": 0
  3012. },
  3013. "_lrot": {
  3014. "__type__": "cc.Quat",
  3015. "x": 0,
  3016. "y": 0,
  3017. "z": 0,
  3018. "w": 1
  3019. },
  3020. "_lscale": {
  3021. "__type__": "cc.Vec3",
  3022. "x": 1,
  3023. "y": 1,
  3024. "z": 1
  3025. },
  3026. "_layer": 33554432,
  3027. "_euler": {
  3028. "__type__": "cc.Vec3",
  3029. "x": 0,
  3030. "y": 0,
  3031. "z": 0
  3032. },
  3033. "_id": "92xUkZrkBLQLviLT4zbtA6"
  3034. },
  3035. {
  3036. "__type__": "cc.UITransform",
  3037. "_name": "",
  3038. "_objFlags": 0,
  3039. "node": {
  3040. "__id__": 111
  3041. },
  3042. "_enabled": true,
  3043. "__prefab": null,
  3044. "_contentSize": {
  3045. "__type__": "cc.Size",
  3046. "width": 521,
  3047. "height": 27
  3048. },
  3049. "_anchorPoint": {
  3050. "__type__": "cc.Vec2",
  3051. "x": 0.5,
  3052. "y": 0.5
  3053. },
  3054. "_id": "b9z6YX1/9OLK+q/6HP11lZ"
  3055. },
  3056. {
  3057. "__type__": "cc.Sprite",
  3058. "_name": "",
  3059. "_objFlags": 0,
  3060. "node": {
  3061. "__id__": 111
  3062. },
  3063. "_enabled": true,
  3064. "__prefab": null,
  3065. "_visFlags": 0,
  3066. "_customMaterial": null,
  3067. "_srcBlendFactor": 2,
  3068. "_dstBlendFactor": 4,
  3069. "_color": {
  3070. "__type__": "cc.Color",
  3071. "r": 255,
  3072. "g": 255,
  3073. "b": 255,
  3074. "a": 255
  3075. },
  3076. "_spriteFrame": {
  3077. "__uuid__": "4ec5b587-7196-4f73-aab8-3a6627030382@f9941",
  3078. "__expectedType__": "cc.SpriteFrame"
  3079. },
  3080. "_type": 0,
  3081. "_fillType": 0,
  3082. "_sizeMode": 1,
  3083. "_fillCenter": {
  3084. "__type__": "cc.Vec2",
  3085. "x": 0,
  3086. "y": 0
  3087. },
  3088. "_fillStart": 0,
  3089. "_fillRange": 0,
  3090. "_isTrimmedMode": true,
  3091. "_useGrayscale": false,
  3092. "_atlas": null,
  3093. "_id": "b0CppLWh1Lm4JHgOZG45bo"
  3094. },
  3095. {
  3096. "__type__": "cc.UITransform",
  3097. "_name": "",
  3098. "_objFlags": 0,
  3099. "node": {
  3100. "__id__": 98
  3101. },
  3102. "_enabled": true,
  3103. "__prefab": null,
  3104. "_contentSize": {
  3105. "__type__": "cc.Size",
  3106. "width": 582,
  3107. "height": 49.18399999999974
  3108. },
  3109. "_anchorPoint": {
  3110. "__type__": "cc.Vec2",
  3111. "x": 0.5,
  3112. "y": 0.5
  3113. },
  3114. "_id": "a4k7fjoVFPkI3ck5EY39dD"
  3115. },
  3116. {
  3117. "__type__": "cc.Layout",
  3118. "_name": "",
  3119. "_objFlags": 0,
  3120. "node": {
  3121. "__id__": 98
  3122. },
  3123. "_enabled": true,
  3124. "__prefab": null,
  3125. "_resizeMode": 1,
  3126. "_layoutType": 1,
  3127. "_cellSize": {
  3128. "__type__": "cc.Size",
  3129. "width": 40,
  3130. "height": 40
  3131. },
  3132. "_startAxis": 0,
  3133. "_paddingLeft": 0,
  3134. "_paddingRight": 0,
  3135. "_paddingTop": 0,
  3136. "_paddingBottom": 0,
  3137. "_spacingX": 20,
  3138. "_spacingY": 0,
  3139. "_verticalDirection": 1,
  3140. "_horizontalDirection": 0,
  3141. "_constraint": 0,
  3142. "_constraintNum": 2,
  3143. "_affectedByScale": false,
  3144. "_isAlign": true,
  3145. "_id": "60j7yT/SlGmKG2w+aqWYua"
  3146. },
  3147. {
  3148. "__type__": "cc.UITransform",
  3149. "_name": "",
  3150. "_objFlags": 0,
  3151. "node": {
  3152. "__id__": 37
  3153. },
  3154. "_enabled": true,
  3155. "__prefab": null,
  3156. "_contentSize": {
  3157. "__type__": "cc.Size",
  3158. "width": 341,
  3159. "height": 132
  3160. },
  3161. "_anchorPoint": {
  3162. "__type__": "cc.Vec2",
  3163. "x": 0.5,
  3164. "y": 0.5
  3165. },
  3166. "_id": "54/RpGhYBKurfs4YrUUrrJ"
  3167. },
  3168. {
  3169. "__type__": "cc.Widget",
  3170. "_name": "",
  3171. "_objFlags": 0,
  3172. "node": {
  3173. "__id__": 37
  3174. },
  3175. "_enabled": true,
  3176. "__prefab": null,
  3177. "_alignFlags": 4,
  3178. "_target": null,
  3179. "_left": 0,
  3180. "_right": 0,
  3181. "_top": 0,
  3182. "_bottom": 150,
  3183. "_horizontalCenter": 0,
  3184. "_verticalCenter": 0,
  3185. "_isAbsLeft": true,
  3186. "_isAbsRight": true,
  3187. "_isAbsTop": true,
  3188. "_isAbsBottom": true,
  3189. "_isAbsHorizontalCenter": true,
  3190. "_isAbsVerticalCenter": true,
  3191. "_originalWidth": 0,
  3192. "_originalHeight": 0,
  3193. "_alignMode": 2,
  3194. "_lockFlags": 0,
  3195. "_id": "71TNdeKBtMFLyXXNpUN2s5"
  3196. },
  3197. {
  3198. "__type__": "cc.Node",
  3199. "_name": "弹窗",
  3200. "_objFlags": 0,
  3201. "_parent": {
  3202. "__id__": 22
  3203. },
  3204. "_children": [],
  3205. "_active": true,
  3206. "_components": [
  3207. {
  3208. "__id__": 119
  3209. },
  3210. {
  3211. "__id__": 120
  3212. }
  3213. ],
  3214. "_prefab": null,
  3215. "_lpos": {
  3216. "__type__": "cc.Vec3",
  3217. "x": 0,
  3218. "y": 0,
  3219. "z": 0
  3220. },
  3221. "_lrot": {
  3222. "__type__": "cc.Quat",
  3223. "x": 0,
  3224. "y": 0,
  3225. "z": 0,
  3226. "w": 1
  3227. },
  3228. "_lscale": {
  3229. "__type__": "cc.Vec3",
  3230. "x": 1,
  3231. "y": 1,
  3232. "z": 1
  3233. },
  3234. "_layer": 1073741824,
  3235. "_euler": {
  3236. "__type__": "cc.Vec3",
  3237. "x": 0,
  3238. "y": 0,
  3239. "z": 0
  3240. },
  3241. "_id": "d1V3FBtqNJVLwetqtRdrk8"
  3242. },
  3243. {
  3244. "__type__": "cc.UITransform",
  3245. "_name": "",
  3246. "_objFlags": 0,
  3247. "node": {
  3248. "__id__": 118
  3249. },
  3250. "_enabled": true,
  3251. "__prefab": null,
  3252. "_contentSize": {
  3253. "__type__": "cc.Size",
  3254. "width": 750,
  3255. "height": 1334
  3256. },
  3257. "_anchorPoint": {
  3258. "__type__": "cc.Vec2",
  3259. "x": 0.5,
  3260. "y": 0.5
  3261. },
  3262. "_id": "c2ADDcUR9DvoX4Y4zlIgvw"
  3263. },
  3264. {
  3265. "__type__": "cc.Widget",
  3266. "_name": "",
  3267. "_objFlags": 0,
  3268. "node": {
  3269. "__id__": 118
  3270. },
  3271. "_enabled": true,
  3272. "__prefab": null,
  3273. "_alignFlags": 45,
  3274. "_target": null,
  3275. "_left": 0,
  3276. "_right": 0,
  3277. "_top": 0,
  3278. "_bottom": 0,
  3279. "_horizontalCenter": 0,
  3280. "_verticalCenter": 0,
  3281. "_isAbsLeft": true,
  3282. "_isAbsRight": true,
  3283. "_isAbsTop": true,
  3284. "_isAbsBottom": true,
  3285. "_isAbsHorizontalCenter": true,
  3286. "_isAbsVerticalCenter": true,
  3287. "_originalWidth": 100,
  3288. "_originalHeight": 100,
  3289. "_alignMode": 2,
  3290. "_lockFlags": 0,
  3291. "_id": "adX0oxIPlGt6azy/KRAxzG"
  3292. },
  3293. {
  3294. "__type__": "cc.UITransform",
  3295. "_name": "",
  3296. "_objFlags": 0,
  3297. "node": {
  3298. "__id__": 22
  3299. },
  3300. "_enabled": true,
  3301. "__prefab": {
  3302. "__id__": 122
  3303. },
  3304. "_contentSize": {
  3305. "__type__": "cc.Size",
  3306. "width": 750,
  3307. "height": 1334
  3308. },
  3309. "_anchorPoint": {
  3310. "__type__": "cc.Vec2",
  3311. "x": 0.5,
  3312. "y": 0.5
  3313. },
  3314. "_id": "e6nUdPYaxNDJVgfBMkXej/"
  3315. },
  3316. {
  3317. "__type__": "cc.CompPrefabInfo",
  3318. "fileId": "0dngp/9gNO34wUQjZfN/CX"
  3319. },
  3320. {
  3321. "__type__": "cc.Canvas",
  3322. "_name": "",
  3323. "_objFlags": 0,
  3324. "node": {
  3325. "__id__": 22
  3326. },
  3327. "_enabled": true,
  3328. "__prefab": {
  3329. "__id__": 124
  3330. },
  3331. "_cameraComponent": {
  3332. "__id__": 24
  3333. },
  3334. "_alignCanvasWithScreen": true,
  3335. "_id": "59ZlywIipGZJN3IWNCViBC"
  3336. },
  3337. {
  3338. "__type__": "cc.CompPrefabInfo",
  3339. "fileId": "3f2oTdCepERZdpmIfLsrhd"
  3340. },
  3341. {
  3342. "__type__": "cc.Widget",
  3343. "_name": "",
  3344. "_objFlags": 0,
  3345. "node": {
  3346. "__id__": 22
  3347. },
  3348. "_enabled": true,
  3349. "__prefab": {
  3350. "__id__": 126
  3351. },
  3352. "_alignFlags": 45,
  3353. "_target": null,
  3354. "_left": 0,
  3355. "_right": 0,
  3356. "_top": 0,
  3357. "_bottom": 0,
  3358. "_horizontalCenter": 0,
  3359. "_verticalCenter": 0,
  3360. "_isAbsLeft": true,
  3361. "_isAbsRight": true,
  3362. "_isAbsTop": true,
  3363. "_isAbsBottom": true,
  3364. "_isAbsHorizontalCenter": true,
  3365. "_isAbsVerticalCenter": true,
  3366. "_originalWidth": 0,
  3367. "_originalHeight": 0,
  3368. "_alignMode": 2,
  3369. "_lockFlags": 0,
  3370. "_id": "fe7RrNLeBNB6OfZ8XIKg6i"
  3371. },
  3372. {
  3373. "__type__": "cc.CompPrefabInfo",
  3374. "fileId": "e8a+bU/8dPDbbJguUzLdoF"
  3375. },
  3376. {
  3377. "__type__": "cc.Node",
  3378. "_name": "Bar",
  3379. "_objFlags": 0,
  3380. "_parent": {
  3381. "__id__": 21
  3382. },
  3383. "_children": [],
  3384. "_active": true,
  3385. "_components": [
  3386. {
  3387. "__id__": 128
  3388. },
  3389. {
  3390. "__id__": 130
  3391. }
  3392. ],
  3393. "_prefab": null,
  3394. "_lpos": {
  3395. "__type__": "cc.Vec3",
  3396. "x": -295.07,
  3397. "y": 0,
  3398. "z": 0
  3399. },
  3400. "_lrot": {
  3401. "__type__": "cc.Quat",
  3402. "x": 0,
  3403. "y": 0,
  3404. "z": 0,
  3405. "w": 1
  3406. },
  3407. "_lscale": {
  3408. "__type__": "cc.Vec3",
  3409. "x": 1,
  3410. "y": 1,
  3411. "z": 1
  3412. },
  3413. "_layer": 33554432,
  3414. "_euler": {
  3415. "__type__": "cc.Vec3",
  3416. "x": 0,
  3417. "y": 0,
  3418. "z": 0
  3419. },
  3420. "_id": "c4n7PZzoRLursho7kgFo+7"
  3421. },
  3422. {
  3423. "__type__": "cc.UITransform",
  3424. "_name": "",
  3425. "_objFlags": 0,
  3426. "node": {
  3427. "__id__": 127
  3428. },
  3429. "_enabled": true,
  3430. "__prefab": {
  3431. "__id__": 129
  3432. },
  3433. "_contentSize": {
  3434. "__type__": "cc.Size",
  3435. "width": 0,
  3436. "height": 35
  3437. },
  3438. "_anchorPoint": {
  3439. "__type__": "cc.Vec2",
  3440. "x": 0,
  3441. "y": 0.5
  3442. },
  3443. "_id": "a8TAow4adOw5faf1tiYgG1"
  3444. },
  3445. {
  3446. "__type__": "cc.CompPrefabInfo",
  3447. "fileId": "80SdIywIVFupwJOwCni0ux"
  3448. },
  3449. {
  3450. "__type__": "cc.Sprite",
  3451. "_name": "",
  3452. "_objFlags": 0,
  3453. "node": {
  3454. "__id__": 127
  3455. },
  3456. "_enabled": true,
  3457. "__prefab": {
  3458. "__id__": 131
  3459. },
  3460. "_visFlags": 0,
  3461. "_customMaterial": null,
  3462. "_srcBlendFactor": 2,
  3463. "_dstBlendFactor": 4,
  3464. "_color": {
  3465. "__type__": "cc.Color",
  3466. "r": 255,
  3467. "g": 255,
  3468. "b": 255,
  3469. "a": 255
  3470. },
  3471. "_spriteFrame": {
  3472. "__uuid__": "44f1a75b-dcd2-45f9-b502-2ed0a0f5f22c@f9941",
  3473. "__expectedType__": "cc.SpriteFrame"
  3474. },
  3475. "_type": 2,
  3476. "_fillType": 0,
  3477. "_sizeMode": 0,
  3478. "_fillCenter": {
  3479. "__type__": "cc.Vec2",
  3480. "x": 0,
  3481. "y": 0
  3482. },
  3483. "_fillStart": 0,
  3484. "_fillRange": 1,
  3485. "_isTrimmedMode": true,
  3486. "_useGrayscale": false,
  3487. "_atlas": null,
  3488. "_id": "021tIpurhEToQPVs4A88QP"
  3489. },
  3490. {
  3491. "__type__": "cc.CompPrefabInfo",
  3492. "fileId": "e00niSjJdHzqQfr6Uq+1as"
  3493. },
  3494. {
  3495. "__type__": "cc.Node",
  3496. "_name": "八荣八耻",
  3497. "_objFlags": 0,
  3498. "_parent": {
  3499. "__id__": 21
  3500. },
  3501. "_children": [],
  3502. "_active": true,
  3503. "_components": [
  3504. {
  3505. "__id__": 133
  3506. },
  3507. {
  3508. "__id__": 134
  3509. }
  3510. ],
  3511. "_prefab": null,
  3512. "_lpos": {
  3513. "__type__": "cc.Vec3",
  3514. "x": 0,
  3515. "y": -71.904,
  3516. "z": 0
  3517. },
  3518. "_lrot": {
  3519. "__type__": "cc.Quat",
  3520. "x": 0,
  3521. "y": 0,
  3522. "z": 0,
  3523. "w": 1
  3524. },
  3525. "_lscale": {
  3526. "__type__": "cc.Vec3",
  3527. "x": 1,
  3528. "y": 1,
  3529. "z": 1
  3530. },
  3531. "_layer": 33554432,
  3532. "_euler": {
  3533. "__type__": "cc.Vec3",
  3534. "x": 0,
  3535. "y": 0,
  3536. "z": 0
  3537. },
  3538. "_id": "14uaGY6hVOHov9F6q5qlwQ"
  3539. },
  3540. {
  3541. "__type__": "cc.UITransform",
  3542. "_name": "",
  3543. "_objFlags": 0,
  3544. "node": {
  3545. "__id__": 132
  3546. },
  3547. "_enabled": true,
  3548. "__prefab": null,
  3549. "_contentSize": {
  3550. "__type__": "cc.Size",
  3551. "width": 677,
  3552. "height": 62
  3553. },
  3554. "_anchorPoint": {
  3555. "__type__": "cc.Vec2",
  3556. "x": 0.5,
  3557. "y": 0.5
  3558. },
  3559. "_id": "bfscC5uTVACrmJMWZXw0W/"
  3560. },
  3561. {
  3562. "__type__": "cc.Sprite",
  3563. "_name": "",
  3564. "_objFlags": 0,
  3565. "node": {
  3566. "__id__": 132
  3567. },
  3568. "_enabled": true,
  3569. "__prefab": null,
  3570. "_visFlags": 0,
  3571. "_customMaterial": null,
  3572. "_srcBlendFactor": 2,
  3573. "_dstBlendFactor": 4,
  3574. "_color": {
  3575. "__type__": "cc.Color",
  3576. "r": 255,
  3577. "g": 255,
  3578. "b": 255,
  3579. "a": 255
  3580. },
  3581. "_spriteFrame": {
  3582. "__uuid__": "17be41d7-ff3e-41db-b064-4a9d997fc653@f9941",
  3583. "__expectedType__": "cc.SpriteFrame"
  3584. },
  3585. "_type": 0,
  3586. "_fillType": 0,
  3587. "_sizeMode": 1,
  3588. "_fillCenter": {
  3589. "__type__": "cc.Vec2",
  3590. "x": 0,
  3591. "y": 0
  3592. },
  3593. "_fillStart": 0,
  3594. "_fillRange": 0,
  3595. "_isTrimmedMode": true,
  3596. "_useGrayscale": false,
  3597. "_atlas": null,
  3598. "_id": "f5jlwJln1NFqDH7Kdh2ehD"
  3599. },
  3600. {
  3601. "__type__": "cc.UITransform",
  3602. "_name": "",
  3603. "_objFlags": 0,
  3604. "node": {
  3605. "__id__": 21
  3606. },
  3607. "_enabled": true,
  3608. "__prefab": {
  3609. "__id__": 136
  3610. },
  3611. "_contentSize": {
  3612. "__type__": "cc.Size",
  3613. "width": 606,
  3614. "height": 51
  3615. },
  3616. "_anchorPoint": {
  3617. "__type__": "cc.Vec2",
  3618. "x": 0.5,
  3619. "y": 0.5
  3620. },
  3621. "_id": "53davNAetDR5hRhEDHuGQE"
  3622. },
  3623. {
  3624. "__type__": "cc.CompPrefabInfo",
  3625. "fileId": "0a4TUb2bBHBa3wO6MCw2d2"
  3626. },
  3627. {
  3628. "__type__": "cc.Sprite",
  3629. "_name": "",
  3630. "_objFlags": 0,
  3631. "node": {
  3632. "__id__": 21
  3633. },
  3634. "_enabled": true,
  3635. "__prefab": {
  3636. "__id__": 138
  3637. },
  3638. "_visFlags": 0,
  3639. "_customMaterial": null,
  3640. "_srcBlendFactor": 2,
  3641. "_dstBlendFactor": 4,
  3642. "_color": {
  3643. "__type__": "cc.Color",
  3644. "r": 255,
  3645. "g": 255,
  3646. "b": 255,
  3647. "a": 255
  3648. },
  3649. "_spriteFrame": {
  3650. "__uuid__": "b21e1516-4179-4683-adcc-001c5a13dcbe@f9941",
  3651. "__expectedType__": "cc.SpriteFrame"
  3652. },
  3653. "_type": 1,
  3654. "_fillType": 0,
  3655. "_sizeMode": 0,
  3656. "_fillCenter": {
  3657. "__type__": "cc.Vec2",
  3658. "x": 0,
  3659. "y": 0
  3660. },
  3661. "_fillStart": 0,
  3662. "_fillRange": 0,
  3663. "_isTrimmedMode": true,
  3664. "_useGrayscale": false,
  3665. "_atlas": null,
  3666. "_id": "9a/iD/uaxBB7aXG1cBtv1k"
  3667. },
  3668. {
  3669. "__type__": "cc.CompPrefabInfo",
  3670. "fileId": "e3LBidlN9MdpNxB8lzYZv7"
  3671. },
  3672. {
  3673. "__type__": "cc.Widget",
  3674. "_name": "",
  3675. "_objFlags": 0,
  3676. "node": {
  3677. "__id__": 21
  3678. },
  3679. "_enabled": true,
  3680. "__prefab": null,
  3681. "_alignFlags": 4,
  3682. "_target": null,
  3683. "_left": 0,
  3684. "_right": 0,
  3685. "_top": 0,
  3686. "_bottom": 105,
  3687. "_horizontalCenter": 0,
  3688. "_verticalCenter": 0,
  3689. "_isAbsLeft": true,
  3690. "_isAbsRight": true,
  3691. "_isAbsTop": true,
  3692. "_isAbsBottom": true,
  3693. "_isAbsHorizontalCenter": true,
  3694. "_isAbsVerticalCenter": true,
  3695. "_originalWidth": 0,
  3696. "_originalHeight": 0,
  3697. "_alignMode": 2,
  3698. "_lockFlags": 0,
  3699. "_id": "77s4yQqSFDx7JTZsIgj2be"
  3700. },
  3701. {
  3702. "__type__": "cc.CompPrefabInfo",
  3703. "fileId": "3f/uAXDzRCkYMASuN3GC61"
  3704. },
  3705. {
  3706. "__type__": "cc.Node",
  3707. "_name": "游戏",
  3708. "_objFlags": 0,
  3709. "_parent": {
  3710. "__id__": 13
  3711. },
  3712. "_children": [],
  3713. "_active": true,
  3714. "_components": [
  3715. {
  3716. "__id__": 142
  3717. }
  3718. ],
  3719. "_prefab": null,
  3720. "_lpos": {
  3721. "__type__": "cc.Vec3",
  3722. "x": 0,
  3723. "y": 0,
  3724. "z": 0
  3725. },
  3726. "_lrot": {
  3727. "__type__": "cc.Quat",
  3728. "x": 0,
  3729. "y": 0,
  3730. "z": 0,
  3731. "w": 1
  3732. },
  3733. "_lscale": {
  3734. "__type__": "cc.Vec3",
  3735. "x": 1,
  3736. "y": 1,
  3737. "z": 1
  3738. },
  3739. "_layer": 1073741824,
  3740. "_euler": {
  3741. "__type__": "cc.Vec3",
  3742. "x": 0,
  3743. "y": 0,
  3744. "z": 0
  3745. },
  3746. "_id": "45NNsR2RBBR5ALujdOQt3W"
  3747. },
  3748. {
  3749. "__type__": "b9b6c6EwmFIk6iw4gc1T2eA",
  3750. "_name": "",
  3751. "_objFlags": 0,
  3752. "node": {
  3753. "__id__": 141
  3754. },
  3755. "_enabled": true,
  3756. "__prefab": null,
  3757. "_id": "dasH2U0YRAZofmNGeQBcb6"
  3758. },
  3759. {
  3760. "__type__": "cc.Node",
  3761. "_name": "声音",
  3762. "_objFlags": 0,
  3763. "_parent": {
  3764. "__id__": 13
  3765. },
  3766. "_children": [],
  3767. "_active": true,
  3768. "_components": [],
  3769. "_prefab": null,
  3770. "_lpos": {
  3771. "__type__": "cc.Vec3",
  3772. "x": 0,
  3773. "y": 0,
  3774. "z": 0
  3775. },
  3776. "_lrot": {
  3777. "__type__": "cc.Quat",
  3778. "x": 0,
  3779. "y": 0,
  3780. "z": 0,
  3781. "w": 1
  3782. },
  3783. "_lscale": {
  3784. "__type__": "cc.Vec3",
  3785. "x": 1,
  3786. "y": 1,
  3787. "z": 1
  3788. },
  3789. "_layer": 1073741824,
  3790. "_euler": {
  3791. "__type__": "cc.Vec3",
  3792. "x": 0,
  3793. "y": 0,
  3794. "z": 0
  3795. },
  3796. "_id": "c7+YnSl1lG5Y8h2fovaYvL"
  3797. },
  3798. {
  3799. "__type__": "01d49MGGLtAtIoxApOgBB70",
  3800. "_name": "",
  3801. "_objFlags": 0,
  3802. "node": {
  3803. "__id__": 13
  3804. },
  3805. "_enabled": true,
  3806. "__prefab": null,
  3807. "_id": "8chX8PX61GRq2zmJWboIi8"
  3808. },
  3809. {
  3810. "__type__": "cc.SceneGlobals",
  3811. "ambient": {
  3812. "__id__": 146
  3813. },
  3814. "shadows": {
  3815. "__id__": 147
  3816. },
  3817. "_skybox": {
  3818. "__id__": 148
  3819. },
  3820. "fog": {
  3821. "__id__": 149
  3822. }
  3823. },
  3824. {
  3825. "__type__": "cc.AmbientInfo",
  3826. "_skyColor": {
  3827. "__type__": "cc.Color",
  3828. "r": 51,
  3829. "g": 128,
  3830. "b": 204,
  3831. "a": 1
  3832. },
  3833. "_skyIllum": 20000,
  3834. "_groundAlbedo": {
  3835. "__type__": "cc.Color",
  3836. "r": 51,
  3837. "g": 51,
  3838. "b": 51,
  3839. "a": 255
  3840. }
  3841. },
  3842. {
  3843. "__type__": "cc.ShadowsInfo",
  3844. "_type": 0,
  3845. "_enabled": false,
  3846. "_normal": {
  3847. "__type__": "cc.Vec3",
  3848. "x": 0,
  3849. "y": 1,
  3850. "z": 0
  3851. },
  3852. "_distance": 0,
  3853. "_shadowColor": {
  3854. "__type__": "cc.Color",
  3855. "r": 76,
  3856. "g": 76,
  3857. "b": 76,
  3858. "a": 255
  3859. },
  3860. "_autoAdapt": true,
  3861. "_pcf": 0,
  3862. "_bias": 0.00001,
  3863. "_packing": false,
  3864. "_linear": true,
  3865. "_selfShadow": false,
  3866. "_normalBias": 0,
  3867. "_near": 1,
  3868. "_far": 30,
  3869. "_aspect": 1,
  3870. "_orthoSize": 5,
  3871. "_maxReceived": 4,
  3872. "_size": {
  3873. "__type__": "cc.Vec2",
  3874. "x": 512,
  3875. "y": 512
  3876. }
  3877. },
  3878. {
  3879. "__type__": "cc.SkyboxInfo",
  3880. "_envmap": null,
  3881. "_isRGBE": false,
  3882. "_enabled": false,
  3883. "_useIBL": false
  3884. },
  3885. {
  3886. "__type__": "cc.FogInfo",
  3887. "_type": 0,
  3888. "_fogColor": {
  3889. "__type__": "cc.Color",
  3890. "r": 200,
  3891. "g": 200,
  3892. "b": 200,
  3893. "a": 255
  3894. },
  3895. "_enabled": false,
  3896. "_fogDensity": 0.3,
  3897. "_fogStart": 0.5,
  3898. "_fogEnd": 300,
  3899. "_fogAtten": 5,
  3900. "_fogTop": 1.5,
  3901. "_fogRange": 1.2
  3902. }
  3903. ]