hallScene.fire 78 KB

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