Launch.scene 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. },
  10. "asyncLoadAssets": false
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "",
  15. "_objFlags": 0,
  16. "_parent": null,
  17. "_children": [
  18. {
  19. "__id__": 2
  20. },
  21. {
  22. "__id__": 4
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 14
  29. },
  30. {
  31. "__id__": 140
  32. },
  33. {
  34. "__id__": 19
  35. }
  36. ],
  37. "_active": true,
  38. "_components": [],
  39. "_prefab": null,
  40. "autoReleaseAssets": false,
  41. "_globals": {
  42. "__id__": 144
  43. },
  44. "_id": "a32d4b0a-5bbd-4144-9171-f8c283a98f1e"
  45. },
  46. {
  47. "__type__": "cc.Node",
  48. "_name": "常驻节点",
  49. "_objFlags": 0,
  50. "_parent": {
  51. "__id__": 1
  52. },
  53. "_children": [],
  54. "_active": true,
  55. "_components": [
  56. {
  57. "__id__": 3
  58. }
  59. ],
  60. "_prefab": null,
  61. "_lpos": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_lrot": {
  68. "__type__": "cc.Quat",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0,
  72. "w": 1
  73. },
  74. "_lscale": {
  75. "__type__": "cc.Vec3",
  76. "x": 1,
  77. "y": 1,
  78. "z": 1
  79. },
  80. "_layer": 1073741824,
  81. "_euler": {
  82. "__type__": "cc.Vec3",
  83. "x": 0,
  84. "y": 0,
  85. "z": 0
  86. },
  87. "_id": "91nTZXH2RDMZkHMusSuTpg"
  88. },
  89. {
  90. "__type__": "a0856TFPjVEfofKbbwObJjo",
  91. "_name": "",
  92. "_objFlags": 0,
  93. "node": {
  94. "__id__": 2
  95. },
  96. "_enabled": true,
  97. "__prefab": null,
  98. "_id": "411aZHelZB06zH83+jpJmJ"
  99. },
  100. {
  101. "__type__": "cc.Node",
  102. "_name": "网络配置",
  103. "_objFlags": 0,
  104. "_parent": {
  105. "__id__": 1
  106. },
  107. "_children": [],
  108. "_active": true,
  109. "_components": [
  110. {
  111. "__id__": 5
  112. }
  113. ],
  114. "_prefab": null,
  115. "_lpos": {
  116. "__type__": "cc.Vec3",
  117. "x": 0,
  118. "y": 0,
  119. "z": 0
  120. },
  121. "_lrot": {
  122. "__type__": "cc.Quat",
  123. "x": 0,
  124. "y": 0,
  125. "z": 0,
  126. "w": 1
  127. },
  128. "_lscale": {
  129. "__type__": "cc.Vec3",
  130. "x": 1,
  131. "y": 1,
  132. "z": 1
  133. },
  134. "_layer": 1073741824,
  135. "_euler": {
  136. "__type__": "cc.Vec3",
  137. "x": 0,
  138. "y": 0,
  139. "z": 0
  140. },
  141. "_id": "742nZtYHpI7pGkzVt0nSxj"
  142. },
  143. {
  144. "__type__": "a50304IF5pGeIOcQNlNXNEz",
  145. "_name": "",
  146. "_objFlags": 0,
  147. "node": {
  148. "__id__": 4
  149. },
  150. "_enabled": true,
  151. "__prefab": null,
  152. "hostIndex": 1,
  153. "hosts": [
  154. {
  155. "__id__": 6
  156. },
  157. {
  158. "__id__": 7
  159. },
  160. {
  161. "__id__": 8
  162. },
  163. {
  164. "__id__": 9
  165. }
  166. ],
  167. "tails": [
  168. "node=sim_nc_api"
  169. ],
  170. "errorDataType": 2,
  171. "useDebugLog": true,
  172. "key": "🧧🎁🎉💰🤩😍💯🉐📦💥",
  173. "_id": "e7dlsDZKhBVZ4ohKT/s6rk"
  174. },
  175. {
  176. "__type__": "HostData",
  177. "alias": "袁浩",
  178. "host": "172.16.15.161",
  179. "port": 80,
  180. "SSL": false
  181. },
  182. {
  183. "__type__": "HostData",
  184. "alias": "内网调试服",
  185. "host": "cp.mokasz.com",
  186. "port": 80,
  187. "SSL": false
  188. },
  189. {
  190. "__type__": "HostData",
  191. "alias": "正式服",
  192. "host": "happyfam.mokamrp.com",
  193. "port": 443,
  194. "SSL": true
  195. },
  196. {
  197. "__type__": "HostData",
  198. "alias": "吴杰",
  199. "host": "172.16.15.179",
  200. "port": 80,
  201. "SSL": false
  202. },
  203. {
  204. "__type__": "cc.Node",
  205. "_name": "应用初始化",
  206. "_objFlags": 0,
  207. "_parent": {
  208. "__id__": 1
  209. },
  210. "_children": [],
  211. "_active": true,
  212. "_components": [
  213. {
  214. "__id__": 11
  215. },
  216. {
  217. "__id__": 12
  218. },
  219. {
  220. "__id__": 143
  221. }
  222. ],
  223. "_prefab": null,
  224. "_lpos": {
  225. "__type__": "cc.Vec3",
  226. "x": 360,
  227. "y": 98.5,
  228. "z": 0
  229. },
  230. "_lrot": {
  231. "__type__": "cc.Quat",
  232. "x": 0,
  233. "y": 0,
  234. "z": 0,
  235. "w": 1
  236. },
  237. "_lscale": {
  238. "__type__": "cc.Vec3",
  239. "x": 1,
  240. "y": 1,
  241. "z": 1
  242. },
  243. "_layer": 1073741824,
  244. "_euler": {
  245. "__type__": "cc.Vec3",
  246. "x": 0,
  247. "y": 0,
  248. "z": 0
  249. },
  250. "_id": "bfp+JX9aBH9J/3/tmpELrB"
  251. },
  252. {
  253. "__type__": "cc.UITransform",
  254. "_name": "",
  255. "_objFlags": 0,
  256. "node": {
  257. "__id__": 10
  258. },
  259. "_enabled": true,
  260. "__prefab": null,
  261. "_priority": 0,
  262. "_contentSize": {
  263. "__type__": "cc.Size",
  264. "width": 100,
  265. "height": 100
  266. },
  267. "_anchorPoint": {
  268. "__type__": "cc.Vec2",
  269. "x": 0.5,
  270. "y": 0.5
  271. },
  272. "_id": "c2C1RYIRJCs4TFjCmz04Yc"
  273. },
  274. {
  275. "__type__": "18f63ARhEZPZrK10XmLFDd4",
  276. "_name": "",
  277. "_objFlags": 0,
  278. "node": {
  279. "__id__": 10
  280. },
  281. "_enabled": true,
  282. "login": {
  283. "__id__": 13
  284. },
  285. "appUpdate": {
  286. "__id__": 139
  287. },
  288. "hotUpdate": {
  289. "__id__": 141
  290. },
  291. "progressBar": {
  292. "__id__": 16
  293. },
  294. "_id": "ccrQtEyoBJ7I3LdLUrXjLI"
  295. },
  296. {
  297. "__type__": "e842f40A2xPW4//xDEY1DFD",
  298. "_name": "",
  299. "_objFlags": 0,
  300. "node": {
  301. "__id__": 14
  302. },
  303. "_enabled": true,
  304. "progressBar": {
  305. "__id__": 16
  306. },
  307. "http": {
  308. "__id__": 15
  309. },
  310. "account": "znh",
  311. "loginType": 0,
  312. "wechatButton": {
  313. "__id__": 50
  314. },
  315. "_id": "c20CqOsQhMPaPLFlrSgPxf"
  316. },
  317. {
  318. "__type__": "cc.Node",
  319. "_name": "登录",
  320. "_objFlags": 0,
  321. "_parent": {
  322. "__id__": 1
  323. },
  324. "_children": [],
  325. "_active": true,
  326. "_components": [
  327. {
  328. "__id__": 15
  329. },
  330. {
  331. "__id__": 13
  332. }
  333. ],
  334. "_prefab": null,
  335. "_lpos": {
  336. "__type__": "cc.Vec3",
  337. "x": 360,
  338. "y": 98.5,
  339. "z": 0
  340. },
  341. "_lrot": {
  342. "__type__": "cc.Quat",
  343. "x": 0,
  344. "y": 0,
  345. "z": 0,
  346. "w": 1
  347. },
  348. "_lscale": {
  349. "__type__": "cc.Vec3",
  350. "x": 1,
  351. "y": 1,
  352. "z": 1
  353. },
  354. "_layer": 1073741824,
  355. "_euler": {
  356. "__type__": "cc.Vec3",
  357. "x": 0,
  358. "y": 0,
  359. "z": 0
  360. },
  361. "_id": "aa4MDhuFxPBIe3JwhoFuql"
  362. },
  363. {
  364. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  365. "_name": "",
  366. "_objFlags": 0,
  367. "node": {
  368. "__id__": 14
  369. },
  370. "_enabled": true,
  371. "__prefab": null,
  372. "hostAlias": "",
  373. "withCredentials": false,
  374. "timeout": 0,
  375. "responseType": 3,
  376. "useEncrypt": false,
  377. "useLog": true,
  378. "_id": "5fchtl0zRMsLFTfU5TIr1e"
  379. },
  380. {
  381. "__type__": "cc.ProgressBar",
  382. "_name": "",
  383. "_objFlags": 0,
  384. "node": {
  385. "__id__": 17
  386. },
  387. "_enabled": true,
  388. "__prefab": null,
  389. "_barSprite": {
  390. "__id__": 101
  391. },
  392. "_mode": 2,
  393. "_totalLength": 1,
  394. "_progress": 0,
  395. "_reverse": false,
  396. "_id": "edCRIYghhJt5TQcQUTg1DM"
  397. },
  398. {
  399. "__type__": "cc.Node",
  400. "_name": "progress",
  401. "_objFlags": 0,
  402. "_parent": {
  403. "__id__": 18
  404. },
  405. "_children": [
  406. {
  407. "__id__": 99
  408. },
  409. {
  410. "__id__": 102
  411. }
  412. ],
  413. "_active": true,
  414. "_components": [
  415. {
  416. "__id__": 137
  417. },
  418. {
  419. "__id__": 138
  420. },
  421. {
  422. "__id__": 16
  423. }
  424. ],
  425. "_prefab": null,
  426. "_lpos": {
  427. "__type__": "cc.Vec3",
  428. "x": 0,
  429. "y": -400.033,
  430. "z": 0
  431. },
  432. "_lrot": {
  433. "__type__": "cc.Quat",
  434. "x": 0,
  435. "y": 0,
  436. "z": 0,
  437. "w": 1
  438. },
  439. "_lscale": {
  440. "__type__": "cc.Vec3",
  441. "x": 1,
  442. "y": 1,
  443. "z": 1
  444. },
  445. "_layer": 1073741824,
  446. "_euler": {
  447. "__type__": "cc.Vec3",
  448. "x": 0,
  449. "y": 0,
  450. "z": 0
  451. },
  452. "_id": "eayafXYKNIFowrskn6RAoY"
  453. },
  454. {
  455. "__type__": "cc.Node",
  456. "_name": "UI",
  457. "_objFlags": 0,
  458. "_parent": {
  459. "__id__": 19
  460. },
  461. "_children": [
  462. {
  463. "__id__": 38
  464. },
  465. {
  466. "__id__": 17
  467. },
  468. {
  469. "__id__": 42
  470. },
  471. {
  472. "__id__": 45
  473. },
  474. {
  475. "__id__": 53
  476. }
  477. ],
  478. "_active": true,
  479. "_components": [
  480. {
  481. "__id__": 97
  482. },
  483. {
  484. "__id__": 98
  485. }
  486. ],
  487. "_prefab": null,
  488. "_lpos": {
  489. "__type__": "cc.Vec3",
  490. "x": 0,
  491. "y": 0,
  492. "z": 0
  493. },
  494. "_lrot": {
  495. "__type__": "cc.Quat",
  496. "x": 0,
  497. "y": 0,
  498. "z": 0,
  499. "w": 1
  500. },
  501. "_lscale": {
  502. "__type__": "cc.Vec3",
  503. "x": 1,
  504. "y": 1,
  505. "z": 1
  506. },
  507. "_layer": 1073741824,
  508. "_euler": {
  509. "__type__": "cc.Vec3",
  510. "x": 0,
  511. "y": 0,
  512. "z": 0
  513. },
  514. "_id": "43DKo9J5tLp4g2mPD3y8D0"
  515. },
  516. {
  517. "__type__": "cc.Node",
  518. "_name": "Canvas",
  519. "_objFlags": 0,
  520. "_parent": {
  521. "__id__": 1
  522. },
  523. "_children": [
  524. {
  525. "__id__": 20
  526. },
  527. {
  528. "__id__": 22
  529. },
  530. {
  531. "__id__": 18
  532. }
  533. ],
  534. "_active": true,
  535. "_components": [
  536. {
  537. "__id__": 32
  538. },
  539. {
  540. "__id__": 34
  541. },
  542. {
  543. "__id__": 36
  544. }
  545. ],
  546. "_prefab": null,
  547. "_lpos": {
  548. "__type__": "cc.Vec3",
  549. "x": 375,
  550. "y": 667,
  551. "z": 0
  552. },
  553. "_lrot": {
  554. "__type__": "cc.Quat",
  555. "x": 0,
  556. "y": 0,
  557. "z": 0,
  558. "w": 1
  559. },
  560. "_lscale": {
  561. "__type__": "cc.Vec3",
  562. "x": 1,
  563. "y": 1,
  564. "z": 1
  565. },
  566. "_layer": 33554432,
  567. "_euler": {
  568. "__type__": "cc.Vec3",
  569. "x": 0,
  570. "y": 0,
  571. "z": 0
  572. },
  573. "_id": "614ZRS4nNHppSZp5STydv9"
  574. },
  575. {
  576. "__type__": "cc.Node",
  577. "_name": "Camera",
  578. "_objFlags": 0,
  579. "_parent": {
  580. "__id__": 19
  581. },
  582. "_children": [],
  583. "_active": true,
  584. "_components": [
  585. {
  586. "__id__": 21
  587. }
  588. ],
  589. "_prefab": null,
  590. "_lpos": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 0,
  594. "z": 1000
  595. },
  596. "_lrot": {
  597. "__type__": "cc.Quat",
  598. "x": 0,
  599. "y": 0,
  600. "z": 0,
  601. "w": 1
  602. },
  603. "_lscale": {
  604. "__type__": "cc.Vec3",
  605. "x": 1,
  606. "y": 1,
  607. "z": 1
  608. },
  609. "_layer": 1073741824,
  610. "_euler": {
  611. "__type__": "cc.Vec3",
  612. "x": 0,
  613. "y": 0,
  614. "z": 0
  615. },
  616. "_id": "8ehKtXb5xDsKAuiirwD3Rq"
  617. },
  618. {
  619. "__type__": "cc.Camera",
  620. "_name": "",
  621. "_objFlags": 0,
  622. "node": {
  623. "__id__": 20
  624. },
  625. "_enabled": true,
  626. "__prefab": null,
  627. "_projection": 0,
  628. "_priority": 1073741824,
  629. "_fov": 45,
  630. "_fovAxis": 0,
  631. "_orthoHeight": 667,
  632. "_near": 1,
  633. "_far": 2000,
  634. "_color": {
  635. "__type__": "cc.Color",
  636. "r": 0,
  637. "g": 0,
  638. "b": 0,
  639. "a": 255
  640. },
  641. "_depth": 1,
  642. "_stencil": 0,
  643. "_clearFlags": 6,
  644. "_rect": {
  645. "__type__": "cc.Rect",
  646. "x": 0,
  647. "y": 0,
  648. "width": 1,
  649. "height": 1
  650. },
  651. "_aperture": 19,
  652. "_shutter": 7,
  653. "_iso": 0,
  654. "_screenScale": 1,
  655. "_visibility": 1115684864,
  656. "_targetTexture": null,
  657. "_id": "b7HSXNlrFOIKbDNo/wGvbH"
  658. },
  659. {
  660. "__type__": "cc.Node",
  661. "_name": "BackGround",
  662. "_objFlags": 0,
  663. "_parent": {
  664. "__id__": 19
  665. },
  666. "_children": [
  667. {
  668. "__id__": 23
  669. },
  670. {
  671. "__id__": 27
  672. }
  673. ],
  674. "_active": true,
  675. "_components": [
  676. {
  677. "__id__": 30
  678. },
  679. {
  680. "__id__": 31
  681. }
  682. ],
  683. "_prefab": null,
  684. "_lpos": {
  685. "__type__": "cc.Vec3",
  686. "x": 0,
  687. "y": 0,
  688. "z": 0
  689. },
  690. "_lrot": {
  691. "__type__": "cc.Quat",
  692. "x": 0,
  693. "y": 0,
  694. "z": 0,
  695. "w": 1
  696. },
  697. "_lscale": {
  698. "__type__": "cc.Vec3",
  699. "x": 1,
  700. "y": 1,
  701. "z": 1
  702. },
  703. "_layer": 1073741824,
  704. "_euler": {
  705. "__type__": "cc.Vec3",
  706. "x": 0,
  707. "y": 0,
  708. "z": 0
  709. },
  710. "_id": "608w3HK6VI3YOmSWU8ZJY3"
  711. },
  712. {
  713. "__type__": "cc.Node",
  714. "_name": "launchBg",
  715. "_objFlags": 0,
  716. "_parent": {
  717. "__id__": 22
  718. },
  719. "_children": [],
  720. "_active": true,
  721. "_components": [
  722. {
  723. "__id__": 24
  724. },
  725. {
  726. "__id__": 25
  727. },
  728. {
  729. "__id__": 26
  730. }
  731. ],
  732. "_prefab": null,
  733. "_lpos": {
  734. "__type__": "cc.Vec3",
  735. "x": 0,
  736. "y": 0,
  737. "z": 0
  738. },
  739. "_lrot": {
  740. "__type__": "cc.Quat",
  741. "x": 0,
  742. "y": 0,
  743. "z": 0,
  744. "w": 1
  745. },
  746. "_lscale": {
  747. "__type__": "cc.Vec3",
  748. "x": 1,
  749. "y": 1,
  750. "z": 1
  751. },
  752. "_layer": 1073741824,
  753. "_euler": {
  754. "__type__": "cc.Vec3",
  755. "x": 0,
  756. "y": 0,
  757. "z": 0
  758. },
  759. "_id": "24aWmPOvhPxYD/CNbQzdLY"
  760. },
  761. {
  762. "__type__": "cc.UITransform",
  763. "_name": "",
  764. "_objFlags": 0,
  765. "node": {
  766. "__id__": 23
  767. },
  768. "_enabled": true,
  769. "__prefab": null,
  770. "_priority": 0,
  771. "_contentSize": {
  772. "__type__": "cc.Size",
  773. "width": 750,
  774. "height": 1334
  775. },
  776. "_anchorPoint": {
  777. "__type__": "cc.Vec2",
  778. "x": 0.5,
  779. "y": 0.5
  780. },
  781. "_id": "3ddOwF1+VNt5Aqq6+sAGZX"
  782. },
  783. {
  784. "__type__": "cc.Sprite",
  785. "_name": "",
  786. "_objFlags": 0,
  787. "node": {
  788. "__id__": 23
  789. },
  790. "_enabled": true,
  791. "__prefab": null,
  792. "_visFlags": 0,
  793. "_customMaterial": null,
  794. "_srcBlendFactor": 2,
  795. "_dstBlendFactor": 4,
  796. "_color": {
  797. "__type__": "cc.Color",
  798. "r": 255,
  799. "g": 255,
  800. "b": 255,
  801. "a": 255
  802. },
  803. "_spriteFrame": {
  804. "__uuid__": "4535d4f2-ef41-4bf4-a38f-0b083b7cea99@f9941"
  805. },
  806. "_type": 0,
  807. "_fillType": 0,
  808. "_sizeMode": 0,
  809. "_fillCenter": {
  810. "__type__": "cc.Vec2",
  811. "x": 0,
  812. "y": 0
  813. },
  814. "_fillStart": 0,
  815. "_fillRange": 0,
  816. "_isTrimmedMode": true,
  817. "_useGrayscale": false,
  818. "_atlas": null,
  819. "_id": "e2BtfExp1F8LHK4gVIHVNB"
  820. },
  821. {
  822. "__type__": "cc.Widget",
  823. "_name": "",
  824. "_objFlags": 0,
  825. "node": {
  826. "__id__": 23
  827. },
  828. "_enabled": true,
  829. "__prefab": null,
  830. "_alignFlags": 45,
  831. "_target": null,
  832. "_left": 0,
  833. "_right": 0,
  834. "_top": 0,
  835. "_bottom": 0,
  836. "_horizontalCenter": 0,
  837. "_verticalCenter": 0,
  838. "_isAbsLeft": true,
  839. "_isAbsRight": true,
  840. "_isAbsTop": true,
  841. "_isAbsBottom": true,
  842. "_isAbsHorizontalCenter": true,
  843. "_isAbsVerticalCenter": true,
  844. "_originalWidth": 720,
  845. "_originalHeight": 1555,
  846. "_alignMode": 2,
  847. "_lockFlags": 0,
  848. "_id": "05+Eif5mBBYoa0CNf62huu"
  849. },
  850. {
  851. "__type__": "cc.Node",
  852. "_name": "launch_icon",
  853. "_objFlags": 0,
  854. "_parent": {
  855. "__id__": 22
  856. },
  857. "_children": [],
  858. "_active": true,
  859. "_components": [
  860. {
  861. "__id__": 28
  862. },
  863. {
  864. "__id__": 29
  865. }
  866. ],
  867. "_prefab": null,
  868. "_lpos": {
  869. "__type__": "cc.Vec3",
  870. "x": 0,
  871. "y": -151.539,
  872. "z": 0
  873. },
  874. "_lrot": {
  875. "__type__": "cc.Quat",
  876. "x": 0,
  877. "y": 0,
  878. "z": 0,
  879. "w": 1
  880. },
  881. "_lscale": {
  882. "__type__": "cc.Vec3",
  883. "x": 1,
  884. "y": 1,
  885. "z": 1
  886. },
  887. "_layer": 1073741824,
  888. "_euler": {
  889. "__type__": "cc.Vec3",
  890. "x": 0,
  891. "y": 0,
  892. "z": 0
  893. },
  894. "_id": "97nl+CvQhKlrRFloIuUeCj"
  895. },
  896. {
  897. "__type__": "cc.UITransform",
  898. "_name": "",
  899. "_objFlags": 0,
  900. "node": {
  901. "__id__": 27
  902. },
  903. "_enabled": true,
  904. "__prefab": null,
  905. "_priority": 0,
  906. "_contentSize": {
  907. "__type__": "cc.Size",
  908. "width": 518,
  909. "height": 439
  910. },
  911. "_anchorPoint": {
  912. "__type__": "cc.Vec2",
  913. "x": 0.5,
  914. "y": 0.5
  915. },
  916. "_id": "cff3vNZ6pAhqakImRwN5g3"
  917. },
  918. {
  919. "__type__": "cc.Sprite",
  920. "_name": "",
  921. "_objFlags": 0,
  922. "node": {
  923. "__id__": 27
  924. },
  925. "_enabled": true,
  926. "__prefab": null,
  927. "_visFlags": 0,
  928. "_customMaterial": null,
  929. "_srcBlendFactor": 2,
  930. "_dstBlendFactor": 4,
  931. "_color": {
  932. "__type__": "cc.Color",
  933. "r": 255,
  934. "g": 255,
  935. "b": 255,
  936. "a": 255
  937. },
  938. "_spriteFrame": {
  939. "__uuid__": "fe963f6f-56b4-4c73-9cea-d553e1f66071@f9941"
  940. },
  941. "_type": 0,
  942. "_fillType": 0,
  943. "_sizeMode": 1,
  944. "_fillCenter": {
  945. "__type__": "cc.Vec2",
  946. "x": 0,
  947. "y": 0
  948. },
  949. "_fillStart": 0,
  950. "_fillRange": 0,
  951. "_isTrimmedMode": true,
  952. "_useGrayscale": false,
  953. "_atlas": null,
  954. "_id": "70xDbe5sRC4JZFY3YmAGi+"
  955. },
  956. {
  957. "__type__": "cc.UITransform",
  958. "_name": "",
  959. "_objFlags": 0,
  960. "node": {
  961. "__id__": 22
  962. },
  963. "_enabled": true,
  964. "__prefab": null,
  965. "_priority": 0,
  966. "_contentSize": {
  967. "__type__": "cc.Size",
  968. "width": 750,
  969. "height": 1334
  970. },
  971. "_anchorPoint": {
  972. "__type__": "cc.Vec2",
  973. "x": 0.5,
  974. "y": 0.5
  975. },
  976. "_id": "d76avl0ltGIojhyQqVWMvu"
  977. },
  978. {
  979. "__type__": "cc.Widget",
  980. "_name": "",
  981. "_objFlags": 0,
  982. "node": {
  983. "__id__": 22
  984. },
  985. "_enabled": true,
  986. "__prefab": null,
  987. "_alignFlags": 45,
  988. "_target": null,
  989. "_left": 0,
  990. "_right": 0,
  991. "_top": 0,
  992. "_bottom": 0,
  993. "_horizontalCenter": 0,
  994. "_verticalCenter": 0,
  995. "_isAbsLeft": true,
  996. "_isAbsRight": true,
  997. "_isAbsTop": true,
  998. "_isAbsBottom": true,
  999. "_isAbsHorizontalCenter": true,
  1000. "_isAbsVerticalCenter": true,
  1001. "_originalWidth": 100,
  1002. "_originalHeight": 100,
  1003. "_alignMode": 2,
  1004. "_lockFlags": 0,
  1005. "_id": "f8yIUwRNhHxaTwqkPvOUXl"
  1006. },
  1007. {
  1008. "__type__": "cc.UITransform",
  1009. "_name": "",
  1010. "_objFlags": 0,
  1011. "node": {
  1012. "__id__": 19
  1013. },
  1014. "_enabled": true,
  1015. "__prefab": {
  1016. "__id__": 33
  1017. },
  1018. "_priority": 0,
  1019. "_contentSize": {
  1020. "__type__": "cc.Size",
  1021. "width": 750,
  1022. "height": 1334
  1023. },
  1024. "_anchorPoint": {
  1025. "__type__": "cc.Vec2",
  1026. "x": 0.5,
  1027. "y": 0.5
  1028. },
  1029. "_id": "f1gWwBp5pHWLjOCWypeElQ"
  1030. },
  1031. {
  1032. "__type__": "cc.CompPrefabInfo",
  1033. "fileId": "0dngp/9gNO34wUQjZfN/CX"
  1034. },
  1035. {
  1036. "__type__": "cc.Canvas",
  1037. "_name": "",
  1038. "_objFlags": 0,
  1039. "node": {
  1040. "__id__": 19
  1041. },
  1042. "_enabled": true,
  1043. "__prefab": {
  1044. "__id__": 35
  1045. },
  1046. "_cameraComponent": {
  1047. "__id__": 21
  1048. },
  1049. "_alignCanvasWithScreen": true,
  1050. "_id": "dd/lgOei9PxZQtCvSNfaQy"
  1051. },
  1052. {
  1053. "__type__": "cc.CompPrefabInfo",
  1054. "fileId": "3f2oTdCepERZdpmIfLsrhd"
  1055. },
  1056. {
  1057. "__type__": "cc.Widget",
  1058. "_name": "",
  1059. "_objFlags": 0,
  1060. "node": {
  1061. "__id__": 19
  1062. },
  1063. "_enabled": true,
  1064. "__prefab": {
  1065. "__id__": 37
  1066. },
  1067. "_alignFlags": 45,
  1068. "_target": null,
  1069. "_left": 0,
  1070. "_right": 0,
  1071. "_top": 0,
  1072. "_bottom": 0,
  1073. "_horizontalCenter": 0,
  1074. "_verticalCenter": 0,
  1075. "_isAbsLeft": true,
  1076. "_isAbsRight": true,
  1077. "_isAbsTop": true,
  1078. "_isAbsBottom": true,
  1079. "_isAbsHorizontalCenter": true,
  1080. "_isAbsVerticalCenter": true,
  1081. "_originalWidth": 0,
  1082. "_originalHeight": 0,
  1083. "_alignMode": 2,
  1084. "_lockFlags": 0,
  1085. "_id": "987ruUc5dPw5VuTfcZFVU5"
  1086. },
  1087. {
  1088. "__type__": "cc.CompPrefabInfo",
  1089. "fileId": "e8a+bU/8dPDbbJguUzLdoF"
  1090. },
  1091. {
  1092. "__type__": "cc.Node",
  1093. "_name": "launchLogo",
  1094. "_objFlags": 0,
  1095. "_parent": {
  1096. "__id__": 18
  1097. },
  1098. "_children": [],
  1099. "_active": true,
  1100. "_components": [
  1101. {
  1102. "__id__": 39
  1103. },
  1104. {
  1105. "__id__": 40
  1106. },
  1107. {
  1108. "__id__": 41
  1109. }
  1110. ],
  1111. "_prefab": null,
  1112. "_lpos": {
  1113. "__type__": "cc.Vec3",
  1114. "x": 0,
  1115. "y": 460,
  1116. "z": 0
  1117. },
  1118. "_lrot": {
  1119. "__type__": "cc.Quat",
  1120. "x": 0,
  1121. "y": 0,
  1122. "z": 0,
  1123. "w": 1
  1124. },
  1125. "_lscale": {
  1126. "__type__": "cc.Vec3",
  1127. "x": 1,
  1128. "y": 1,
  1129. "z": 1
  1130. },
  1131. "_layer": 1073741824,
  1132. "_euler": {
  1133. "__type__": "cc.Vec3",
  1134. "x": 0,
  1135. "y": 0,
  1136. "z": 0
  1137. },
  1138. "_id": "89cogYKY5N6ImhFs8CoGne"
  1139. },
  1140. {
  1141. "__type__": "cc.UITransform",
  1142. "_name": "",
  1143. "_objFlags": 0,
  1144. "node": {
  1145. "__id__": 38
  1146. },
  1147. "_enabled": true,
  1148. "__prefab": null,
  1149. "_priority": 0,
  1150. "_contentSize": {
  1151. "__type__": "cc.Size",
  1152. "width": 457,
  1153. "height": 324
  1154. },
  1155. "_anchorPoint": {
  1156. "__type__": "cc.Vec2",
  1157. "x": 0.5,
  1158. "y": 0.5
  1159. },
  1160. "_id": "1d0kEsFiRKioMKtX8F5RTu"
  1161. },
  1162. {
  1163. "__type__": "cc.Sprite",
  1164. "_name": "",
  1165. "_objFlags": 0,
  1166. "node": {
  1167. "__id__": 38
  1168. },
  1169. "_enabled": true,
  1170. "__prefab": null,
  1171. "_visFlags": 0,
  1172. "_customMaterial": null,
  1173. "_srcBlendFactor": 2,
  1174. "_dstBlendFactor": 4,
  1175. "_color": {
  1176. "__type__": "cc.Color",
  1177. "r": 255,
  1178. "g": 255,
  1179. "b": 255,
  1180. "a": 255
  1181. },
  1182. "_spriteFrame": {
  1183. "__uuid__": "d6a8acfb-d88d-429f-99a9-febe00636870@f9941"
  1184. },
  1185. "_type": 0,
  1186. "_fillType": 0,
  1187. "_sizeMode": 0,
  1188. "_fillCenter": {
  1189. "__type__": "cc.Vec2",
  1190. "x": 0,
  1191. "y": 0
  1192. },
  1193. "_fillStart": 0,
  1194. "_fillRange": 0,
  1195. "_isTrimmedMode": true,
  1196. "_useGrayscale": false,
  1197. "_atlas": null,
  1198. "_id": "a6IthHlClFy5k00VlUL4QC"
  1199. },
  1200. {
  1201. "__type__": "cc.Animation",
  1202. "_name": "",
  1203. "_objFlags": 0,
  1204. "node": {
  1205. "__id__": 38
  1206. },
  1207. "_enabled": true,
  1208. "__prefab": null,
  1209. "playOnLoad": true,
  1210. "_clips": [
  1211. {
  1212. "__uuid__": "88b48e3d-463a-440c-ad64-84e7f0c90340"
  1213. }
  1214. ],
  1215. "_defaultClip": {
  1216. "__uuid__": "88b48e3d-463a-440c-ad64-84e7f0c90340"
  1217. },
  1218. "_id": "edaqjkYFVGdoKHavbbSg+Y"
  1219. },
  1220. {
  1221. "__type__": "cc.Node",
  1222. "_name": "launch_notice",
  1223. "_objFlags": 0,
  1224. "_parent": {
  1225. "__id__": 18
  1226. },
  1227. "_children": [],
  1228. "_active": true,
  1229. "_components": [
  1230. {
  1231. "__id__": 43
  1232. },
  1233. {
  1234. "__id__": 44
  1235. }
  1236. ],
  1237. "_prefab": null,
  1238. "_lpos": {
  1239. "__type__": "cc.Vec3",
  1240. "x": 0,
  1241. "y": -528.281,
  1242. "z": 0
  1243. },
  1244. "_lrot": {
  1245. "__type__": "cc.Quat",
  1246. "x": 0,
  1247. "y": 0,
  1248. "z": 0,
  1249. "w": 1
  1250. },
  1251. "_lscale": {
  1252. "__type__": "cc.Vec3",
  1253. "x": 1,
  1254. "y": 1,
  1255. "z": 1
  1256. },
  1257. "_layer": 1073741824,
  1258. "_euler": {
  1259. "__type__": "cc.Vec3",
  1260. "x": 0,
  1261. "y": 0,
  1262. "z": 0
  1263. },
  1264. "_id": "33eGm4hNFJeJyL07FMncz7"
  1265. },
  1266. {
  1267. "__type__": "cc.UITransform",
  1268. "_name": "",
  1269. "_objFlags": 0,
  1270. "node": {
  1271. "__id__": 42
  1272. },
  1273. "_enabled": true,
  1274. "__prefab": null,
  1275. "_priority": 0,
  1276. "_contentSize": {
  1277. "__type__": "cc.Size",
  1278. "width": 686,
  1279. "height": 96
  1280. },
  1281. "_anchorPoint": {
  1282. "__type__": "cc.Vec2",
  1283. "x": 0.5,
  1284. "y": 0.5
  1285. },
  1286. "_id": "8459Z7O61NR6ZhIqKeELTF"
  1287. },
  1288. {
  1289. "__type__": "cc.Sprite",
  1290. "_name": "",
  1291. "_objFlags": 0,
  1292. "node": {
  1293. "__id__": 42
  1294. },
  1295. "_enabled": true,
  1296. "__prefab": null,
  1297. "_visFlags": 0,
  1298. "_customMaterial": null,
  1299. "_srcBlendFactor": 2,
  1300. "_dstBlendFactor": 4,
  1301. "_color": {
  1302. "__type__": "cc.Color",
  1303. "r": 255,
  1304. "g": 255,
  1305. "b": 255,
  1306. "a": 255
  1307. },
  1308. "_spriteFrame": {
  1309. "__uuid__": "2ff5c5d3-0b60-4a89-b293-398a64e931cf@f9941"
  1310. },
  1311. "_type": 0,
  1312. "_fillType": 0,
  1313. "_sizeMode": 1,
  1314. "_fillCenter": {
  1315. "__type__": "cc.Vec2",
  1316. "x": 0,
  1317. "y": 0
  1318. },
  1319. "_fillStart": 0,
  1320. "_fillRange": 0,
  1321. "_isTrimmedMode": true,
  1322. "_useGrayscale": false,
  1323. "_atlas": null,
  1324. "_id": "6fIxlrpeBECouyOZc0eNzw"
  1325. },
  1326. {
  1327. "__type__": "cc.Node",
  1328. "_name": "微信登录按钮",
  1329. "_objFlags": 0,
  1330. "_parent": {
  1331. "__id__": 18
  1332. },
  1333. "_children": [],
  1334. "_active": false,
  1335. "_components": [
  1336. {
  1337. "__id__": 46
  1338. },
  1339. {
  1340. "__id__": 48
  1341. },
  1342. {
  1343. "__id__": 50
  1344. }
  1345. ],
  1346. "_prefab": null,
  1347. "_lpos": {
  1348. "__type__": "cc.Vec3",
  1349. "x": 0,
  1350. "y": -374.7,
  1351. "z": 0
  1352. },
  1353. "_lrot": {
  1354. "__type__": "cc.Quat",
  1355. "x": 0,
  1356. "y": 0,
  1357. "z": 0,
  1358. "w": 1
  1359. },
  1360. "_lscale": {
  1361. "__type__": "cc.Vec3",
  1362. "x": 1,
  1363. "y": 1,
  1364. "z": 1
  1365. },
  1366. "_layer": 33554432,
  1367. "_euler": {
  1368. "__type__": "cc.Vec3",
  1369. "x": 0,
  1370. "y": 0,
  1371. "z": 0
  1372. },
  1373. "_id": "fb3VVZcP1AYL3PTVdGR+4R"
  1374. },
  1375. {
  1376. "__type__": "cc.UITransform",
  1377. "_name": "",
  1378. "_objFlags": 0,
  1379. "node": {
  1380. "__id__": 45
  1381. },
  1382. "_enabled": true,
  1383. "__prefab": {
  1384. "__id__": 47
  1385. },
  1386. "_priority": 0,
  1387. "_contentSize": {
  1388. "__type__": "cc.Size",
  1389. "width": 343,
  1390. "height": 128
  1391. },
  1392. "_anchorPoint": {
  1393. "__type__": "cc.Vec2",
  1394. "x": 0.5,
  1395. "y": 0.5
  1396. },
  1397. "_id": "61tfMH4E1G4ZIER1iYZogE"
  1398. },
  1399. {
  1400. "__type__": "cc.CompPrefabInfo",
  1401. "fileId": "98TYGMtwRBTYZZn4EZmhzJ"
  1402. },
  1403. {
  1404. "__type__": "cc.Sprite",
  1405. "_name": "",
  1406. "_objFlags": 0,
  1407. "node": {
  1408. "__id__": 45
  1409. },
  1410. "_enabled": true,
  1411. "__prefab": {
  1412. "__id__": 49
  1413. },
  1414. "_visFlags": 0,
  1415. "_customMaterial": null,
  1416. "_srcBlendFactor": 2,
  1417. "_dstBlendFactor": 4,
  1418. "_color": {
  1419. "__type__": "cc.Color",
  1420. "r": 255,
  1421. "g": 255,
  1422. "b": 255,
  1423. "a": 255
  1424. },
  1425. "_spriteFrame": {
  1426. "__uuid__": "a1f54319-f0bc-40b6-a5ad-d6c3a296c226@f9941"
  1427. },
  1428. "_type": 1,
  1429. "_fillType": 0,
  1430. "_sizeMode": 0,
  1431. "_fillCenter": {
  1432. "__type__": "cc.Vec2",
  1433. "x": 0,
  1434. "y": 0
  1435. },
  1436. "_fillStart": 0,
  1437. "_fillRange": 0,
  1438. "_isTrimmedMode": true,
  1439. "_useGrayscale": false,
  1440. "_atlas": null,
  1441. "_id": "e4EN54R+BDZbGAqLs2MVVk"
  1442. },
  1443. {
  1444. "__type__": "cc.CompPrefabInfo",
  1445. "fileId": "77BcV1zfNHo4LI4KRqZupe"
  1446. },
  1447. {
  1448. "__type__": "cc.Button",
  1449. "_name": "",
  1450. "_objFlags": 0,
  1451. "node": {
  1452. "__id__": 45
  1453. },
  1454. "_enabled": true,
  1455. "__prefab": {
  1456. "__id__": 51
  1457. },
  1458. "clickEvents": [
  1459. {
  1460. "__id__": 52
  1461. }
  1462. ],
  1463. "_interactable": true,
  1464. "_transition": 3,
  1465. "_normalColor": {
  1466. "__type__": "cc.Color",
  1467. "r": 214,
  1468. "g": 214,
  1469. "b": 214,
  1470. "a": 255
  1471. },
  1472. "_hoverColor": {
  1473. "__type__": "cc.Color",
  1474. "r": 211,
  1475. "g": 211,
  1476. "b": 211,
  1477. "a": 255
  1478. },
  1479. "_pressedColor": {
  1480. "__type__": "cc.Color",
  1481. "r": 255,
  1482. "g": 255,
  1483. "b": 255,
  1484. "a": 255
  1485. },
  1486. "_disabledColor": {
  1487. "__type__": "cc.Color",
  1488. "r": 124,
  1489. "g": 124,
  1490. "b": 124,
  1491. "a": 255
  1492. },
  1493. "_normalSprite": {
  1494. "__uuid__": "a1f54319-f0bc-40b6-a5ad-d6c3a296c226@f9941"
  1495. },
  1496. "_hoverSprite": {
  1497. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941"
  1498. },
  1499. "_pressedSprite": {
  1500. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941"
  1501. },
  1502. "_disabledSprite": {
  1503. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  1504. },
  1505. "_duration": 0.1,
  1506. "_zoomScale": 1.2,
  1507. "_target": {
  1508. "__id__": 45
  1509. },
  1510. "_id": "08oUMlImxMW60yvc/nTDV3"
  1511. },
  1512. {
  1513. "__type__": "cc.CompPrefabInfo",
  1514. "fileId": "2fOwBXUwBNvaJ4NyyrOq4C"
  1515. },
  1516. {
  1517. "__type__": "cc.ClickEvent",
  1518. "target": {
  1519. "__id__": 14
  1520. },
  1521. "component": "",
  1522. "_componentId": "e842f40A2xPW4//xDEY1DFD",
  1523. "handler": "onWechatLogin",
  1524. "customEventData": ""
  1525. },
  1526. {
  1527. "__type__": "cc.Node",
  1528. "_name": "协议",
  1529. "_objFlags": 0,
  1530. "_parent": {
  1531. "__id__": 18
  1532. },
  1533. "_children": [
  1534. {
  1535. "__id__": 54
  1536. },
  1537. {
  1538. "__id__": 66
  1539. },
  1540. {
  1541. "__id__": 72
  1542. },
  1543. {
  1544. "__id__": 80
  1545. },
  1546. {
  1547. "__id__": 86
  1548. }
  1549. ],
  1550. "_active": true,
  1551. "_components": [
  1552. {
  1553. "__id__": 94
  1554. },
  1555. {
  1556. "__id__": 95
  1557. },
  1558. {
  1559. "__id__": 96
  1560. }
  1561. ],
  1562. "_prefab": null,
  1563. "_lpos": {
  1564. "__type__": "cc.Vec3",
  1565. "x": 0,
  1566. "y": -617,
  1567. "z": 0
  1568. },
  1569. "_lrot": {
  1570. "__type__": "cc.Quat",
  1571. "x": 0,
  1572. "y": 0,
  1573. "z": 0,
  1574. "w": 1
  1575. },
  1576. "_lscale": {
  1577. "__type__": "cc.Vec3",
  1578. "x": 1,
  1579. "y": 1,
  1580. "z": 1
  1581. },
  1582. "_layer": 1073741824,
  1583. "_euler": {
  1584. "__type__": "cc.Vec3",
  1585. "x": 0,
  1586. "y": 0,
  1587. "z": 0
  1588. },
  1589. "_id": "67BwGxoJdIQI4DnEBfP8Vb"
  1590. },
  1591. {
  1592. "__type__": "cc.Node",
  1593. "_name": "Toggle",
  1594. "_objFlags": 0,
  1595. "_parent": {
  1596. "__id__": 53
  1597. },
  1598. "_children": [
  1599. {
  1600. "__id__": 55
  1601. }
  1602. ],
  1603. "_active": true,
  1604. "_components": [
  1605. {
  1606. "__id__": 60
  1607. },
  1608. {
  1609. "__id__": 62
  1610. },
  1611. {
  1612. "__id__": 64
  1613. }
  1614. ],
  1615. "_prefab": null,
  1616. "_lpos": {
  1617. "__type__": "cc.Vec3",
  1618. "x": -269,
  1619. "y": 0,
  1620. "z": 0
  1621. },
  1622. "_lrot": {
  1623. "__type__": "cc.Quat",
  1624. "x": 0,
  1625. "y": 0,
  1626. "z": 0,
  1627. "w": 1
  1628. },
  1629. "_lscale": {
  1630. "__type__": "cc.Vec3",
  1631. "x": 1,
  1632. "y": 1,
  1633. "z": 1
  1634. },
  1635. "_layer": 33554432,
  1636. "_euler": {
  1637. "__type__": "cc.Vec3",
  1638. "x": 0,
  1639. "y": 0,
  1640. "z": 0
  1641. },
  1642. "_id": "72dj1lag5KTZwpZQ90od5U"
  1643. },
  1644. {
  1645. "__type__": "cc.Node",
  1646. "_name": "Checkmark",
  1647. "_objFlags": 0,
  1648. "_parent": {
  1649. "__id__": 54
  1650. },
  1651. "_children": [],
  1652. "_active": true,
  1653. "_components": [
  1654. {
  1655. "__id__": 56
  1656. },
  1657. {
  1658. "__id__": 58
  1659. }
  1660. ],
  1661. "_prefab": null,
  1662. "_lpos": {
  1663. "__type__": "cc.Vec3",
  1664. "x": 0,
  1665. "y": 0,
  1666. "z": 0
  1667. },
  1668. "_lrot": {
  1669. "__type__": "cc.Quat",
  1670. "x": 0,
  1671. "y": 0,
  1672. "z": 0,
  1673. "w": 1
  1674. },
  1675. "_lscale": {
  1676. "__type__": "cc.Vec3",
  1677. "x": 1,
  1678. "y": 1,
  1679. "z": 1
  1680. },
  1681. "_layer": 33554432,
  1682. "_euler": {
  1683. "__type__": "cc.Vec3",
  1684. "x": 0,
  1685. "y": 0,
  1686. "z": 0
  1687. },
  1688. "_id": "8e/tSqK6BPxY1HA3uTr63+"
  1689. },
  1690. {
  1691. "__type__": "cc.UITransform",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "node": {
  1695. "__id__": 55
  1696. },
  1697. "_enabled": true,
  1698. "__prefab": {
  1699. "__id__": 57
  1700. },
  1701. "_priority": 0,
  1702. "_contentSize": {
  1703. "__type__": "cc.Size",
  1704. "width": 26,
  1705. "height": 26
  1706. },
  1707. "_anchorPoint": {
  1708. "__type__": "cc.Vec2",
  1709. "x": 0.5,
  1710. "y": 0.5
  1711. },
  1712. "_id": "863LxxsC5Jra9hRwEZnc+g"
  1713. },
  1714. {
  1715. "__type__": "cc.CompPrefabInfo",
  1716. "fileId": "e4k6OSwohL75lyfsntvPC5"
  1717. },
  1718. {
  1719. "__type__": "cc.Sprite",
  1720. "_name": "",
  1721. "_objFlags": 0,
  1722. "node": {
  1723. "__id__": 55
  1724. },
  1725. "_enabled": true,
  1726. "__prefab": {
  1727. "__id__": 59
  1728. },
  1729. "_visFlags": 0,
  1730. "_customMaterial": null,
  1731. "_srcBlendFactor": 2,
  1732. "_dstBlendFactor": 4,
  1733. "_color": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_spriteFrame": {
  1741. "__uuid__": "158e7e52-3220-4cd7-9694-713e0e6e8278@f9941"
  1742. },
  1743. "_type": 0,
  1744. "_fillType": 0,
  1745. "_sizeMode": 0,
  1746. "_fillCenter": {
  1747. "__type__": "cc.Vec2",
  1748. "x": 0,
  1749. "y": 0
  1750. },
  1751. "_fillStart": 0,
  1752. "_fillRange": 0,
  1753. "_isTrimmedMode": true,
  1754. "_useGrayscale": false,
  1755. "_atlas": null,
  1756. "_id": "48o8DJRu1CyI+8JpzqxRYx"
  1757. },
  1758. {
  1759. "__type__": "cc.CompPrefabInfo",
  1760. "fileId": "25nHiyhlVLhbUiFI4JJ9Sn"
  1761. },
  1762. {
  1763. "__type__": "cc.UITransform",
  1764. "_name": "",
  1765. "_objFlags": 0,
  1766. "node": {
  1767. "__id__": 54
  1768. },
  1769. "_enabled": true,
  1770. "__prefab": {
  1771. "__id__": 61
  1772. },
  1773. "_priority": 0,
  1774. "_contentSize": {
  1775. "__type__": "cc.Size",
  1776. "width": 28,
  1777. "height": 28
  1778. },
  1779. "_anchorPoint": {
  1780. "__type__": "cc.Vec2",
  1781. "x": 0.5,
  1782. "y": 0.5
  1783. },
  1784. "_id": "515NnZ8TFNPbAoAxL/rTrb"
  1785. },
  1786. {
  1787. "__type__": "cc.CompPrefabInfo",
  1788. "fileId": "a7yxb8GDhNnIT24rnD3lO4"
  1789. },
  1790. {
  1791. "__type__": "cc.Sprite",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "node": {
  1795. "__id__": 54
  1796. },
  1797. "_enabled": true,
  1798. "__prefab": {
  1799. "__id__": 63
  1800. },
  1801. "_visFlags": 0,
  1802. "_customMaterial": null,
  1803. "_srcBlendFactor": 2,
  1804. "_dstBlendFactor": 4,
  1805. "_color": {
  1806. "__type__": "cc.Color",
  1807. "r": 255,
  1808. "g": 255,
  1809. "b": 255,
  1810. "a": 255
  1811. },
  1812. "_spriteFrame": {
  1813. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941"
  1814. },
  1815. "_type": 0,
  1816. "_fillType": 0,
  1817. "_sizeMode": 1,
  1818. "_fillCenter": {
  1819. "__type__": "cc.Vec2",
  1820. "x": 0,
  1821. "y": 0
  1822. },
  1823. "_fillStart": 0,
  1824. "_fillRange": 0,
  1825. "_isTrimmedMode": true,
  1826. "_useGrayscale": false,
  1827. "_atlas": null,
  1828. "_id": "50hvmF75tOdJ5spYt2+E19"
  1829. },
  1830. {
  1831. "__type__": "cc.CompPrefabInfo",
  1832. "fileId": "3a4GKzsKZCNLuWHErVRJ1B"
  1833. },
  1834. {
  1835. "__type__": "cc.Toggle",
  1836. "_name": "",
  1837. "_objFlags": 0,
  1838. "node": {
  1839. "__id__": 54
  1840. },
  1841. "_enabled": true,
  1842. "__prefab": {
  1843. "__id__": 65
  1844. },
  1845. "clickEvents": [],
  1846. "_interactable": true,
  1847. "_transition": 0,
  1848. "_normalColor": {
  1849. "__type__": "cc.Color",
  1850. "r": 214,
  1851. "g": 214,
  1852. "b": 214,
  1853. "a": 255
  1854. },
  1855. "_hoverColor": {
  1856. "__type__": "cc.Color",
  1857. "r": 211,
  1858. "g": 211,
  1859. "b": 211,
  1860. "a": 255
  1861. },
  1862. "_pressedColor": {
  1863. "__type__": "cc.Color",
  1864. "r": 255,
  1865. "g": 255,
  1866. "b": 255,
  1867. "a": 255
  1868. },
  1869. "_disabledColor": {
  1870. "__type__": "cc.Color",
  1871. "r": 124,
  1872. "g": 124,
  1873. "b": 124,
  1874. "a": 255
  1875. },
  1876. "_normalSprite": {
  1877. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941"
  1878. },
  1879. "_hoverSprite": null,
  1880. "_pressedSprite": null,
  1881. "_disabledSprite": null,
  1882. "_duration": 0.1,
  1883. "_zoomScale": 1.2,
  1884. "_target": {
  1885. "__id__": 54
  1886. },
  1887. "checkEvents": [],
  1888. "_isChecked": true,
  1889. "_checkMark": {
  1890. "__id__": 58
  1891. },
  1892. "_id": "80MX7EjzJLnZylmL371O5m"
  1893. },
  1894. {
  1895. "__type__": "cc.CompPrefabInfo",
  1896. "fileId": "58GFHdMmJFBa4quSrrbzsk"
  1897. },
  1898. {
  1899. "__type__": "cc.Node",
  1900. "_name": "Label",
  1901. "_objFlags": 0,
  1902. "_parent": {
  1903. "__id__": 53
  1904. },
  1905. "_children": [],
  1906. "_active": true,
  1907. "_components": [
  1908. {
  1909. "__id__": 67
  1910. },
  1911. {
  1912. "__id__": 69
  1913. },
  1914. {
  1915. "__id__": 71
  1916. }
  1917. ],
  1918. "_prefab": null,
  1919. "_lpos": {
  1920. "__type__": "cc.Vec3",
  1921. "x": -135,
  1922. "y": 0,
  1923. "z": 0
  1924. },
  1925. "_lrot": {
  1926. "__type__": "cc.Quat",
  1927. "x": 0,
  1928. "y": 0,
  1929. "z": 0,
  1930. "w": 1
  1931. },
  1932. "_lscale": {
  1933. "__type__": "cc.Vec3",
  1934. "x": 1,
  1935. "y": 1,
  1936. "z": 1
  1937. },
  1938. "_layer": 33554432,
  1939. "_euler": {
  1940. "__type__": "cc.Vec3",
  1941. "x": 0,
  1942. "y": 0,
  1943. "z": 0
  1944. },
  1945. "_id": "65xZKDzHZNDoe2/wMYjy8e"
  1946. },
  1947. {
  1948. "__type__": "cc.UITransform",
  1949. "_name": "",
  1950. "_objFlags": 0,
  1951. "node": {
  1952. "__id__": 66
  1953. },
  1954. "_enabled": true,
  1955. "__prefab": {
  1956. "__id__": 68
  1957. },
  1958. "_priority": 0,
  1959. "_contentSize": {
  1960. "__type__": "cc.Size",
  1961. "width": 240,
  1962. "height": 52.4
  1963. },
  1964. "_anchorPoint": {
  1965. "__type__": "cc.Vec2",
  1966. "x": 0.5,
  1967. "y": 0.5
  1968. },
  1969. "_id": "9clgYry6hKnYGZaR2+Tq3J"
  1970. },
  1971. {
  1972. "__type__": "cc.CompPrefabInfo",
  1973. "fileId": "c68UOAlNhN171Umca6yVvF"
  1974. },
  1975. {
  1976. "__type__": "cc.Label",
  1977. "_name": "",
  1978. "_objFlags": 0,
  1979. "node": {
  1980. "__id__": 66
  1981. },
  1982. "_enabled": true,
  1983. "__prefab": {
  1984. "__id__": 70
  1985. },
  1986. "_visFlags": 0,
  1987. "_customMaterial": null,
  1988. "_srcBlendFactor": 2,
  1989. "_dstBlendFactor": 4,
  1990. "_color": {
  1991. "__type__": "cc.Color",
  1992. "r": 255,
  1993. "g": 255,
  1994. "b": 255,
  1995. "a": 255
  1996. },
  1997. "_string": "我已详细阅读并同意",
  1998. "_horizontalAlign": 1,
  1999. "_verticalAlign": 1,
  2000. "_actualFontSize": 26,
  2001. "_fontSize": 26,
  2002. "_fontFamily": "Arial",
  2003. "_lineHeight": 40,
  2004. "_overflow": 1,
  2005. "_enableWrapText": true,
  2006. "_font": null,
  2007. "_isSystemFontUsed": true,
  2008. "_isItalic": false,
  2009. "_isBold": false,
  2010. "_isUnderline": false,
  2011. "_underlineHeight": 2,
  2012. "_cacheMode": 0,
  2013. "_id": "87DcM3eEhLt7eLO8En9872"
  2014. },
  2015. {
  2016. "__type__": "cc.CompPrefabInfo",
  2017. "fileId": "2frm37uaJHQr0AEEaYyM82"
  2018. },
  2019. {
  2020. "__type__": "cc.LabelOutline",
  2021. "_name": "",
  2022. "_objFlags": 0,
  2023. "node": {
  2024. "__id__": 66
  2025. },
  2026. "_enabled": true,
  2027. "__prefab": null,
  2028. "_color": {
  2029. "__type__": "cc.Color",
  2030. "r": 0,
  2031. "g": 0,
  2032. "b": 0,
  2033. "a": 255
  2034. },
  2035. "_width": 1,
  2036. "_id": "ee5ZTsnWdGoLU6u+x8TXii"
  2037. },
  2038. {
  2039. "__type__": "cc.Node",
  2040. "_name": "Label-001",
  2041. "_objFlags": 0,
  2042. "_parent": {
  2043. "__id__": 53
  2044. },
  2045. "_children": [],
  2046. "_active": true,
  2047. "_components": [
  2048. {
  2049. "__id__": 73
  2050. },
  2051. {
  2052. "__id__": 75
  2053. },
  2054. {
  2055. "__id__": 77
  2056. },
  2057. {
  2058. "__id__": 78
  2059. }
  2060. ],
  2061. "_prefab": null,
  2062. "_lpos": {
  2063. "__type__": "cc.Vec3",
  2064. "x": 40,
  2065. "y": 0,
  2066. "z": 0
  2067. },
  2068. "_lrot": {
  2069. "__type__": "cc.Quat",
  2070. "x": 0,
  2071. "y": 0,
  2072. "z": 0,
  2073. "w": 1
  2074. },
  2075. "_lscale": {
  2076. "__type__": "cc.Vec3",
  2077. "x": 1,
  2078. "y": 1,
  2079. "z": 1
  2080. },
  2081. "_layer": 33554432,
  2082. "_euler": {
  2083. "__type__": "cc.Vec3",
  2084. "x": 0,
  2085. "y": 0,
  2086. "z": 0
  2087. },
  2088. "_id": "05U6+fDhNEwIOfFG5ufWSc"
  2089. },
  2090. {
  2091. "__type__": "cc.UITransform",
  2092. "_name": "",
  2093. "_objFlags": 0,
  2094. "node": {
  2095. "__id__": 72
  2096. },
  2097. "_enabled": true,
  2098. "__prefab": {
  2099. "__id__": 74
  2100. },
  2101. "_priority": 0,
  2102. "_contentSize": {
  2103. "__type__": "cc.Size",
  2104. "width": 110,
  2105. "height": 52.4
  2106. },
  2107. "_anchorPoint": {
  2108. "__type__": "cc.Vec2",
  2109. "x": 0.5,
  2110. "y": 0.5
  2111. },
  2112. "_id": "21AliUkm1J5qAVRPCBJAi6"
  2113. },
  2114. {
  2115. "__type__": "cc.CompPrefabInfo",
  2116. "fileId": "c68UOAlNhN171Umca6yVvF"
  2117. },
  2118. {
  2119. "__type__": "cc.Label",
  2120. "_name": "",
  2121. "_objFlags": 0,
  2122. "node": {
  2123. "__id__": 72
  2124. },
  2125. "_enabled": true,
  2126. "__prefab": {
  2127. "__id__": 76
  2128. },
  2129. "_visFlags": 0,
  2130. "_customMaterial": null,
  2131. "_srcBlendFactor": 2,
  2132. "_dstBlendFactor": 4,
  2133. "_color": {
  2134. "__type__": "cc.Color",
  2135. "r": 0,
  2136. "g": 137,
  2137. "b": 228,
  2138. "a": 255
  2139. },
  2140. "_string": "用户协议",
  2141. "_horizontalAlign": 1,
  2142. "_verticalAlign": 1,
  2143. "_actualFontSize": 26,
  2144. "_fontSize": 26,
  2145. "_fontFamily": "Arial",
  2146. "_lineHeight": 40,
  2147. "_overflow": 1,
  2148. "_enableWrapText": true,
  2149. "_font": null,
  2150. "_isSystemFontUsed": true,
  2151. "_isItalic": false,
  2152. "_isBold": false,
  2153. "_isUnderline": false,
  2154. "_underlineHeight": 2,
  2155. "_cacheMode": 0,
  2156. "_id": "59LMzEsKtAmb96tQCbLyZE"
  2157. },
  2158. {
  2159. "__type__": "cc.CompPrefabInfo",
  2160. "fileId": "2frm37uaJHQr0AEEaYyM82"
  2161. },
  2162. {
  2163. "__type__": "cc.LabelOutline",
  2164. "_name": "",
  2165. "_objFlags": 0,
  2166. "node": {
  2167. "__id__": 72
  2168. },
  2169. "_enabled": true,
  2170. "__prefab": null,
  2171. "_color": {
  2172. "__type__": "cc.Color",
  2173. "r": 0,
  2174. "g": 0,
  2175. "b": 0,
  2176. "a": 255
  2177. },
  2178. "_width": 1,
  2179. "_id": "f3iO3Od6dGdpoZJgcmi/Sy"
  2180. },
  2181. {
  2182. "__type__": "cc.Button",
  2183. "_name": "",
  2184. "_objFlags": 0,
  2185. "node": {
  2186. "__id__": 72
  2187. },
  2188. "_enabled": true,
  2189. "__prefab": null,
  2190. "clickEvents": [
  2191. {
  2192. "__id__": 79
  2193. }
  2194. ],
  2195. "_interactable": true,
  2196. "_transition": 0,
  2197. "_normalColor": {
  2198. "__type__": "cc.Color",
  2199. "r": 255,
  2200. "g": 255,
  2201. "b": 255,
  2202. "a": 255
  2203. },
  2204. "_hoverColor": {
  2205. "__type__": "cc.Color",
  2206. "r": 211,
  2207. "g": 211,
  2208. "b": 211,
  2209. "a": 255
  2210. },
  2211. "_pressedColor": {
  2212. "__type__": "cc.Color",
  2213. "r": 255,
  2214. "g": 255,
  2215. "b": 255,
  2216. "a": 255
  2217. },
  2218. "_disabledColor": {
  2219. "__type__": "cc.Color",
  2220. "r": 124,
  2221. "g": 124,
  2222. "b": 124,
  2223. "a": 255
  2224. },
  2225. "_normalSprite": null,
  2226. "_hoverSprite": null,
  2227. "_pressedSprite": null,
  2228. "_disabledSprite": null,
  2229. "_duration": 0.1,
  2230. "_zoomScale": 1.2,
  2231. "_target": null,
  2232. "_id": "50xNxNKLpHI7LfTMukIYJk"
  2233. },
  2234. {
  2235. "__type__": "cc.ClickEvent",
  2236. "target": {
  2237. "__id__": 14
  2238. },
  2239. "component": "",
  2240. "_componentId": "e842f40A2xPW4//xDEY1DFD",
  2241. "handler": "onXieyi",
  2242. "customEventData": "1"
  2243. },
  2244. {
  2245. "__type__": "cc.Node",
  2246. "_name": "Label-002",
  2247. "_objFlags": 0,
  2248. "_parent": {
  2249. "__id__": 53
  2250. },
  2251. "_children": [],
  2252. "_active": true,
  2253. "_components": [
  2254. {
  2255. "__id__": 81
  2256. },
  2257. {
  2258. "__id__": 83
  2259. },
  2260. {
  2261. "__id__": 85
  2262. }
  2263. ],
  2264. "_prefab": null,
  2265. "_lpos": {
  2266. "__type__": "cc.Vec3",
  2267. "x": 109,
  2268. "y": 0,
  2269. "z": 0
  2270. },
  2271. "_lrot": {
  2272. "__type__": "cc.Quat",
  2273. "x": 0,
  2274. "y": 0,
  2275. "z": 0,
  2276. "w": 1
  2277. },
  2278. "_lscale": {
  2279. "__type__": "cc.Vec3",
  2280. "x": 1,
  2281. "y": 1,
  2282. "z": 1
  2283. },
  2284. "_layer": 33554432,
  2285. "_euler": {
  2286. "__type__": "cc.Vec3",
  2287. "x": 0,
  2288. "y": 0,
  2289. "z": 0
  2290. },
  2291. "_id": "b405aaE6hG67hAxANs5wbK"
  2292. },
  2293. {
  2294. "__type__": "cc.UITransform",
  2295. "_name": "",
  2296. "_objFlags": 0,
  2297. "node": {
  2298. "__id__": 80
  2299. },
  2300. "_enabled": true,
  2301. "__prefab": {
  2302. "__id__": 82
  2303. },
  2304. "_priority": 0,
  2305. "_contentSize": {
  2306. "__type__": "cc.Size",
  2307. "width": 28,
  2308. "height": 52.4
  2309. },
  2310. "_anchorPoint": {
  2311. "__type__": "cc.Vec2",
  2312. "x": 0.5,
  2313. "y": 0.5
  2314. },
  2315. "_id": "1a+Tu7yvJK0ptVHxtbeylm"
  2316. },
  2317. {
  2318. "__type__": "cc.CompPrefabInfo",
  2319. "fileId": "c68UOAlNhN171Umca6yVvF"
  2320. },
  2321. {
  2322. "__type__": "cc.Label",
  2323. "_name": "",
  2324. "_objFlags": 0,
  2325. "node": {
  2326. "__id__": 80
  2327. },
  2328. "_enabled": true,
  2329. "__prefab": {
  2330. "__id__": 84
  2331. },
  2332. "_visFlags": 0,
  2333. "_customMaterial": null,
  2334. "_srcBlendFactor": 2,
  2335. "_dstBlendFactor": 4,
  2336. "_color": {
  2337. "__type__": "cc.Color",
  2338. "r": 255,
  2339. "g": 255,
  2340. "b": 255,
  2341. "a": 255
  2342. },
  2343. "_string": "和",
  2344. "_horizontalAlign": 1,
  2345. "_verticalAlign": 1,
  2346. "_actualFontSize": 26,
  2347. "_fontSize": 26,
  2348. "_fontFamily": "Arial",
  2349. "_lineHeight": 40,
  2350. "_overflow": 1,
  2351. "_enableWrapText": true,
  2352. "_font": null,
  2353. "_isSystemFontUsed": true,
  2354. "_isItalic": false,
  2355. "_isBold": false,
  2356. "_isUnderline": false,
  2357. "_underlineHeight": 2,
  2358. "_cacheMode": 0,
  2359. "_id": "69PtnrqO9JRIy638pbmR76"
  2360. },
  2361. {
  2362. "__type__": "cc.CompPrefabInfo",
  2363. "fileId": "2frm37uaJHQr0AEEaYyM82"
  2364. },
  2365. {
  2366. "__type__": "cc.LabelOutline",
  2367. "_name": "",
  2368. "_objFlags": 0,
  2369. "node": {
  2370. "__id__": 80
  2371. },
  2372. "_enabled": true,
  2373. "__prefab": null,
  2374. "_color": {
  2375. "__type__": "cc.Color",
  2376. "r": 0,
  2377. "g": 0,
  2378. "b": 0,
  2379. "a": 255
  2380. },
  2381. "_width": 1,
  2382. "_id": "15BEGorpxJ9ryF13xvX4m6"
  2383. },
  2384. {
  2385. "__type__": "cc.Node",
  2386. "_name": "Label-003",
  2387. "_objFlags": 0,
  2388. "_parent": {
  2389. "__id__": 53
  2390. },
  2391. "_children": [],
  2392. "_active": true,
  2393. "_components": [
  2394. {
  2395. "__id__": 87
  2396. },
  2397. {
  2398. "__id__": 89
  2399. },
  2400. {
  2401. "__id__": 91
  2402. },
  2403. {
  2404. "__id__": 92
  2405. }
  2406. ],
  2407. "_prefab": null,
  2408. "_lpos": {
  2409. "__type__": "cc.Vec3",
  2410. "x": 203,
  2411. "y": 0,
  2412. "z": 0
  2413. },
  2414. "_lrot": {
  2415. "__type__": "cc.Quat",
  2416. "x": 0,
  2417. "y": 0,
  2418. "z": 0,
  2419. "w": 1
  2420. },
  2421. "_lscale": {
  2422. "__type__": "cc.Vec3",
  2423. "x": 1,
  2424. "y": 1,
  2425. "z": 1
  2426. },
  2427. "_layer": 33554432,
  2428. "_euler": {
  2429. "__type__": "cc.Vec3",
  2430. "x": 0,
  2431. "y": 0,
  2432. "z": 0
  2433. },
  2434. "_id": "c1GIkVU9hOGb+kC1FhAjlE"
  2435. },
  2436. {
  2437. "__type__": "cc.UITransform",
  2438. "_name": "",
  2439. "_objFlags": 0,
  2440. "node": {
  2441. "__id__": 86
  2442. },
  2443. "_enabled": true,
  2444. "__prefab": {
  2445. "__id__": 88
  2446. },
  2447. "_priority": 0,
  2448. "_contentSize": {
  2449. "__type__": "cc.Size",
  2450. "width": 160,
  2451. "height": 52.4
  2452. },
  2453. "_anchorPoint": {
  2454. "__type__": "cc.Vec2",
  2455. "x": 0.5,
  2456. "y": 0.5
  2457. },
  2458. "_id": "e678ivJ55A07e5I5snGzgF"
  2459. },
  2460. {
  2461. "__type__": "cc.CompPrefabInfo",
  2462. "fileId": "c68UOAlNhN171Umca6yVvF"
  2463. },
  2464. {
  2465. "__type__": "cc.Label",
  2466. "_name": "",
  2467. "_objFlags": 0,
  2468. "node": {
  2469. "__id__": 86
  2470. },
  2471. "_enabled": true,
  2472. "__prefab": {
  2473. "__id__": 90
  2474. },
  2475. "_visFlags": 0,
  2476. "_customMaterial": null,
  2477. "_srcBlendFactor": 2,
  2478. "_dstBlendFactor": 4,
  2479. "_color": {
  2480. "__type__": "cc.Color",
  2481. "r": 0,
  2482. "g": 137,
  2483. "b": 228,
  2484. "a": 255
  2485. },
  2486. "_string": "隐私保护政策",
  2487. "_horizontalAlign": 1,
  2488. "_verticalAlign": 1,
  2489. "_actualFontSize": 26,
  2490. "_fontSize": 26,
  2491. "_fontFamily": "Arial",
  2492. "_lineHeight": 40,
  2493. "_overflow": 1,
  2494. "_enableWrapText": true,
  2495. "_font": null,
  2496. "_isSystemFontUsed": true,
  2497. "_isItalic": false,
  2498. "_isBold": false,
  2499. "_isUnderline": false,
  2500. "_underlineHeight": 2,
  2501. "_cacheMode": 0,
  2502. "_id": "eekgz0rQBAGLVNK+rS6aT+"
  2503. },
  2504. {
  2505. "__type__": "cc.CompPrefabInfo",
  2506. "fileId": "2frm37uaJHQr0AEEaYyM82"
  2507. },
  2508. {
  2509. "__type__": "cc.LabelOutline",
  2510. "_name": "",
  2511. "_objFlags": 0,
  2512. "node": {
  2513. "__id__": 86
  2514. },
  2515. "_enabled": true,
  2516. "__prefab": null,
  2517. "_color": {
  2518. "__type__": "cc.Color",
  2519. "r": 0,
  2520. "g": 0,
  2521. "b": 0,
  2522. "a": 255
  2523. },
  2524. "_width": 1,
  2525. "_id": "c5CgEgBztOh75zZysDx33J"
  2526. },
  2527. {
  2528. "__type__": "cc.Button",
  2529. "_name": "",
  2530. "_objFlags": 0,
  2531. "node": {
  2532. "__id__": 86
  2533. },
  2534. "_enabled": true,
  2535. "__prefab": null,
  2536. "clickEvents": [
  2537. {
  2538. "__id__": 93
  2539. }
  2540. ],
  2541. "_interactable": true,
  2542. "_transition": 0,
  2543. "_normalColor": {
  2544. "__type__": "cc.Color",
  2545. "r": 255,
  2546. "g": 255,
  2547. "b": 255,
  2548. "a": 255
  2549. },
  2550. "_hoverColor": {
  2551. "__type__": "cc.Color",
  2552. "r": 211,
  2553. "g": 211,
  2554. "b": 211,
  2555. "a": 255
  2556. },
  2557. "_pressedColor": {
  2558. "__type__": "cc.Color",
  2559. "r": 255,
  2560. "g": 255,
  2561. "b": 255,
  2562. "a": 255
  2563. },
  2564. "_disabledColor": {
  2565. "__type__": "cc.Color",
  2566. "r": 124,
  2567. "g": 124,
  2568. "b": 124,
  2569. "a": 255
  2570. },
  2571. "_normalSprite": null,
  2572. "_hoverSprite": null,
  2573. "_pressedSprite": null,
  2574. "_disabledSprite": null,
  2575. "_duration": 0.1,
  2576. "_zoomScale": 1.2,
  2577. "_target": null,
  2578. "_id": "b2zw7g6f9Lpr52RLwPPuC3"
  2579. },
  2580. {
  2581. "__type__": "cc.ClickEvent",
  2582. "target": {
  2583. "__id__": 14
  2584. },
  2585. "component": "",
  2586. "_componentId": "e842f40A2xPW4//xDEY1DFD",
  2587. "handler": "onXieyi",
  2588. "customEventData": "2"
  2589. },
  2590. {
  2591. "__type__": "cc.UITransform",
  2592. "_name": "",
  2593. "_objFlags": 0,
  2594. "node": {
  2595. "__id__": 53
  2596. },
  2597. "_enabled": true,
  2598. "__prefab": null,
  2599. "_priority": 0,
  2600. "_contentSize": {
  2601. "__type__": "cc.Size",
  2602. "width": 566,
  2603. "height": 100
  2604. },
  2605. "_anchorPoint": {
  2606. "__type__": "cc.Vec2",
  2607. "x": 0.5,
  2608. "y": 0.5
  2609. },
  2610. "_id": "c53T+LJQBFSI0tEhv6On6O"
  2611. },
  2612. {
  2613. "__type__": "cc.Layout",
  2614. "_name": "",
  2615. "_objFlags": 0,
  2616. "node": {
  2617. "__id__": 53
  2618. },
  2619. "_enabled": true,
  2620. "__prefab": null,
  2621. "_resizeMode": 1,
  2622. "_layoutType": 1,
  2623. "_cellSize": {
  2624. "__type__": "cc.Size",
  2625. "width": 40,
  2626. "height": 40
  2627. },
  2628. "_startAxis": 0,
  2629. "_paddingLeft": 0,
  2630. "_paddingRight": 0,
  2631. "_paddingTop": 0,
  2632. "_paddingBottom": 0,
  2633. "_spacingX": 0,
  2634. "_spacingY": 0,
  2635. "_verticalDirection": 1,
  2636. "_horizontalDirection": 0,
  2637. "_constraint": 0,
  2638. "_constraintNum": 2,
  2639. "_affectedByScale": false,
  2640. "_isAlign": true,
  2641. "_id": "11SWlPTmNJWoTTlUuWxK7j"
  2642. },
  2643. {
  2644. "__type__": "cc.Widget",
  2645. "_name": "",
  2646. "_objFlags": 0,
  2647. "node": {
  2648. "__id__": 53
  2649. },
  2650. "_enabled": true,
  2651. "__prefab": null,
  2652. "_alignFlags": 20,
  2653. "_target": null,
  2654. "_left": 0,
  2655. "_right": 0,
  2656. "_top": 0,
  2657. "_bottom": 0,
  2658. "_horizontalCenter": 0,
  2659. "_verticalCenter": 0,
  2660. "_isAbsLeft": true,
  2661. "_isAbsRight": true,
  2662. "_isAbsTop": true,
  2663. "_isAbsBottom": true,
  2664. "_isAbsHorizontalCenter": true,
  2665. "_isAbsVerticalCenter": true,
  2666. "_originalWidth": 0,
  2667. "_originalHeight": 0,
  2668. "_alignMode": 2,
  2669. "_lockFlags": 0,
  2670. "_id": "922TGp8nhPSItrCyPCDrHI"
  2671. },
  2672. {
  2673. "__type__": "cc.UITransform",
  2674. "_name": "",
  2675. "_objFlags": 0,
  2676. "node": {
  2677. "__id__": 18
  2678. },
  2679. "_enabled": true,
  2680. "__prefab": null,
  2681. "_priority": 0,
  2682. "_contentSize": {
  2683. "__type__": "cc.Size",
  2684. "width": 750,
  2685. "height": 1334
  2686. },
  2687. "_anchorPoint": {
  2688. "__type__": "cc.Vec2",
  2689. "x": 0.5,
  2690. "y": 0.5
  2691. },
  2692. "_id": "daNL0NVDFBR5S5OcJNTEpQ"
  2693. },
  2694. {
  2695. "__type__": "cc.Widget",
  2696. "_name": "",
  2697. "_objFlags": 0,
  2698. "node": {
  2699. "__id__": 18
  2700. },
  2701. "_enabled": true,
  2702. "__prefab": null,
  2703. "_alignFlags": 45,
  2704. "_target": null,
  2705. "_left": 0,
  2706. "_right": 0,
  2707. "_top": 0,
  2708. "_bottom": 0,
  2709. "_horizontalCenter": 0,
  2710. "_verticalCenter": 0,
  2711. "_isAbsLeft": true,
  2712. "_isAbsRight": true,
  2713. "_isAbsTop": true,
  2714. "_isAbsBottom": true,
  2715. "_isAbsHorizontalCenter": true,
  2716. "_isAbsVerticalCenter": true,
  2717. "_originalWidth": 100,
  2718. "_originalHeight": 100,
  2719. "_alignMode": 2,
  2720. "_lockFlags": 0,
  2721. "_id": "e8frhweVtNdaFtDpLtVN9j"
  2722. },
  2723. {
  2724. "__type__": "cc.Node",
  2725. "_name": "launchProgress",
  2726. "_objFlags": 0,
  2727. "_parent": {
  2728. "__id__": 17
  2729. },
  2730. "_children": [],
  2731. "_active": true,
  2732. "_components": [
  2733. {
  2734. "__id__": 100
  2735. },
  2736. {
  2737. "__id__": 101
  2738. }
  2739. ],
  2740. "_prefab": null,
  2741. "_lpos": {
  2742. "__type__": "cc.Vec3",
  2743. "x": -280,
  2744. "y": 2.979,
  2745. "z": 0
  2746. },
  2747. "_lrot": {
  2748. "__type__": "cc.Quat",
  2749. "x": 0,
  2750. "y": 0,
  2751. "z": 0,
  2752. "w": 1
  2753. },
  2754. "_lscale": {
  2755. "__type__": "cc.Vec3",
  2756. "x": 1,
  2757. "y": 1,
  2758. "z": 1
  2759. },
  2760. "_layer": 1073741824,
  2761. "_euler": {
  2762. "__type__": "cc.Vec3",
  2763. "x": 0,
  2764. "y": 0,
  2765. "z": 0
  2766. },
  2767. "_id": "67mAYscIJDYI1wyqqKHRVx"
  2768. },
  2769. {
  2770. "__type__": "cc.UITransform",
  2771. "_name": "",
  2772. "_objFlags": 0,
  2773. "node": {
  2774. "__id__": 99
  2775. },
  2776. "_enabled": true,
  2777. "__prefab": null,
  2778. "_priority": 0,
  2779. "_contentSize": {
  2780. "__type__": "cc.Size",
  2781. "width": 560,
  2782. "height": 39
  2783. },
  2784. "_anchorPoint": {
  2785. "__type__": "cc.Vec2",
  2786. "x": 0,
  2787. "y": 0.5
  2788. },
  2789. "_id": "ae8r4adktA2JLER0ZnaY2z"
  2790. },
  2791. {
  2792. "__type__": "cc.Sprite",
  2793. "_name": "",
  2794. "_objFlags": 0,
  2795. "node": {
  2796. "__id__": 99
  2797. },
  2798. "_enabled": true,
  2799. "__prefab": null,
  2800. "_visFlags": 0,
  2801. "_customMaterial": null,
  2802. "_srcBlendFactor": 2,
  2803. "_dstBlendFactor": 4,
  2804. "_color": {
  2805. "__type__": "cc.Color",
  2806. "r": 255,
  2807. "g": 255,
  2808. "b": 255,
  2809. "a": 255
  2810. },
  2811. "_spriteFrame": {
  2812. "__uuid__": "39234ff2-8979-48ff-8130-39414b39dae7@f9941"
  2813. },
  2814. "_type": 3,
  2815. "_fillType": 0,
  2816. "_sizeMode": 0,
  2817. "_fillCenter": {
  2818. "__type__": "cc.Vec2",
  2819. "x": 0,
  2820. "y": 0
  2821. },
  2822. "_fillStart": 0,
  2823. "_fillRange": 0,
  2824. "_isTrimmedMode": true,
  2825. "_useGrayscale": false,
  2826. "_atlas": null,
  2827. "_id": "d0VmzE359IsbmPQYEvy6JX"
  2828. },
  2829. {
  2830. "__type__": "cc.Node",
  2831. "_name": "loading",
  2832. "_objFlags": 0,
  2833. "_parent": {
  2834. "__id__": 17
  2835. },
  2836. "_children": [
  2837. {
  2838. "__id__": 103
  2839. },
  2840. {
  2841. "__id__": 106
  2842. },
  2843. {
  2844. "__id__": 109
  2845. },
  2846. {
  2847. "__id__": 112
  2848. },
  2849. {
  2850. "__id__": 115
  2851. },
  2852. {
  2853. "__id__": 118
  2854. },
  2855. {
  2856. "__id__": 121
  2857. },
  2858. {
  2859. "__id__": 124
  2860. },
  2861. {
  2862. "__id__": 127
  2863. },
  2864. {
  2865. "__id__": 130
  2866. }
  2867. ],
  2868. "_active": true,
  2869. "_components": [
  2870. {
  2871. "__id__": 133
  2872. },
  2873. {
  2874. "__id__": 134
  2875. },
  2876. {
  2877. "__id__": 135
  2878. },
  2879. {
  2880. "__id__": 136
  2881. }
  2882. ],
  2883. "_prefab": null,
  2884. "_lpos": {
  2885. "__type__": "cc.Vec3",
  2886. "x": 0,
  2887. "y": 62.5,
  2888. "z": 0
  2889. },
  2890. "_lrot": {
  2891. "__type__": "cc.Quat",
  2892. "x": 0,
  2893. "y": 0,
  2894. "z": 0,
  2895. "w": 1
  2896. },
  2897. "_lscale": {
  2898. "__type__": "cc.Vec3",
  2899. "x": 1,
  2900. "y": 1,
  2901. "z": 1
  2902. },
  2903. "_layer": 1073741824,
  2904. "_euler": {
  2905. "__type__": "cc.Vec3",
  2906. "x": 0,
  2907. "y": 0,
  2908. "z": 0
  2909. },
  2910. "_id": "7c42yxN4FJupSRc2np57or"
  2911. },
  2912. {
  2913. "__type__": "cc.Node",
  2914. "_name": "loading_1",
  2915. "_objFlags": 0,
  2916. "_parent": {
  2917. "__id__": 102
  2918. },
  2919. "_children": [],
  2920. "_active": true,
  2921. "_components": [
  2922. {
  2923. "__id__": 104
  2924. },
  2925. {
  2926. "__id__": 105
  2927. }
  2928. ],
  2929. "_prefab": null,
  2930. "_lpos": {
  2931. "__type__": "cc.Vec3",
  2932. "x": -106.782,
  2933. "y": 0,
  2934. "z": 0
  2935. },
  2936. "_lrot": {
  2937. "__type__": "cc.Quat",
  2938. "x": 0,
  2939. "y": 0,
  2940. "z": 0,
  2941. "w": 1
  2942. },
  2943. "_lscale": {
  2944. "__type__": "cc.Vec3",
  2945. "x": 1,
  2946. "y": 1,
  2947. "z": 1
  2948. },
  2949. "_layer": 1073741824,
  2950. "_euler": {
  2951. "__type__": "cc.Vec3",
  2952. "x": 0,
  2953. "y": 0,
  2954. "z": 0
  2955. },
  2956. "_id": "6fZDIvIy5Or7akeZCrr2cP"
  2957. },
  2958. {
  2959. "__type__": "cc.UITransform",
  2960. "_name": "",
  2961. "_objFlags": 0,
  2962. "node": {
  2963. "__id__": 103
  2964. },
  2965. "_enabled": true,
  2966. "__prefab": null,
  2967. "_priority": 0,
  2968. "_contentSize": {
  2969. "__type__": "cc.Size",
  2970. "width": 29,
  2971. "height": 48
  2972. },
  2973. "_anchorPoint": {
  2974. "__type__": "cc.Vec2",
  2975. "x": 0.5,
  2976. "y": 0
  2977. },
  2978. "_id": "ffGqHivK5OBpVA61yXUUVf"
  2979. },
  2980. {
  2981. "__type__": "cc.Sprite",
  2982. "_name": "",
  2983. "_objFlags": 0,
  2984. "node": {
  2985. "__id__": 103
  2986. },
  2987. "_enabled": true,
  2988. "__prefab": null,
  2989. "_visFlags": 0,
  2990. "_customMaterial": null,
  2991. "_srcBlendFactor": 2,
  2992. "_dstBlendFactor": 4,
  2993. "_color": {
  2994. "__type__": "cc.Color",
  2995. "r": 255,
  2996. "g": 255,
  2997. "b": 255,
  2998. "a": 255
  2999. },
  3000. "_spriteFrame": {
  3001. "__uuid__": "f88e3b7b-96cc-4d0c-a08f-33418e4a957e@f9941"
  3002. },
  3003. "_type": 0,
  3004. "_fillType": 0,
  3005. "_sizeMode": 1,
  3006. "_fillCenter": {
  3007. "__type__": "cc.Vec2",
  3008. "x": 0,
  3009. "y": 0
  3010. },
  3011. "_fillStart": 0,
  3012. "_fillRange": 0,
  3013. "_isTrimmedMode": true,
  3014. "_useGrayscale": false,
  3015. "_atlas": null,
  3016. "_id": "62i3hF1pFNup45xeuwaezV"
  3017. },
  3018. {
  3019. "__type__": "cc.Node",
  3020. "_name": "loading_2",
  3021. "_objFlags": 0,
  3022. "_parent": {
  3023. "__id__": 102
  3024. },
  3025. "_children": [],
  3026. "_active": true,
  3027. "_components": [
  3028. {
  3029. "__id__": 107
  3030. },
  3031. {
  3032. "__id__": 108
  3033. }
  3034. ],
  3035. "_prefab": null,
  3036. "_lpos": {
  3037. "__type__": "cc.Vec3",
  3038. "x": -78.282,
  3039. "y": 0,
  3040. "z": 0
  3041. },
  3042. "_lrot": {
  3043. "__type__": "cc.Quat",
  3044. "x": 0,
  3045. "y": 0,
  3046. "z": 0,
  3047. "w": 1
  3048. },
  3049. "_lscale": {
  3050. "__type__": "cc.Vec3",
  3051. "x": 1,
  3052. "y": 1,
  3053. "z": 1
  3054. },
  3055. "_layer": 1073741824,
  3056. "_euler": {
  3057. "__type__": "cc.Vec3",
  3058. "x": 0,
  3059. "y": 0,
  3060. "z": 0
  3061. },
  3062. "_id": "9eZUn0AKhHSLX3yJbSCo/I"
  3063. },
  3064. {
  3065. "__type__": "cc.UITransform",
  3066. "_name": "",
  3067. "_objFlags": 0,
  3068. "node": {
  3069. "__id__": 106
  3070. },
  3071. "_enabled": true,
  3072. "__prefab": null,
  3073. "_priority": 0,
  3074. "_contentSize": {
  3075. "__type__": "cc.Size",
  3076. "width": 28,
  3077. "height": 39
  3078. },
  3079. "_anchorPoint": {
  3080. "__type__": "cc.Vec2",
  3081. "x": 0.5,
  3082. "y": 0
  3083. },
  3084. "_id": "3dcon/4RBE8oAmxA/u+mUf"
  3085. },
  3086. {
  3087. "__type__": "cc.Sprite",
  3088. "_name": "",
  3089. "_objFlags": 0,
  3090. "node": {
  3091. "__id__": 106
  3092. },
  3093. "_enabled": true,
  3094. "__prefab": null,
  3095. "_visFlags": 0,
  3096. "_customMaterial": null,
  3097. "_srcBlendFactor": 2,
  3098. "_dstBlendFactor": 4,
  3099. "_color": {
  3100. "__type__": "cc.Color",
  3101. "r": 255,
  3102. "g": 255,
  3103. "b": 255,
  3104. "a": 255
  3105. },
  3106. "_spriteFrame": {
  3107. "__uuid__": "23d78c7d-f9b2-4628-b4a7-b03f683e2b6e@f9941"
  3108. },
  3109. "_type": 0,
  3110. "_fillType": 0,
  3111. "_sizeMode": 1,
  3112. "_fillCenter": {
  3113. "__type__": "cc.Vec2",
  3114. "x": 0,
  3115. "y": 0
  3116. },
  3117. "_fillStart": 0,
  3118. "_fillRange": 0,
  3119. "_isTrimmedMode": true,
  3120. "_useGrayscale": false,
  3121. "_atlas": null,
  3122. "_id": "6bK4s5TYZKH7u6E0pClepD"
  3123. },
  3124. {
  3125. "__type__": "cc.Node",
  3126. "_name": "loading_3",
  3127. "_objFlags": 0,
  3128. "_parent": {
  3129. "__id__": 102
  3130. },
  3131. "_children": [],
  3132. "_active": true,
  3133. "_components": [
  3134. {
  3135. "__id__": 110
  3136. },
  3137. {
  3138. "__id__": 111
  3139. }
  3140. ],
  3141. "_prefab": null,
  3142. "_lpos": {
  3143. "__type__": "cc.Vec3",
  3144. "x": -49.282,
  3145. "y": 0,
  3146. "z": 0
  3147. },
  3148. "_lrot": {
  3149. "__type__": "cc.Quat",
  3150. "x": 0,
  3151. "y": 0,
  3152. "z": 0,
  3153. "w": 1
  3154. },
  3155. "_lscale": {
  3156. "__type__": "cc.Vec3",
  3157. "x": 1,
  3158. "y": 1,
  3159. "z": 1
  3160. },
  3161. "_layer": 1073741824,
  3162. "_euler": {
  3163. "__type__": "cc.Vec3",
  3164. "x": 0,
  3165. "y": 0,
  3166. "z": 0
  3167. },
  3168. "_id": "74h6k8uFhAqLEsSxaMmDxH"
  3169. },
  3170. {
  3171. "__type__": "cc.UITransform",
  3172. "_name": "",
  3173. "_objFlags": 0,
  3174. "node": {
  3175. "__id__": 109
  3176. },
  3177. "_enabled": true,
  3178. "__prefab": null,
  3179. "_priority": 0,
  3180. "_contentSize": {
  3181. "__type__": "cc.Size",
  3182. "width": 30,
  3183. "height": 37
  3184. },
  3185. "_anchorPoint": {
  3186. "__type__": "cc.Vec2",
  3187. "x": 0.5,
  3188. "y": 0
  3189. },
  3190. "_id": "cfAF38OlJEZa5EpTu1NJXl"
  3191. },
  3192. {
  3193. "__type__": "cc.Sprite",
  3194. "_name": "",
  3195. "_objFlags": 0,
  3196. "node": {
  3197. "__id__": 109
  3198. },
  3199. "_enabled": true,
  3200. "__prefab": null,
  3201. "_visFlags": 0,
  3202. "_customMaterial": null,
  3203. "_srcBlendFactor": 2,
  3204. "_dstBlendFactor": 4,
  3205. "_color": {
  3206. "__type__": "cc.Color",
  3207. "r": 255,
  3208. "g": 255,
  3209. "b": 255,
  3210. "a": 255
  3211. },
  3212. "_spriteFrame": {
  3213. "__uuid__": "8d4dec1d-2e0b-446f-85ef-1d0750234d12@f9941"
  3214. },
  3215. "_type": 0,
  3216. "_fillType": 0,
  3217. "_sizeMode": 1,
  3218. "_fillCenter": {
  3219. "__type__": "cc.Vec2",
  3220. "x": 0,
  3221. "y": 0
  3222. },
  3223. "_fillStart": 0,
  3224. "_fillRange": 0,
  3225. "_isTrimmedMode": true,
  3226. "_useGrayscale": false,
  3227. "_atlas": null,
  3228. "_id": "9aH8u+UtZPW5D/yfsUOE6p"
  3229. },
  3230. {
  3231. "__type__": "cc.Node",
  3232. "_name": "loading_4",
  3233. "_objFlags": 0,
  3234. "_parent": {
  3235. "__id__": 102
  3236. },
  3237. "_children": [],
  3238. "_active": true,
  3239. "_components": [
  3240. {
  3241. "__id__": 113
  3242. },
  3243. {
  3244. "__id__": 114
  3245. }
  3246. ],
  3247. "_prefab": null,
  3248. "_lpos": {
  3249. "__type__": "cc.Vec3",
  3250. "x": -18.781999999999996,
  3251. "y": 0,
  3252. "z": 0
  3253. },
  3254. "_lrot": {
  3255. "__type__": "cc.Quat",
  3256. "x": 0,
  3257. "y": 0,
  3258. "z": 0,
  3259. "w": 1
  3260. },
  3261. "_lscale": {
  3262. "__type__": "cc.Vec3",
  3263. "x": 1,
  3264. "y": 1,
  3265. "z": 1
  3266. },
  3267. "_layer": 1073741824,
  3268. "_euler": {
  3269. "__type__": "cc.Vec3",
  3270. "x": 0,
  3271. "y": 0,
  3272. "z": 0
  3273. },
  3274. "_id": "586vBNmsRL17d/cBJOq8vC"
  3275. },
  3276. {
  3277. "__type__": "cc.UITransform",
  3278. "_name": "",
  3279. "_objFlags": 0,
  3280. "node": {
  3281. "__id__": 112
  3282. },
  3283. "_enabled": true,
  3284. "__prefab": null,
  3285. "_priority": 0,
  3286. "_contentSize": {
  3287. "__type__": "cc.Size",
  3288. "width": 31,
  3289. "height": 49
  3290. },
  3291. "_anchorPoint": {
  3292. "__type__": "cc.Vec2",
  3293. "x": 0.5,
  3294. "y": 0
  3295. },
  3296. "_id": "42AILZSqBNpKkj6/bm/XVZ"
  3297. },
  3298. {
  3299. "__type__": "cc.Sprite",
  3300. "_name": "",
  3301. "_objFlags": 0,
  3302. "node": {
  3303. "__id__": 112
  3304. },
  3305. "_enabled": true,
  3306. "__prefab": null,
  3307. "_visFlags": 0,
  3308. "_customMaterial": null,
  3309. "_srcBlendFactor": 2,
  3310. "_dstBlendFactor": 4,
  3311. "_color": {
  3312. "__type__": "cc.Color",
  3313. "r": 255,
  3314. "g": 255,
  3315. "b": 255,
  3316. "a": 255
  3317. },
  3318. "_spriteFrame": {
  3319. "__uuid__": "7fdfffe0-ac7d-4d36-8dfe-9b954f8793b1@f9941"
  3320. },
  3321. "_type": 0,
  3322. "_fillType": 0,
  3323. "_sizeMode": 1,
  3324. "_fillCenter": {
  3325. "__type__": "cc.Vec2",
  3326. "x": 0,
  3327. "y": 0
  3328. },
  3329. "_fillStart": 0,
  3330. "_fillRange": 0,
  3331. "_isTrimmedMode": true,
  3332. "_useGrayscale": false,
  3333. "_atlas": null,
  3334. "_id": "e2GJZWkLhB9rjRSgdMDpa/"
  3335. },
  3336. {
  3337. "__type__": "cc.Node",
  3338. "_name": "loading_5",
  3339. "_objFlags": 0,
  3340. "_parent": {
  3341. "__id__": 102
  3342. },
  3343. "_children": [],
  3344. "_active": true,
  3345. "_components": [
  3346. {
  3347. "__id__": 116
  3348. },
  3349. {
  3350. "__id__": 117
  3351. }
  3352. ],
  3353. "_prefab": null,
  3354. "_lpos": {
  3355. "__type__": "cc.Vec3",
  3356. "x": 4.2180000000000035,
  3357. "y": 0,
  3358. "z": 0
  3359. },
  3360. "_lrot": {
  3361. "__type__": "cc.Quat",
  3362. "x": 0,
  3363. "y": 0,
  3364. "z": 0,
  3365. "w": 1
  3366. },
  3367. "_lscale": {
  3368. "__type__": "cc.Vec3",
  3369. "x": 1,
  3370. "y": 1,
  3371. "z": 1
  3372. },
  3373. "_layer": 1073741824,
  3374. "_euler": {
  3375. "__type__": "cc.Vec3",
  3376. "x": 0,
  3377. "y": 0,
  3378. "z": 0
  3379. },
  3380. "_id": "4bJIZsTB5IyLtFiRY/NPBZ"
  3381. },
  3382. {
  3383. "__type__": "cc.UITransform",
  3384. "_name": "",
  3385. "_objFlags": 0,
  3386. "node": {
  3387. "__id__": 115
  3388. },
  3389. "_enabled": true,
  3390. "__prefab": null,
  3391. "_priority": 0,
  3392. "_contentSize": {
  3393. "__type__": "cc.Size",
  3394. "width": 15,
  3395. "height": 48
  3396. },
  3397. "_anchorPoint": {
  3398. "__type__": "cc.Vec2",
  3399. "x": 0.5,
  3400. "y": 0
  3401. },
  3402. "_id": "9dW8VNBE1MS6njcqS9D7XJ"
  3403. },
  3404. {
  3405. "__type__": "cc.Sprite",
  3406. "_name": "",
  3407. "_objFlags": 0,
  3408. "node": {
  3409. "__id__": 115
  3410. },
  3411. "_enabled": true,
  3412. "__prefab": null,
  3413. "_visFlags": 0,
  3414. "_customMaterial": null,
  3415. "_srcBlendFactor": 2,
  3416. "_dstBlendFactor": 4,
  3417. "_color": {
  3418. "__type__": "cc.Color",
  3419. "r": 255,
  3420. "g": 255,
  3421. "b": 255,
  3422. "a": 255
  3423. },
  3424. "_spriteFrame": {
  3425. "__uuid__": "898311a9-16ca-41a9-8f6e-f37297697d08@f9941"
  3426. },
  3427. "_type": 0,
  3428. "_fillType": 0,
  3429. "_sizeMode": 1,
  3430. "_fillCenter": {
  3431. "__type__": "cc.Vec2",
  3432. "x": 0,
  3433. "y": 0
  3434. },
  3435. "_fillStart": 0,
  3436. "_fillRange": 0,
  3437. "_isTrimmedMode": true,
  3438. "_useGrayscale": false,
  3439. "_atlas": null,
  3440. "_id": "be9lSIQ8BGe4KZa8Stwe8h"
  3441. },
  3442. {
  3443. "__type__": "cc.Node",
  3444. "_name": "loading_6",
  3445. "_objFlags": 0,
  3446. "_parent": {
  3447. "__id__": 102
  3448. },
  3449. "_children": [],
  3450. "_active": true,
  3451. "_components": [
  3452. {
  3453. "__id__": 119
  3454. },
  3455. {
  3456. "__id__": 120
  3457. }
  3458. ],
  3459. "_prefab": null,
  3460. "_lpos": {
  3461. "__type__": "cc.Vec3",
  3462. "x": 25.218000000000004,
  3463. "y": 0,
  3464. "z": 0
  3465. },
  3466. "_lrot": {
  3467. "__type__": "cc.Quat",
  3468. "x": 0,
  3469. "y": 0,
  3470. "z": 0,
  3471. "w": 1
  3472. },
  3473. "_lscale": {
  3474. "__type__": "cc.Vec3",
  3475. "x": 1,
  3476. "y": 1,
  3477. "z": 1
  3478. },
  3479. "_layer": 1073741824,
  3480. "_euler": {
  3481. "__type__": "cc.Vec3",
  3482. "x": 0,
  3483. "y": 0,
  3484. "z": 0
  3485. },
  3486. "_id": "5fvW96Qv5IaZU4xmN6MY0t"
  3487. },
  3488. {
  3489. "__type__": "cc.UITransform",
  3490. "_name": "",
  3491. "_objFlags": 0,
  3492. "node": {
  3493. "__id__": 118
  3494. },
  3495. "_enabled": true,
  3496. "__prefab": null,
  3497. "_priority": 0,
  3498. "_contentSize": {
  3499. "__type__": "cc.Size",
  3500. "width": 27,
  3501. "height": 37
  3502. },
  3503. "_anchorPoint": {
  3504. "__type__": "cc.Vec2",
  3505. "x": 0.5,
  3506. "y": 0
  3507. },
  3508. "_id": "9euevl5GhFZKNp40oVWqne"
  3509. },
  3510. {
  3511. "__type__": "cc.Sprite",
  3512. "_name": "",
  3513. "_objFlags": 0,
  3514. "node": {
  3515. "__id__": 118
  3516. },
  3517. "_enabled": true,
  3518. "__prefab": null,
  3519. "_visFlags": 0,
  3520. "_customMaterial": null,
  3521. "_srcBlendFactor": 2,
  3522. "_dstBlendFactor": 4,
  3523. "_color": {
  3524. "__type__": "cc.Color",
  3525. "r": 255,
  3526. "g": 255,
  3527. "b": 255,
  3528. "a": 255
  3529. },
  3530. "_spriteFrame": {
  3531. "__uuid__": "44b0899b-017e-4a6d-a609-d76164ce53b7@f9941"
  3532. },
  3533. "_type": 0,
  3534. "_fillType": 0,
  3535. "_sizeMode": 1,
  3536. "_fillCenter": {
  3537. "__type__": "cc.Vec2",
  3538. "x": 0,
  3539. "y": 0
  3540. },
  3541. "_fillStart": 0,
  3542. "_fillRange": 0,
  3543. "_isTrimmedMode": true,
  3544. "_useGrayscale": false,
  3545. "_atlas": null,
  3546. "_id": "aefOE0PZxLdbEOJYxqq4FM"
  3547. },
  3548. {
  3549. "__type__": "cc.Node",
  3550. "_name": "loading_7",
  3551. "_objFlags": 0,
  3552. "_parent": {
  3553. "__id__": 102
  3554. },
  3555. "_children": [],
  3556. "_active": true,
  3557. "_components": [
  3558. {
  3559. "__id__": 122
  3560. },
  3561. {
  3562. "__id__": 123
  3563. }
  3564. ],
  3565. "_prefab": null,
  3566. "_lpos": {
  3567. "__type__": "cc.Vec3",
  3568. "x": 54.218,
  3569. "y": 0,
  3570. "z": 0
  3571. },
  3572. "_lrot": {
  3573. "__type__": "cc.Quat",
  3574. "x": 0,
  3575. "y": 0,
  3576. "z": 0,
  3577. "w": 1
  3578. },
  3579. "_lscale": {
  3580. "__type__": "cc.Vec3",
  3581. "x": 1,
  3582. "y": 1,
  3583. "z": 1
  3584. },
  3585. "_layer": 1073741824,
  3586. "_euler": {
  3587. "__type__": "cc.Vec3",
  3588. "x": 0,
  3589. "y": 0,
  3590. "z": 0
  3591. },
  3592. "_id": "2bOJwYEfZJ5YTxo/h+FWl1"
  3593. },
  3594. {
  3595. "__type__": "cc.UITransform",
  3596. "_name": "",
  3597. "_objFlags": 0,
  3598. "node": {
  3599. "__id__": 121
  3600. },
  3601. "_enabled": true,
  3602. "__prefab": null,
  3603. "_priority": 0,
  3604. "_contentSize": {
  3605. "__type__": "cc.Size",
  3606. "width": 31,
  3607. "height": 45
  3608. },
  3609. "_anchorPoint": {
  3610. "__type__": "cc.Vec2",
  3611. "x": 0.5,
  3612. "y": 0
  3613. },
  3614. "_id": "10hBIOLtJMBL995+Dtw6NR"
  3615. },
  3616. {
  3617. "__type__": "cc.Sprite",
  3618. "_name": "",
  3619. "_objFlags": 0,
  3620. "node": {
  3621. "__id__": 121
  3622. },
  3623. "_enabled": true,
  3624. "__prefab": null,
  3625. "_visFlags": 0,
  3626. "_customMaterial": null,
  3627. "_srcBlendFactor": 2,
  3628. "_dstBlendFactor": 4,
  3629. "_color": {
  3630. "__type__": "cc.Color",
  3631. "r": 255,
  3632. "g": 255,
  3633. "b": 255,
  3634. "a": 255
  3635. },
  3636. "_spriteFrame": {
  3637. "__uuid__": "4fe69866-bb4f-4fde-a760-6cd4e314d303@f9941"
  3638. },
  3639. "_type": 0,
  3640. "_fillType": 0,
  3641. "_sizeMode": 1,
  3642. "_fillCenter": {
  3643. "__type__": "cc.Vec2",
  3644. "x": 0,
  3645. "y": 0
  3646. },
  3647. "_fillStart": 0,
  3648. "_fillRange": 0,
  3649. "_isTrimmedMode": true,
  3650. "_useGrayscale": false,
  3651. "_atlas": null,
  3652. "_id": "649kBhoHBLGL7GV5enxcm/"
  3653. },
  3654. {
  3655. "__type__": "cc.Node",
  3656. "_name": "loading_0",
  3657. "_objFlags": 0,
  3658. "_parent": {
  3659. "__id__": 102
  3660. },
  3661. "_children": [],
  3662. "_active": true,
  3663. "_components": [
  3664. {
  3665. "__id__": 125
  3666. },
  3667. {
  3668. "__id__": 126
  3669. }
  3670. ],
  3671. "_prefab": null,
  3672. "_lpos": {
  3673. "__type__": "cc.Vec3",
  3674. "x": 77.218,
  3675. "y": 0,
  3676. "z": 0
  3677. },
  3678. "_lrot": {
  3679. "__type__": "cc.Quat",
  3680. "x": 0,
  3681. "y": 0,
  3682. "z": 0,
  3683. "w": 1
  3684. },
  3685. "_lscale": {
  3686. "__type__": "cc.Vec3",
  3687. "x": 1,
  3688. "y": 1,
  3689. "z": 1
  3690. },
  3691. "_layer": 1073741824,
  3692. "_euler": {
  3693. "__type__": "cc.Vec3",
  3694. "x": 0,
  3695. "y": 0,
  3696. "z": 0
  3697. },
  3698. "_id": "71PKfbBHlDhbWuYswzjsXf"
  3699. },
  3700. {
  3701. "__type__": "cc.UITransform",
  3702. "_name": "",
  3703. "_objFlags": 0,
  3704. "node": {
  3705. "__id__": 124
  3706. },
  3707. "_enabled": true,
  3708. "__prefab": null,
  3709. "_priority": 0,
  3710. "_contentSize": {
  3711. "__type__": "cc.Size",
  3712. "width": 15,
  3713. "height": 17
  3714. },
  3715. "_anchorPoint": {
  3716. "__type__": "cc.Vec2",
  3717. "x": 0.5,
  3718. "y": 0
  3719. },
  3720. "_id": "9cpMWwPmVC4rM6NKBS4Tp1"
  3721. },
  3722. {
  3723. "__type__": "cc.Sprite",
  3724. "_name": "",
  3725. "_objFlags": 0,
  3726. "node": {
  3727. "__id__": 124
  3728. },
  3729. "_enabled": true,
  3730. "__prefab": null,
  3731. "_visFlags": 0,
  3732. "_customMaterial": null,
  3733. "_srcBlendFactor": 2,
  3734. "_dstBlendFactor": 4,
  3735. "_color": {
  3736. "__type__": "cc.Color",
  3737. "r": 255,
  3738. "g": 255,
  3739. "b": 255,
  3740. "a": 255
  3741. },
  3742. "_spriteFrame": {
  3743. "__uuid__": "fcae82f1-ceb7-42e2-b369-23545ba1d89a@f9941"
  3744. },
  3745. "_type": 0,
  3746. "_fillType": 0,
  3747. "_sizeMode": 1,
  3748. "_fillCenter": {
  3749. "__type__": "cc.Vec2",
  3750. "x": 0,
  3751. "y": 0
  3752. },
  3753. "_fillStart": 0,
  3754. "_fillRange": 0,
  3755. "_isTrimmedMode": true,
  3756. "_useGrayscale": false,
  3757. "_atlas": null,
  3758. "_id": "d9xMMNXYBDipJUEG1bu66O"
  3759. },
  3760. {
  3761. "__type__": "cc.Node",
  3762. "_name": "loading_8",
  3763. "_objFlags": 0,
  3764. "_parent": {
  3765. "__id__": 102
  3766. },
  3767. "_children": [],
  3768. "_active": true,
  3769. "_components": [
  3770. {
  3771. "__id__": 128
  3772. },
  3773. {
  3774. "__id__": 129
  3775. }
  3776. ],
  3777. "_prefab": null,
  3778. "_lpos": {
  3779. "__type__": "cc.Vec3",
  3780. "x": 92.218,
  3781. "y": 0,
  3782. "z": 0
  3783. },
  3784. "_lrot": {
  3785. "__type__": "cc.Quat",
  3786. "x": 0,
  3787. "y": 0,
  3788. "z": 0,
  3789. "w": 1
  3790. },
  3791. "_lscale": {
  3792. "__type__": "cc.Vec3",
  3793. "x": 1,
  3794. "y": 1,
  3795. "z": 1
  3796. },
  3797. "_layer": 1073741824,
  3798. "_euler": {
  3799. "__type__": "cc.Vec3",
  3800. "x": 0,
  3801. "y": 0,
  3802. "z": 0
  3803. },
  3804. "_id": "dfCdgTRTpL9bn3wvs3HOlW"
  3805. },
  3806. {
  3807. "__type__": "cc.UITransform",
  3808. "_name": "",
  3809. "_objFlags": 0,
  3810. "node": {
  3811. "__id__": 127
  3812. },
  3813. "_enabled": true,
  3814. "__prefab": null,
  3815. "_priority": 0,
  3816. "_contentSize": {
  3817. "__type__": "cc.Size",
  3818. "width": 15,
  3819. "height": 17
  3820. },
  3821. "_anchorPoint": {
  3822. "__type__": "cc.Vec2",
  3823. "x": 0.5,
  3824. "y": 0
  3825. },
  3826. "_id": "aam+KXO1xPsY2MeE6Kqf4S"
  3827. },
  3828. {
  3829. "__type__": "cc.Sprite",
  3830. "_name": "",
  3831. "_objFlags": 0,
  3832. "node": {
  3833. "__id__": 127
  3834. },
  3835. "_enabled": true,
  3836. "__prefab": null,
  3837. "_visFlags": 0,
  3838. "_customMaterial": null,
  3839. "_srcBlendFactor": 2,
  3840. "_dstBlendFactor": 4,
  3841. "_color": {
  3842. "__type__": "cc.Color",
  3843. "r": 255,
  3844. "g": 255,
  3845. "b": 255,
  3846. "a": 255
  3847. },
  3848. "_spriteFrame": {
  3849. "__uuid__": "fcae82f1-ceb7-42e2-b369-23545ba1d89a@f9941"
  3850. },
  3851. "_type": 0,
  3852. "_fillType": 0,
  3853. "_sizeMode": 1,
  3854. "_fillCenter": {
  3855. "__type__": "cc.Vec2",
  3856. "x": 0,
  3857. "y": 0
  3858. },
  3859. "_fillStart": 0,
  3860. "_fillRange": 0,
  3861. "_isTrimmedMode": true,
  3862. "_useGrayscale": false,
  3863. "_atlas": null,
  3864. "_id": "fc6Y5KuphHia5TepuIOtYB"
  3865. },
  3866. {
  3867. "__type__": "cc.Node",
  3868. "_name": "loading_9",
  3869. "_objFlags": 0,
  3870. "_parent": {
  3871. "__id__": 102
  3872. },
  3873. "_children": [],
  3874. "_active": true,
  3875. "_components": [
  3876. {
  3877. "__id__": 131
  3878. },
  3879. {
  3880. "__id__": 132
  3881. }
  3882. ],
  3883. "_prefab": null,
  3884. "_lpos": {
  3885. "__type__": "cc.Vec3",
  3886. "x": 107.218,
  3887. "y": 0,
  3888. "z": 0
  3889. },
  3890. "_lrot": {
  3891. "__type__": "cc.Quat",
  3892. "x": 0,
  3893. "y": 0,
  3894. "z": 0,
  3895. "w": 1
  3896. },
  3897. "_lscale": {
  3898. "__type__": "cc.Vec3",
  3899. "x": 1,
  3900. "y": 1,
  3901. "z": 1
  3902. },
  3903. "_layer": 1073741824,
  3904. "_euler": {
  3905. "__type__": "cc.Vec3",
  3906. "x": 0,
  3907. "y": 0,
  3908. "z": 0
  3909. },
  3910. "_id": "41/01d8oRCRKFVF3V2u1+N"
  3911. },
  3912. {
  3913. "__type__": "cc.UITransform",
  3914. "_name": "",
  3915. "_objFlags": 0,
  3916. "node": {
  3917. "__id__": 130
  3918. },
  3919. "_enabled": true,
  3920. "__prefab": null,
  3921. "_priority": 0,
  3922. "_contentSize": {
  3923. "__type__": "cc.Size",
  3924. "width": 15,
  3925. "height": 17
  3926. },
  3927. "_anchorPoint": {
  3928. "__type__": "cc.Vec2",
  3929. "x": 0.5,
  3930. "y": 0
  3931. },
  3932. "_id": "f9FSYAG0NPM74/T8Tizu2T"
  3933. },
  3934. {
  3935. "__type__": "cc.Sprite",
  3936. "_name": "",
  3937. "_objFlags": 0,
  3938. "node": {
  3939. "__id__": 130
  3940. },
  3941. "_enabled": true,
  3942. "__prefab": null,
  3943. "_visFlags": 0,
  3944. "_customMaterial": null,
  3945. "_srcBlendFactor": 2,
  3946. "_dstBlendFactor": 4,
  3947. "_color": {
  3948. "__type__": "cc.Color",
  3949. "r": 255,
  3950. "g": 255,
  3951. "b": 255,
  3952. "a": 255
  3953. },
  3954. "_spriteFrame": {
  3955. "__uuid__": "fcae82f1-ceb7-42e2-b369-23545ba1d89a@f9941"
  3956. },
  3957. "_type": 0,
  3958. "_fillType": 0,
  3959. "_sizeMode": 1,
  3960. "_fillCenter": {
  3961. "__type__": "cc.Vec2",
  3962. "x": 0,
  3963. "y": 0
  3964. },
  3965. "_fillStart": 0,
  3966. "_fillRange": 0,
  3967. "_isTrimmedMode": true,
  3968. "_useGrayscale": false,
  3969. "_atlas": null,
  3970. "_id": "71mEJYLAFHTbN2DUm/iWou"
  3971. },
  3972. {
  3973. "__type__": "cc.UITransform",
  3974. "_name": "",
  3975. "_objFlags": 0,
  3976. "node": {
  3977. "__id__": 102
  3978. },
  3979. "_enabled": true,
  3980. "__prefab": null,
  3981. "_priority": 0,
  3982. "_contentSize": {
  3983. "__type__": "cc.Size",
  3984. "width": 242.564,
  3985. "height": 100
  3986. },
  3987. "_anchorPoint": {
  3988. "__type__": "cc.Vec2",
  3989. "x": 0.5,
  3990. "y": 0.5
  3991. },
  3992. "_id": "2bjgyL7XVPVZHtMQGs4SQG"
  3993. },
  3994. {
  3995. "__type__": "cc.Layout",
  3996. "_name": "",
  3997. "_objFlags": 0,
  3998. "node": {
  3999. "__id__": 102
  4000. },
  4001. "_enabled": true,
  4002. "__prefab": null,
  4003. "_resizeMode": 0,
  4004. "_layoutType": 1,
  4005. "_cellSize": {
  4006. "__type__": "cc.Size",
  4007. "width": 40,
  4008. "height": 40
  4009. },
  4010. "_startAxis": 0,
  4011. "_paddingLeft": 0,
  4012. "_paddingRight": 0,
  4013. "_paddingTop": 0,
  4014. "_paddingBottom": 0,
  4015. "_spacingX": 0,
  4016. "_spacingY": 0,
  4017. "_verticalDirection": 1,
  4018. "_horizontalDirection": 0,
  4019. "_constraint": 0,
  4020. "_constraintNum": 2,
  4021. "_affectedByScale": false,
  4022. "_isAlign": false,
  4023. "_id": "7etZosbxxJBI/0pp3OAtEI"
  4024. },
  4025. {
  4026. "__type__": "cc.Animation",
  4027. "_name": "",
  4028. "_objFlags": 0,
  4029. "node": {
  4030. "__id__": 102
  4031. },
  4032. "_enabled": true,
  4033. "__prefab": null,
  4034. "playOnLoad": true,
  4035. "_clips": [
  4036. {
  4037. "__uuid__": "119edc3e-250d-4cc9-9e56-e94db2a9533d"
  4038. }
  4039. ],
  4040. "_defaultClip": {
  4041. "__uuid__": "119edc3e-250d-4cc9-9e56-e94db2a9533d"
  4042. },
  4043. "_id": "e81ZD2n8pM7aUwt5XgsHfB"
  4044. },
  4045. {
  4046. "__type__": "cc.Widget",
  4047. "_name": "",
  4048. "_objFlags": 0,
  4049. "node": {
  4050. "__id__": 102
  4051. },
  4052. "_enabled": true,
  4053. "__prefab": null,
  4054. "_alignFlags": 20,
  4055. "_target": null,
  4056. "_left": 0,
  4057. "_right": 0,
  4058. "_top": 0,
  4059. "_bottom": 45,
  4060. "_horizontalCenter": 0,
  4061. "_verticalCenter": 0,
  4062. "_isAbsLeft": true,
  4063. "_isAbsRight": true,
  4064. "_isAbsTop": true,
  4065. "_isAbsBottom": true,
  4066. "_isAbsHorizontalCenter": true,
  4067. "_isAbsVerticalCenter": true,
  4068. "_originalWidth": 0,
  4069. "_originalHeight": 0,
  4070. "_alignMode": 2,
  4071. "_lockFlags": 0,
  4072. "_id": "cfglrYHP9AVIIis8OA1wqN"
  4073. },
  4074. {
  4075. "__type__": "cc.UITransform",
  4076. "_name": "",
  4077. "_objFlags": 0,
  4078. "node": {
  4079. "__id__": 17
  4080. },
  4081. "_enabled": true,
  4082. "__prefab": null,
  4083. "_priority": 0,
  4084. "_contentSize": {
  4085. "__type__": "cc.Size",
  4086. "width": 586,
  4087. "height": 65
  4088. },
  4089. "_anchorPoint": {
  4090. "__type__": "cc.Vec2",
  4091. "x": 0.5,
  4092. "y": 0.5
  4093. },
  4094. "_id": "04FLWlHWFHn6d847KASSiE"
  4095. },
  4096. {
  4097. "__type__": "cc.Sprite",
  4098. "_name": "",
  4099. "_objFlags": 0,
  4100. "node": {
  4101. "__id__": 17
  4102. },
  4103. "_enabled": true,
  4104. "__prefab": null,
  4105. "_visFlags": 0,
  4106. "_customMaterial": null,
  4107. "_srcBlendFactor": 2,
  4108. "_dstBlendFactor": 4,
  4109. "_color": {
  4110. "__type__": "cc.Color",
  4111. "r": 255,
  4112. "g": 255,
  4113. "b": 255,
  4114. "a": 255
  4115. },
  4116. "_spriteFrame": {
  4117. "__uuid__": "d83dbf09-5880-40b5-a488-26bea3390b76@f9941"
  4118. },
  4119. "_type": 0,
  4120. "_fillType": 0,
  4121. "_sizeMode": 1,
  4122. "_fillCenter": {
  4123. "__type__": "cc.Vec2",
  4124. "x": 0,
  4125. "y": 0
  4126. },
  4127. "_fillStart": 0,
  4128. "_fillRange": 0,
  4129. "_isTrimmedMode": true,
  4130. "_useGrayscale": false,
  4131. "_atlas": null,
  4132. "_id": "a4g/5xRklFX7BqQEwjDIom"
  4133. },
  4134. {
  4135. "__type__": "92c99EC0CFPK636xj1prEIa",
  4136. "_name": "",
  4137. "_objFlags": 0,
  4138. "node": {
  4139. "__id__": 140
  4140. },
  4141. "_enabled": true,
  4142. "__prefab": null,
  4143. "http": {
  4144. "__id__": 15
  4145. },
  4146. "progressBar": {
  4147. "__id__": 16
  4148. },
  4149. "_id": "0fxxYGvyBJZ6M3T0WgNk4o"
  4150. },
  4151. {
  4152. "__type__": "cc.Node",
  4153. "_name": "应用更新",
  4154. "_objFlags": 0,
  4155. "_parent": {
  4156. "__id__": 1
  4157. },
  4158. "_children": [],
  4159. "_active": true,
  4160. "_components": [
  4161. {
  4162. "__id__": 139
  4163. },
  4164. {
  4165. "__id__": 141
  4166. }
  4167. ],
  4168. "_prefab": null,
  4169. "_lpos": {
  4170. "__type__": "cc.Vec3",
  4171. "x": 360,
  4172. "y": 98.5,
  4173. "z": 0
  4174. },
  4175. "_lrot": {
  4176. "__type__": "cc.Quat",
  4177. "x": 0,
  4178. "y": 0,
  4179. "z": 0,
  4180. "w": 1
  4181. },
  4182. "_lscale": {
  4183. "__type__": "cc.Vec3",
  4184. "x": 1,
  4185. "y": 1,
  4186. "z": 1
  4187. },
  4188. "_layer": 1073741824,
  4189. "_euler": {
  4190. "__type__": "cc.Vec3",
  4191. "x": 0,
  4192. "y": 0,
  4193. "z": 0
  4194. },
  4195. "_id": "03WjXu6KJNjIxY5XDvN+3l"
  4196. },
  4197. {
  4198. "__type__": "8ee7ate7OVDEph2ruFCYLQZ",
  4199. "_name": "",
  4200. "_objFlags": 0,
  4201. "node": {
  4202. "__id__": 140
  4203. },
  4204. "_enabled": true,
  4205. "__prefab": null,
  4206. "manifestUrl": {
  4207. "__uuid__": "10552270-eb27-426f-8159-760a55e6cfbe"
  4208. },
  4209. "autoUpdate": true,
  4210. "onUpdateProgress": {
  4211. "__id__": 142
  4212. },
  4213. "_id": "81Jw90XoNAm5krbu2uHBHA"
  4214. },
  4215. {
  4216. "__type__": "cc.ClickEvent",
  4217. "target": {
  4218. "__id__": 10
  4219. },
  4220. "component": "",
  4221. "_componentId": "18f63ARhEZPZrK10XmLFDd4",
  4222. "handler": "onHotUpdateProgress",
  4223. "customEventData": ""
  4224. },
  4225. {
  4226. "__type__": "f14eaOm9BZCVp4Ftl8uAIsR",
  4227. "_name": "",
  4228. "_objFlags": 0,
  4229. "node": {
  4230. "__id__": 10
  4231. },
  4232. "_enabled": true,
  4233. "__prefab": null,
  4234. "configNames": [
  4235. "build",
  4236. "level",
  4237. "make",
  4238. "product",
  4239. "lvlreward",
  4240. "withdraw",
  4241. "rank"
  4242. ],
  4243. "_id": "16VeVWh8BC6ojzw+eZ6gyw"
  4244. },
  4245. {
  4246. "__type__": "cc.SceneGlobals",
  4247. "ambient": {
  4248. "__id__": 145
  4249. },
  4250. "shadows": {
  4251. "__id__": 146
  4252. },
  4253. "_skybox": {
  4254. "__id__": 147
  4255. },
  4256. "fog": {
  4257. "__id__": 148
  4258. }
  4259. },
  4260. {
  4261. "__type__": "cc.AmbientInfo",
  4262. "_skyColor": {
  4263. "__type__": "cc.Color",
  4264. "r": 51,
  4265. "g": 128,
  4266. "b": 204,
  4267. "a": 1
  4268. },
  4269. "_skyIllum": 20000,
  4270. "_groundAlbedo": {
  4271. "__type__": "cc.Color",
  4272. "r": 51,
  4273. "g": 51,
  4274. "b": 51,
  4275. "a": 255
  4276. }
  4277. },
  4278. {
  4279. "__type__": "cc.ShadowsInfo",
  4280. "_type": 0,
  4281. "_enabled": false,
  4282. "_normal": {
  4283. "__type__": "cc.Vec3",
  4284. "x": 0,
  4285. "y": 1,
  4286. "z": 0
  4287. },
  4288. "_distance": 0,
  4289. "_shadowColor": {
  4290. "__type__": "cc.Color",
  4291. "r": 76,
  4292. "g": 76,
  4293. "b": 76,
  4294. "a": 255
  4295. },
  4296. "_autoAdapt": true,
  4297. "_pcf": 0,
  4298. "_bias": 0.00001,
  4299. "_near": 1,
  4300. "_far": 30,
  4301. "_aspect": 1,
  4302. "_orthoSize": 5,
  4303. "_maxReceived": 4,
  4304. "_size": {
  4305. "__type__": "cc.Vec2",
  4306. "x": 512,
  4307. "y": 512
  4308. }
  4309. },
  4310. {
  4311. "__type__": "cc.SkyboxInfo",
  4312. "_envmap": null,
  4313. "_isRGBE": false,
  4314. "_enabled": false,
  4315. "_useIBL": false
  4316. },
  4317. {
  4318. "__type__": "cc.FogInfo",
  4319. "_type": 0,
  4320. "_fogColor": {
  4321. "__type__": "cc.Color",
  4322. "r": 200,
  4323. "g": 200,
  4324. "b": 200,
  4325. "a": 255
  4326. },
  4327. "_enabled": false,
  4328. "_fogDensity": 0.3,
  4329. "_fogStart": 0.5,
  4330. "_fogEnd": 300,
  4331. "_fogAtten": 5,
  4332. "_fogTop": 1.5,
  4333. "_fogRange": 1.2
  4334. }
  4335. ]