game.scene 79 KB

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