7d5816bc-d4d1-4533-a6c3-7a4e3a7b86a8.json 80 KB

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