homeScene.fire 80 KB

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