GameScene.fire 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. },
  19. {
  20. "__id__": 18
  21. },
  22. {
  23. "__id__": 22
  24. }
  25. ],
  26. "_active": false,
  27. "_components": [],
  28. "_prefab": null,
  29. "_opacity": 255,
  30. "_color": {
  31. "__type__": "cc.Color",
  32. "r": 255,
  33. "g": 255,
  34. "b": 255,
  35. "a": 255
  36. },
  37. "_contentSize": {
  38. "__type__": "cc.Size",
  39. "width": 0,
  40. "height": 0
  41. },
  42. "_anchorPoint": {
  43. "__type__": "cc.Vec2",
  44. "x": 0,
  45. "y": 0
  46. },
  47. "_trs": {
  48. "__type__": "TypedArray",
  49. "ctor": "Float64Array",
  50. "array": [
  51. 0,
  52. 0,
  53. 0,
  54. 0,
  55. 0,
  56. 0,
  57. 1,
  58. 1,
  59. 1,
  60. 1
  61. ]
  62. },
  63. "_is3DNode": true,
  64. "_groupIndex": 0,
  65. "groupIndex": 0,
  66. "autoReleaseAssets": false,
  67. "_id": "c5c77dd7-f044-460d-b436-26cd9bcd85b1"
  68. },
  69. {
  70. "__type__": "cc.Node",
  71. "_name": "NodePoolMsr",
  72. "_objFlags": 0,
  73. "_parent": {
  74. "__id__": 1
  75. },
  76. "_children": [],
  77. "_active": true,
  78. "_components": [
  79. {
  80. "__id__": 3
  81. }
  82. ],
  83. "_prefab": null,
  84. "_opacity": 255,
  85. "_color": {
  86. "__type__": "cc.Color",
  87. "r": 255,
  88. "g": 255,
  89. "b": 255,
  90. "a": 255
  91. },
  92. "_contentSize": {
  93. "__type__": "cc.Size",
  94. "width": 0,
  95. "height": 0
  96. },
  97. "_anchorPoint": {
  98. "__type__": "cc.Vec2",
  99. "x": 0.5,
  100. "y": 0.5
  101. },
  102. "_trs": {
  103. "__type__": "TypedArray",
  104. "ctor": "Float64Array",
  105. "array": [
  106. 0,
  107. 0,
  108. 0,
  109. 0,
  110. 0,
  111. 0,
  112. 1,
  113. 1,
  114. 1,
  115. 1
  116. ]
  117. },
  118. "_eulerAngles": {
  119. "__type__": "cc.Vec3",
  120. "x": 0,
  121. "y": 0,
  122. "z": 0
  123. },
  124. "_skewX": 0,
  125. "_skewY": 0,
  126. "_is3DNode": false,
  127. "_groupIndex": 0,
  128. "groupIndex": 0,
  129. "_id": "ffXyZb2FZC3YD3Wm1CHFzx"
  130. },
  131. {
  132. "__type__": "ea921/1pltP1IMObeKtfySs",
  133. "_name": "",
  134. "_objFlags": 0,
  135. "node": {
  136. "__id__": 2
  137. },
  138. "_enabled": true,
  139. "flyLabel": {
  140. "__id__": 4
  141. },
  142. "itemPool": {
  143. "__id__": 5
  144. },
  145. "baseBtnPool": {
  146. "__id__": 6
  147. },
  148. "tipAniPool": {
  149. "__id__": 7
  150. },
  151. "getCoinEffect": {
  152. "__id__": 8
  153. },
  154. "moneyLabPool": {
  155. "__id__": 9
  156. },
  157. "multiSprMaterial": null,
  158. "passSectionFoodPool": {
  159. "__id__": 10
  160. },
  161. "cookUnlockAni": {
  162. "__id__": 11
  163. },
  164. "catUnlockAni": {
  165. "__id__": 12
  166. },
  167. "machineLvUpAni": {
  168. "__id__": 13
  169. },
  170. "congratulationItem": {
  171. "__id__": 14
  172. },
  173. "catLefttimeProgressPool": {
  174. "__id__": 15
  175. },
  176. "roleLangPool": {
  177. "__id__": 16
  178. },
  179. "fireAniPool": {
  180. "__id__": 17
  181. },
  182. "_id": "29xAIysAJDTa4cTV/4AgTO"
  183. },
  184. {
  185. "__type__": "NodePool",
  186. "prefab": {
  187. "__uuid__": "904e11b0-d1e8-446f-a3f1-98211764a30c"
  188. }
  189. },
  190. {
  191. "__type__": "NodePool",
  192. "prefab": null
  193. },
  194. {
  195. "__type__": "NodePool",
  196. "prefab": null
  197. },
  198. {
  199. "__type__": "NodePool",
  200. "prefab": {
  201. "__uuid__": "3e6923e0-7c68-4ad4-a390-817e511d9f15"
  202. }
  203. },
  204. {
  205. "__type__": "NodePool",
  206. "prefab": {
  207. "__uuid__": "98e0435f-f304-4627-a8f4-0a0b4c01b0d8"
  208. }
  209. },
  210. {
  211. "__type__": "NodePool",
  212. "prefab": {
  213. "__uuid__": "9f0a169f-f358-4233-b0fc-433da7edcdd2"
  214. }
  215. },
  216. {
  217. "__type__": "NodePool",
  218. "prefab": {
  219. "__uuid__": "15f056d3-ddf3-49b8-a5c3-9ec84f8766e0"
  220. }
  221. },
  222. {
  223. "__type__": "NodePool",
  224. "prefab": {
  225. "__uuid__": "d4da1d3c-b5ab-4491-a637-7e624db8c959"
  226. }
  227. },
  228. {
  229. "__type__": "NodePool",
  230. "prefab": {
  231. "__uuid__": "6026b0d1-13a8-450e-8c39-9b0d8ad6cd47"
  232. }
  233. },
  234. {
  235. "__type__": "NodePool",
  236. "prefab": {
  237. "__uuid__": "de410054-e1f8-4d75-8c90-7ebf09a6db7a"
  238. }
  239. },
  240. {
  241. "__type__": "NodePool",
  242. "prefab": {
  243. "__uuid__": "e51745b9-60c9-4ca3-9206-330d8da2d1f1"
  244. }
  245. },
  246. {
  247. "__type__": "NodePool",
  248. "prefab": {
  249. "__uuid__": "fecf5a89-91ee-4957-963a-c50426d8fc81"
  250. }
  251. },
  252. {
  253. "__type__": "NodePool",
  254. "prefab": {
  255. "__uuid__": "8b32f17c-f68a-4dc4-a8da-1bff181d9529"
  256. }
  257. },
  258. {
  259. "__type__": "NodePool",
  260. "prefab": {
  261. "__uuid__": "a0341baa-9678-48c7-aeff-9488d669badc"
  262. }
  263. },
  264. {
  265. "__type__": "cc.Node",
  266. "_name": "Service",
  267. "_objFlags": 0,
  268. "_parent": {
  269. "__id__": 1
  270. },
  271. "_children": [],
  272. "_active": true,
  273. "_components": [
  274. {
  275. "__id__": 19
  276. },
  277. {
  278. "__id__": 129
  279. },
  280. {
  281. "__id__": 130
  282. },
  283. {
  284. "__id__": 131
  285. },
  286. {
  287. "__id__": 137
  288. },
  289. {
  290. "__id__": 138
  291. },
  292. {
  293. "__id__": 139
  294. },
  295. {
  296. "__id__": 140
  297. },
  298. {
  299. "__id__": 141
  300. },
  301. {
  302. "__id__": 142
  303. }
  304. ],
  305. "_prefab": null,
  306. "_opacity": 255,
  307. "_color": {
  308. "__type__": "cc.Color",
  309. "r": 255,
  310. "g": 255,
  311. "b": 255,
  312. "a": 255
  313. },
  314. "_contentSize": {
  315. "__type__": "cc.Size",
  316. "width": 0,
  317. "height": 0
  318. },
  319. "_anchorPoint": {
  320. "__type__": "cc.Vec2",
  321. "x": 0.5,
  322. "y": 0.5
  323. },
  324. "_trs": {
  325. "__type__": "TypedArray",
  326. "ctor": "Float64Array",
  327. "array": [
  328. 0,
  329. 0,
  330. 0,
  331. 0,
  332. 0,
  333. 0,
  334. 1,
  335. 1,
  336. 1,
  337. 1
  338. ]
  339. },
  340. "_eulerAngles": {
  341. "__type__": "cc.Vec3",
  342. "x": 0,
  343. "y": 0,
  344. "z": 0
  345. },
  346. "_skewX": 0,
  347. "_skewY": 0,
  348. "_is3DNode": false,
  349. "_groupIndex": 0,
  350. "groupIndex": 0,
  351. "_id": "5erndUtjxPT50bnrVyqFls"
  352. },
  353. {
  354. "__type__": "522a1k3hy9HOocGfCIeC7y6",
  355. "_name": "",
  356. "_objFlags": 0,
  357. "node": {
  358. "__id__": 18
  359. },
  360. "_enabled": true,
  361. "gameView": {
  362. "__id__": 20
  363. },
  364. "_id": "17UUs4YFJO/ocjWbAlM+cj"
  365. },
  366. {
  367. "__type__": "a4091DlYAZD7p1Cl+dNlB7k",
  368. "_name": "",
  369. "_objFlags": 0,
  370. "node": {
  371. "__id__": 21
  372. },
  373. "_enabled": true,
  374. "_id": "dd+AZ+lyxJOYjnhAcRd3OI"
  375. },
  376. {
  377. "__type__": "cc.Node",
  378. "_name": "GameView",
  379. "_objFlags": 0,
  380. "_parent": {
  381. "__id__": 22
  382. },
  383. "_children": [],
  384. "_active": true,
  385. "_components": [
  386. {
  387. "__id__": 20
  388. }
  389. ],
  390. "_prefab": null,
  391. "_opacity": 255,
  392. "_color": {
  393. "__type__": "cc.Color",
  394. "r": 255,
  395. "g": 255,
  396. "b": 255,
  397. "a": 255
  398. },
  399. "_contentSize": {
  400. "__type__": "cc.Size",
  401. "width": 0,
  402. "height": 0
  403. },
  404. "_anchorPoint": {
  405. "__type__": "cc.Vec2",
  406. "x": 0.5,
  407. "y": 0.5
  408. },
  409. "_trs": {
  410. "__type__": "TypedArray",
  411. "ctor": "Float64Array",
  412. "array": [
  413. 0,
  414. 0,
  415. 0,
  416. 0,
  417. 0,
  418. 0,
  419. 1,
  420. 1,
  421. 1,
  422. 1
  423. ]
  424. },
  425. "_eulerAngles": {
  426. "__type__": "cc.Vec3",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0
  430. },
  431. "_skewX": 0,
  432. "_skewY": 0,
  433. "_is3DNode": false,
  434. "_groupIndex": 0,
  435. "groupIndex": 0,
  436. "_id": "92O5mpsZRDOKH6CsXU/gB9"
  437. },
  438. {
  439. "__type__": "cc.Node",
  440. "_name": "Canvas",
  441. "_objFlags": 0,
  442. "_parent": {
  443. "__id__": 1
  444. },
  445. "_children": [
  446. {
  447. "__id__": 23
  448. },
  449. {
  450. "__id__": 26
  451. },
  452. {
  453. "__id__": 28
  454. },
  455. {
  456. "__id__": 35
  457. },
  458. {
  459. "__id__": 38
  460. },
  461. {
  462. "__id__": 21
  463. },
  464. {
  465. "__id__": 42
  466. },
  467. {
  468. "__id__": 60
  469. }
  470. ],
  471. "_active": true,
  472. "_components": [
  473. {
  474. "__id__": 125
  475. },
  476. {
  477. "__id__": 126
  478. },
  479. {
  480. "__id__": 127
  481. },
  482. {
  483. "__id__": 128
  484. }
  485. ],
  486. "_prefab": null,
  487. "_opacity": 255,
  488. "_color": {
  489. "__type__": "cc.Color",
  490. "r": 252,
  491. "g": 252,
  492. "b": 252,
  493. "a": 255
  494. },
  495. "_contentSize": {
  496. "__type__": "cc.Size",
  497. "width": 640,
  498. "height": 1136
  499. },
  500. "_anchorPoint": {
  501. "__type__": "cc.Vec2",
  502. "x": 0.5,
  503. "y": 0.5
  504. },
  505. "_trs": {
  506. "__type__": "TypedArray",
  507. "ctor": "Float64Array",
  508. "array": [
  509. 320,
  510. 568,
  511. 0,
  512. 0,
  513. 0,
  514. 0,
  515. 1,
  516. 1,
  517. 1,
  518. 1
  519. ]
  520. },
  521. "_eulerAngles": {
  522. "__type__": "cc.Vec3",
  523. "x": 0,
  524. "y": 0,
  525. "z": 0
  526. },
  527. "_skewX": 0,
  528. "_skewY": 0,
  529. "_is3DNode": false,
  530. "_groupIndex": 0,
  531. "groupIndex": 0,
  532. "_id": "a286bbGknJLZpRpxROV6M94"
  533. },
  534. {
  535. "__type__": "cc.Node",
  536. "_name": "DefaultCamera",
  537. "_objFlags": 0,
  538. "_parent": {
  539. "__id__": 22
  540. },
  541. "_children": [],
  542. "_active": true,
  543. "_components": [
  544. {
  545. "__id__": 24
  546. },
  547. {
  548. "__id__": 25
  549. }
  550. ],
  551. "_prefab": null,
  552. "_opacity": 255,
  553. "_color": {
  554. "__type__": "cc.Color",
  555. "r": 255,
  556. "g": 255,
  557. "b": 255,
  558. "a": 255
  559. },
  560. "_contentSize": {
  561. "__type__": "cc.Size",
  562. "width": 0,
  563. "height": 0
  564. },
  565. "_anchorPoint": {
  566. "__type__": "cc.Vec2",
  567. "x": 0.5,
  568. "y": 0.5
  569. },
  570. "_trs": {
  571. "__type__": "TypedArray",
  572. "ctor": "Float64Array",
  573. "array": [
  574. 0,
  575. 0,
  576. 527.9860353995433,
  577. 0,
  578. 0,
  579. 0,
  580. 1,
  581. 1,
  582. 1,
  583. 1
  584. ]
  585. },
  586. "_eulerAngles": {
  587. "__type__": "cc.Vec3",
  588. "x": 0,
  589. "y": 0,
  590. "z": 0
  591. },
  592. "_skewX": 0,
  593. "_skewY": 0,
  594. "_is3DNode": false,
  595. "_groupIndex": 0,
  596. "groupIndex": 0,
  597. "_id": "95h0btgUZFtL3Fmb0xFIzT"
  598. },
  599. {
  600. "__type__": "cc.Camera",
  601. "_name": "",
  602. "_objFlags": 0,
  603. "node": {
  604. "__id__": 23
  605. },
  606. "_enabled": true,
  607. "_cullingMask": 1,
  608. "_clearFlags": 7,
  609. "_backgroundColor": {
  610. "__type__": "cc.Color",
  611. "r": 0,
  612. "g": 0,
  613. "b": 0,
  614. "a": 255
  615. },
  616. "_depth": -1,
  617. "_zoomRatio": 1,
  618. "_targetTexture": null,
  619. "_fov": 60,
  620. "_orthoSize": 10,
  621. "_nearClip": 1,
  622. "_farClip": 4096,
  623. "_ortho": true,
  624. "_rect": {
  625. "__type__": "cc.Rect",
  626. "x": 0,
  627. "y": 0,
  628. "width": 1,
  629. "height": 1
  630. },
  631. "_renderStages": 1,
  632. "_alignWithScreen": true,
  633. "_id": "91ByjNu5hMG4PL56uqk0dD"
  634. },
  635. {
  636. "__type__": "c44cfyixa1ELr1fWNSc2HyD",
  637. "_name": "",
  638. "_objFlags": 0,
  639. "node": {
  640. "__id__": 23
  641. },
  642. "_enabled": true,
  643. "size": {
  644. "__type__": "cc.Size",
  645. "width": 0,
  646. "height": 0
  647. },
  648. "area": {
  649. "__type__": "cc.Rect",
  650. "x": -9000000000,
  651. "y": -9000000000,
  652. "width": 9000000000,
  653. "height": 9000000000
  654. },
  655. "cameraNode": null,
  656. "_id": "cdtALPlERC/afB0AAV+E18"
  657. },
  658. {
  659. "__type__": "cc.Node",
  660. "_name": "UICamera",
  661. "_objFlags": 0,
  662. "_parent": {
  663. "__id__": 22
  664. },
  665. "_children": [],
  666. "_active": true,
  667. "_components": [
  668. {
  669. "__id__": 27
  670. }
  671. ],
  672. "_prefab": null,
  673. "_opacity": 255,
  674. "_color": {
  675. "__type__": "cc.Color",
  676. "r": 255,
  677. "g": 255,
  678. "b": 255,
  679. "a": 255
  680. },
  681. "_contentSize": {
  682. "__type__": "cc.Size",
  683. "width": 0,
  684. "height": 0
  685. },
  686. "_anchorPoint": {
  687. "__type__": "cc.Vec2",
  688. "x": 0.5,
  689. "y": 0.5
  690. },
  691. "_trs": {
  692. "__type__": "TypedArray",
  693. "ctor": "Float64Array",
  694. "array": [
  695. 0,
  696. 0,
  697. 554.2562584220408,
  698. 0,
  699. 0,
  700. 0,
  701. 1,
  702. 1,
  703. 1,
  704. 1
  705. ]
  706. },
  707. "_eulerAngles": {
  708. "__type__": "cc.Vec3",
  709. "x": 0,
  710. "y": 0,
  711. "z": 0
  712. },
  713. "_skewX": 0,
  714. "_skewY": 0,
  715. "_is3DNode": false,
  716. "_groupIndex": 1,
  717. "groupIndex": 1,
  718. "_id": "87qaUJFhBDMp9pC2p6mFax"
  719. },
  720. {
  721. "__type__": "cc.Camera",
  722. "_name": "",
  723. "_objFlags": 0,
  724. "node": {
  725. "__id__": 26
  726. },
  727. "_enabled": true,
  728. "_cullingMask": -2,
  729. "_clearFlags": 6,
  730. "_backgroundColor": {
  731. "__type__": "cc.Color",
  732. "r": 0,
  733. "g": 0,
  734. "b": 0,
  735. "a": 255
  736. },
  737. "_depth": 0,
  738. "_zoomRatio": 1,
  739. "_targetTexture": null,
  740. "_fov": 60,
  741. "_orthoSize": 10,
  742. "_nearClip": 0.1,
  743. "_farClip": 4096,
  744. "_ortho": true,
  745. "_rect": {
  746. "__type__": "cc.Rect",
  747. "x": 0,
  748. "y": 0,
  749. "width": 1,
  750. "height": 1
  751. },
  752. "_renderStages": 1,
  753. "_alignWithScreen": true,
  754. "_id": "634xdekl5LQql+ZBzQe0lU"
  755. },
  756. {
  757. "__type__": "cc.Node",
  758. "_name": "Toast",
  759. "_objFlags": 0,
  760. "_parent": {
  761. "__id__": 22
  762. },
  763. "_children": [
  764. {
  765. "__id__": 29
  766. },
  767. {
  768. "__id__": 31
  769. }
  770. ],
  771. "_active": true,
  772. "_components": [
  773. {
  774. "__id__": 33
  775. },
  776. {
  777. "__id__": 34
  778. }
  779. ],
  780. "_prefab": null,
  781. "_opacity": 255,
  782. "_color": {
  783. "__type__": "cc.Color",
  784. "r": 255,
  785. "g": 255,
  786. "b": 255,
  787. "a": 255
  788. },
  789. "_contentSize": {
  790. "__type__": "cc.Size",
  791. "width": 0,
  792. "height": 0
  793. },
  794. "_anchorPoint": {
  795. "__type__": "cc.Vec2",
  796. "x": 0.5,
  797. "y": 0.5
  798. },
  799. "_trs": {
  800. "__type__": "TypedArray",
  801. "ctor": "Float64Array",
  802. "array": [
  803. 0,
  804. 0,
  805. 0,
  806. 0,
  807. 0,
  808. 0,
  809. 1,
  810. 1,
  811. 1,
  812. 1
  813. ]
  814. },
  815. "_eulerAngles": {
  816. "__type__": "cc.Vec3",
  817. "x": 0,
  818. "y": 0,
  819. "z": 0
  820. },
  821. "_skewX": 0,
  822. "_skewY": 0,
  823. "_is3DNode": false,
  824. "_groupIndex": 1,
  825. "groupIndex": 1,
  826. "_id": "79RrFmBOtGOqlE/3I80eRp"
  827. },
  828. {
  829. "__type__": "cc.Node",
  830. "_name": "bgSp",
  831. "_objFlags": 0,
  832. "_parent": {
  833. "__id__": 28
  834. },
  835. "_children": [],
  836. "_active": true,
  837. "_components": [
  838. {
  839. "__id__": 30
  840. }
  841. ],
  842. "_prefab": null,
  843. "_opacity": 255,
  844. "_color": {
  845. "__type__": "cc.Color",
  846. "r": 255,
  847. "g": 255,
  848. "b": 255,
  849. "a": 255
  850. },
  851. "_contentSize": {
  852. "__type__": "cc.Size",
  853. "width": 899,
  854. "height": 92
  855. },
  856. "_anchorPoint": {
  857. "__type__": "cc.Vec2",
  858. "x": 0.5,
  859. "y": 0.5
  860. },
  861. "_trs": {
  862. "__type__": "TypedArray",
  863. "ctor": "Float64Array",
  864. "array": [
  865. 0,
  866. 0,
  867. 0,
  868. 0,
  869. 0,
  870. 0,
  871. 1,
  872. 1,
  873. 1,
  874. 1
  875. ]
  876. },
  877. "_eulerAngles": {
  878. "__type__": "cc.Vec3",
  879. "x": 0,
  880. "y": 0,
  881. "z": 0
  882. },
  883. "_skewX": 0,
  884. "_skewY": 0,
  885. "_is3DNode": false,
  886. "_groupIndex": 1,
  887. "groupIndex": 1,
  888. "_id": "581galXwBIxp/3s9Hekn+B"
  889. },
  890. {
  891. "__type__": "cc.Sprite",
  892. "_name": "bgSp<Sprite>",
  893. "_objFlags": 0,
  894. "node": {
  895. "__id__": 29
  896. },
  897. "_enabled": true,
  898. "_materials": [
  899. {
  900. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  901. }
  902. ],
  903. "_srcBlendFactor": 770,
  904. "_dstBlendFactor": 771,
  905. "_spriteFrame": {
  906. "__uuid__": "1f39b553-4cc5-4869-ac27-03985ebd50a4"
  907. },
  908. "_type": 1,
  909. "_sizeMode": 0,
  910. "_fillType": 0,
  911. "_fillCenter": {
  912. "__type__": "cc.Vec2",
  913. "x": 0,
  914. "y": 0
  915. },
  916. "_fillStart": 0,
  917. "_fillRange": 0,
  918. "_isTrimmedMode": true,
  919. "_atlas": null,
  920. "_id": "1fqAMygvNC+of6EU4XJv2S"
  921. },
  922. {
  923. "__type__": "cc.Node",
  924. "_name": "msgLab",
  925. "_objFlags": 0,
  926. "_parent": {
  927. "__id__": 28
  928. },
  929. "_children": [],
  930. "_active": true,
  931. "_components": [
  932. {
  933. "__id__": 32
  934. }
  935. ],
  936. "_prefab": null,
  937. "_opacity": 255,
  938. "_color": {
  939. "__type__": "cc.Color",
  940. "r": 255,
  941. "g": 255,
  942. "b": 255,
  943. "a": 255
  944. },
  945. "_contentSize": {
  946. "__type__": "cc.Size",
  947. "width": 150.63,
  948. "height": 54.18
  949. },
  950. "_anchorPoint": {
  951. "__type__": "cc.Vec2",
  952. "x": 0.5,
  953. "y": 0.5
  954. },
  955. "_trs": {
  956. "__type__": "TypedArray",
  957. "ctor": "Float64Array",
  958. "array": [
  959. 0,
  960. 0,
  961. 0,
  962. 0,
  963. 0,
  964. 0,
  965. 1,
  966. 1,
  967. 1,
  968. 1
  969. ]
  970. },
  971. "_eulerAngles": {
  972. "__type__": "cc.Vec3",
  973. "x": 0,
  974. "y": 0,
  975. "z": 0
  976. },
  977. "_skewX": 0,
  978. "_skewY": 0,
  979. "_is3DNode": false,
  980. "_groupIndex": 1,
  981. "groupIndex": 1,
  982. "_id": "37/ID9TdJD3aPMBenxCMT6"
  983. },
  984. {
  985. "__type__": "cc.Label",
  986. "_name": "msgLab<Label>",
  987. "_objFlags": 0,
  988. "node": {
  989. "__id__": 31
  990. },
  991. "_enabled": true,
  992. "_materials": [
  993. {
  994. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  995. }
  996. ],
  997. "_srcBlendFactor": 770,
  998. "_dstBlendFactor": 771,
  999. "_string": "zhenhui",
  1000. "_N$string": "zhenhui",
  1001. "_fontSize": 43,
  1002. "_lineHeight": 43,
  1003. "_enableWrapText": true,
  1004. "_N$file": null,
  1005. "_isSystemFontUsed": true,
  1006. "_spacingX": 0,
  1007. "_batchAsBitmap": false,
  1008. "_styleFlags": 0,
  1009. "_underlineHeight": 0,
  1010. "_N$horizontalAlign": 1,
  1011. "_N$verticalAlign": 1,
  1012. "_N$fontFamily": "Arial",
  1013. "_N$overflow": 0,
  1014. "_N$cacheMode": 0,
  1015. "_id": "3dWQ0xlylCqIq+JDzLuCwd"
  1016. },
  1017. {
  1018. "__type__": "cc.Widget",
  1019. "_name": "",
  1020. "_objFlags": 0,
  1021. "node": {
  1022. "__id__": 28
  1023. },
  1024. "_enabled": true,
  1025. "alignMode": 1,
  1026. "_target": null,
  1027. "_alignFlags": 18,
  1028. "_left": 0,
  1029. "_right": 546,
  1030. "_top": 969,
  1031. "_bottom": 0,
  1032. "_verticalCenter": 0,
  1033. "_horizontalCenter": 0,
  1034. "_isAbsLeft": true,
  1035. "_isAbsRight": true,
  1036. "_isAbsTop": true,
  1037. "_isAbsBottom": true,
  1038. "_isAbsHorizontalCenter": true,
  1039. "_isAbsVerticalCenter": true,
  1040. "_originalWidth": 0,
  1041. "_originalHeight": 0,
  1042. "_id": "22ur3mo7BLMJcn4QzEcqIn"
  1043. },
  1044. {
  1045. "__type__": "3f09dLU3iRMNrfEfb1r4dOJ",
  1046. "_name": "",
  1047. "_objFlags": 0,
  1048. "node": {
  1049. "__id__": 28
  1050. },
  1051. "_enabled": true,
  1052. "bgSp": {
  1053. "__id__": 30
  1054. },
  1055. "msgLab": {
  1056. "__id__": 32
  1057. },
  1058. "_id": "1bmWBh/J5LS4vfI1v387fz"
  1059. },
  1060. {
  1061. "__type__": "cc.Node",
  1062. "_name": "BlockInput",
  1063. "_objFlags": 0,
  1064. "_parent": {
  1065. "__id__": 22
  1066. },
  1067. "_children": [],
  1068. "_active": false,
  1069. "_components": [
  1070. {
  1071. "__id__": 36
  1072. },
  1073. {
  1074. "__id__": 37
  1075. }
  1076. ],
  1077. "_prefab": null,
  1078. "_opacity": 255,
  1079. "_color": {
  1080. "__type__": "cc.Color",
  1081. "r": 255,
  1082. "g": 255,
  1083. "b": 255,
  1084. "a": 255
  1085. },
  1086. "_contentSize": {
  1087. "__type__": "cc.Size",
  1088. "width": 640,
  1089. "height": 1136
  1090. },
  1091. "_anchorPoint": {
  1092. "__type__": "cc.Vec2",
  1093. "x": 0.5,
  1094. "y": 0.5
  1095. },
  1096. "_trs": {
  1097. "__type__": "TypedArray",
  1098. "ctor": "Float64Array",
  1099. "array": [
  1100. 0,
  1101. 0,
  1102. 0,
  1103. 0,
  1104. 0,
  1105. 0,
  1106. 1,
  1107. 1,
  1108. 1,
  1109. 1
  1110. ]
  1111. },
  1112. "_eulerAngles": {
  1113. "__type__": "cc.Vec3",
  1114. "x": 0,
  1115. "y": 0,
  1116. "z": 0
  1117. },
  1118. "_skewX": 0,
  1119. "_skewY": 0,
  1120. "_is3DNode": false,
  1121. "_groupIndex": 0,
  1122. "groupIndex": 0,
  1123. "_id": "0cv1jWAzlPz44lr2vW4KfY"
  1124. },
  1125. {
  1126. "__type__": "cc.Widget",
  1127. "_name": "",
  1128. "_objFlags": 0,
  1129. "node": {
  1130. "__id__": 35
  1131. },
  1132. "_enabled": true,
  1133. "alignMode": 1,
  1134. "_target": null,
  1135. "_alignFlags": 45,
  1136. "_left": 0,
  1137. "_right": 0,
  1138. "_top": 0,
  1139. "_bottom": 0,
  1140. "_verticalCenter": 0,
  1141. "_horizontalCenter": 0,
  1142. "_isAbsLeft": true,
  1143. "_isAbsRight": true,
  1144. "_isAbsTop": true,
  1145. "_isAbsBottom": true,
  1146. "_isAbsHorizontalCenter": true,
  1147. "_isAbsVerticalCenter": true,
  1148. "_originalWidth": 0,
  1149. "_originalHeight": 0,
  1150. "_id": "46Z4bAFO1HtowEYUrT4RAk"
  1151. },
  1152. {
  1153. "__type__": "cc.BlockInputEvents",
  1154. "_name": "",
  1155. "_objFlags": 0,
  1156. "node": {
  1157. "__id__": 35
  1158. },
  1159. "_enabled": true,
  1160. "_id": "24Ff4nGi5GlZ6sdWZGPUxH"
  1161. },
  1162. {
  1163. "__type__": "cc.Node",
  1164. "_name": "InputNode",
  1165. "_objFlags": 0,
  1166. "_parent": {
  1167. "__id__": 22
  1168. },
  1169. "_children": [],
  1170. "_active": true,
  1171. "_components": [
  1172. {
  1173. "__id__": 39
  1174. },
  1175. {
  1176. "__id__": 40
  1177. },
  1178. {
  1179. "__id__": 41
  1180. }
  1181. ],
  1182. "_prefab": null,
  1183. "_opacity": 255,
  1184. "_color": {
  1185. "__type__": "cc.Color",
  1186. "r": 255,
  1187. "g": 255,
  1188. "b": 255,
  1189. "a": 255
  1190. },
  1191. "_contentSize": {
  1192. "__type__": "cc.Size",
  1193. "width": 640,
  1194. "height": 1136
  1195. },
  1196. "_anchorPoint": {
  1197. "__type__": "cc.Vec2",
  1198. "x": 0.5,
  1199. "y": 0.5
  1200. },
  1201. "_trs": {
  1202. "__type__": "TypedArray",
  1203. "ctor": "Float64Array",
  1204. "array": [
  1205. 0,
  1206. 0,
  1207. 0,
  1208. 0,
  1209. 0,
  1210. 0,
  1211. 1,
  1212. 1,
  1213. 1,
  1214. 1
  1215. ]
  1216. },
  1217. "_eulerAngles": {
  1218. "__type__": "cc.Vec3",
  1219. "x": 0,
  1220. "y": 0,
  1221. "z": 0
  1222. },
  1223. "_skewX": 0,
  1224. "_skewY": 0,
  1225. "_is3DNode": false,
  1226. "_groupIndex": 1,
  1227. "groupIndex": 1,
  1228. "_id": "b2dPTOhYBOn6+xFdDr/dPM"
  1229. },
  1230. {
  1231. "__type__": "115c2HFaMtAcY8v0E3jICC4",
  1232. "_name": "",
  1233. "_objFlags": 0,
  1234. "node": {
  1235. "__id__": 38
  1236. },
  1237. "_enabled": true,
  1238. "inputNode": null,
  1239. "stickBaseNode": null,
  1240. "stickNode": null,
  1241. "screenCoord": true,
  1242. "_id": "6dEGInpslLfpptBEmvfqNx"
  1243. },
  1244. {
  1245. "__type__": "a81c3wBW6tMuaqpo0YOQ2dB",
  1246. "_name": "",
  1247. "_objFlags": 0,
  1248. "node": {
  1249. "__id__": 38
  1250. },
  1251. "_enabled": true,
  1252. "target": null,
  1253. "enableTap": true,
  1254. "enableDoubleTap": false,
  1255. "tapDuration": 300,
  1256. "tapRadius": 30,
  1257. "enableHold": false,
  1258. "holdDelay": 400,
  1259. "enablePan": true,
  1260. "enableSwipe": false,
  1261. "swipeDuration": 1000,
  1262. "swipeMinDistance": 90,
  1263. "swipeMaxDistance": 1000,
  1264. "enableJoystick": false,
  1265. "joystickRadius": 100,
  1266. "floatStick": false,
  1267. "_id": "4aESfN1blN/K/oYOZePqGi"
  1268. },
  1269. {
  1270. "__type__": "cc.Widget",
  1271. "_name": "",
  1272. "_objFlags": 0,
  1273. "node": {
  1274. "__id__": 38
  1275. },
  1276. "_enabled": true,
  1277. "alignMode": 1,
  1278. "_target": null,
  1279. "_alignFlags": 45,
  1280. "_left": 0,
  1281. "_right": 0,
  1282. "_top": 0,
  1283. "_bottom": 0,
  1284. "_verticalCenter": 0,
  1285. "_horizontalCenter": 0,
  1286. "_isAbsLeft": true,
  1287. "_isAbsRight": true,
  1288. "_isAbsTop": true,
  1289. "_isAbsBottom": true,
  1290. "_isAbsHorizontalCenter": true,
  1291. "_isAbsVerticalCenter": true,
  1292. "_originalWidth": 1000,
  1293. "_originalHeight": 0,
  1294. "_id": "9dtf2LcLdKTrMZgQbE//ig"
  1295. },
  1296. {
  1297. "__type__": "cc.Node",
  1298. "_name": "UnlockBox",
  1299. "_objFlags": 0,
  1300. "_parent": {
  1301. "__id__": 22
  1302. },
  1303. "_children": [
  1304. {
  1305. "__id__": 43
  1306. },
  1307. {
  1308. "__id__": 56
  1309. }
  1310. ],
  1311. "_active": true,
  1312. "_components": [
  1313. {
  1314. "__id__": 58
  1315. },
  1316. {
  1317. "__id__": 59
  1318. }
  1319. ],
  1320. "_prefab": null,
  1321. "_opacity": 255,
  1322. "_color": {
  1323. "__type__": "cc.Color",
  1324. "r": 255,
  1325. "g": 255,
  1326. "b": 255,
  1327. "a": 255
  1328. },
  1329. "_contentSize": {
  1330. "__type__": "cc.Size",
  1331. "width": 200,
  1332. "height": 160
  1333. },
  1334. "_anchorPoint": {
  1335. "__type__": "cc.Vec2",
  1336. "x": 0.5,
  1337. "y": 0
  1338. },
  1339. "_trs": {
  1340. "__type__": "TypedArray",
  1341. "ctor": "Float64Array",
  1342. "array": [
  1343. -559.255,
  1344. 0,
  1345. 0,
  1346. 0,
  1347. 0,
  1348. 0,
  1349. 1,
  1350. 1,
  1351. 1,
  1352. 1
  1353. ]
  1354. },
  1355. "_eulerAngles": {
  1356. "__type__": "cc.Vec3",
  1357. "x": 0,
  1358. "y": 0,
  1359. "z": 0
  1360. },
  1361. "_skewX": 0,
  1362. "_skewY": 0,
  1363. "_is3DNode": false,
  1364. "_groupIndex": 0,
  1365. "groupIndex": 0,
  1366. "_id": "7aAh2dpFxIIIvM6VNgROxu"
  1367. },
  1368. {
  1369. "__type__": "cc.Node",
  1370. "_name": "di_3",
  1371. "_objFlags": 0,
  1372. "_parent": {
  1373. "__id__": 42
  1374. },
  1375. "_children": [
  1376. {
  1377. "__id__": 44
  1378. },
  1379. {
  1380. "__id__": 46
  1381. }
  1382. ],
  1383. "_active": true,
  1384. "_components": [
  1385. {
  1386. "__id__": 55
  1387. }
  1388. ],
  1389. "_prefab": null,
  1390. "_opacity": 255,
  1391. "_color": {
  1392. "__type__": "cc.Color",
  1393. "r": 255,
  1394. "g": 255,
  1395. "b": 255,
  1396. "a": 255
  1397. },
  1398. "_contentSize": {
  1399. "__type__": "cc.Size",
  1400. "width": 200,
  1401. "height": 160
  1402. },
  1403. "_anchorPoint": {
  1404. "__type__": "cc.Vec2",
  1405. "x": 0.5,
  1406. "y": 0.5
  1407. },
  1408. "_trs": {
  1409. "__type__": "TypedArray",
  1410. "ctor": "Float64Array",
  1411. "array": [
  1412. 0,
  1413. 109.733,
  1414. 0,
  1415. 0,
  1416. 0,
  1417. 0,
  1418. 1,
  1419. 1,
  1420. 1,
  1421. 1
  1422. ]
  1423. },
  1424. "_eulerAngles": {
  1425. "__type__": "cc.Vec3",
  1426. "x": 0,
  1427. "y": 0,
  1428. "z": 0
  1429. },
  1430. "_skewX": 0,
  1431. "_skewY": 0,
  1432. "_is3DNode": false,
  1433. "_groupIndex": 0,
  1434. "groupIndex": 0,
  1435. "_id": "0dXuK6VVZPjq0AuskT7oqR"
  1436. },
  1437. {
  1438. "__type__": "cc.Node",
  1439. "_name": "label",
  1440. "_objFlags": 0,
  1441. "_parent": {
  1442. "__id__": 43
  1443. },
  1444. "_children": [],
  1445. "_active": true,
  1446. "_components": [
  1447. {
  1448. "__id__": 45
  1449. }
  1450. ],
  1451. "_prefab": null,
  1452. "_opacity": 255,
  1453. "_color": {
  1454. "__type__": "cc.Color",
  1455. "r": 143,
  1456. "g": 95,
  1457. "b": 104,
  1458. "a": 255
  1459. },
  1460. "_contentSize": {
  1461. "__type__": "cc.Size",
  1462. "width": 136,
  1463. "height": 42.84
  1464. },
  1465. "_anchorPoint": {
  1466. "__type__": "cc.Vec2",
  1467. "x": 0.5,
  1468. "y": 0.5
  1469. },
  1470. "_trs": {
  1471. "__type__": "TypedArray",
  1472. "ctor": "Float64Array",
  1473. "array": [
  1474. 0,
  1475. 35.669,
  1476. 0,
  1477. 0,
  1478. 0,
  1479. 0,
  1480. 1,
  1481. 1,
  1482. 1,
  1483. 1
  1484. ]
  1485. },
  1486. "_eulerAngles": {
  1487. "__type__": "cc.Vec3",
  1488. "x": 0,
  1489. "y": 0,
  1490. "z": 0
  1491. },
  1492. "_skewX": 0,
  1493. "_skewY": 0,
  1494. "_is3DNode": false,
  1495. "_groupIndex": 0,
  1496. "groupIndex": 0,
  1497. "_id": "59z0q3KFlBw7c91YhDJTds"
  1498. },
  1499. {
  1500. "__type__": "cc.Label",
  1501. "_name": "",
  1502. "_objFlags": 0,
  1503. "node": {
  1504. "__id__": 44
  1505. },
  1506. "_enabled": true,
  1507. "_materials": [
  1508. {
  1509. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1510. }
  1511. ],
  1512. "_srcBlendFactor": 770,
  1513. "_dstBlendFactor": 771,
  1514. "_string": "新的菜单",
  1515. "_N$string": "新的菜单",
  1516. "_fontSize": 34,
  1517. "_lineHeight": 34,
  1518. "_enableWrapText": true,
  1519. "_N$file": null,
  1520. "_isSystemFontUsed": true,
  1521. "_spacingX": 0,
  1522. "_batchAsBitmap": false,
  1523. "_styleFlags": 1,
  1524. "_underlineHeight": 0,
  1525. "_N$horizontalAlign": 1,
  1526. "_N$verticalAlign": 1,
  1527. "_N$fontFamily": "Arial",
  1528. "_N$overflow": 0,
  1529. "_N$cacheMode": 0,
  1530. "_id": "23/+epx/ZF5526xYQJsjiD"
  1531. },
  1532. {
  1533. "__type__": "cc.Node",
  1534. "_name": "btn",
  1535. "_objFlags": 512,
  1536. "_parent": {
  1537. "__id__": 43
  1538. },
  1539. "_children": [
  1540. {
  1541. "__id__": 47
  1542. },
  1543. {
  1544. "__id__": 50
  1545. }
  1546. ],
  1547. "_active": true,
  1548. "_components": [
  1549. {
  1550. "__id__": 52
  1551. },
  1552. {
  1553. "__id__": 54
  1554. }
  1555. ],
  1556. "_prefab": null,
  1557. "_opacity": 255,
  1558. "_color": {
  1559. "__type__": "cc.Color",
  1560. "r": 255,
  1561. "g": 255,
  1562. "b": 255,
  1563. "a": 255
  1564. },
  1565. "_contentSize": {
  1566. "__type__": "cc.Size",
  1567. "width": 170,
  1568. "height": 70
  1569. },
  1570. "_anchorPoint": {
  1571. "__type__": "cc.Vec2",
  1572. "x": 0.5,
  1573. "y": 0.5
  1574. },
  1575. "_trs": {
  1576. "__type__": "TypedArray",
  1577. "ctor": "Float64Array",
  1578. "array": [
  1579. 0,
  1580. -31.096,
  1581. 0,
  1582. 0,
  1583. 0,
  1584. 0,
  1585. 1,
  1586. 1,
  1587. 1,
  1588. 0
  1589. ]
  1590. },
  1591. "_eulerAngles": {
  1592. "__type__": "cc.Vec3",
  1593. "x": 0,
  1594. "y": 0,
  1595. "z": 0
  1596. },
  1597. "_skewX": 0,
  1598. "_skewY": 0,
  1599. "_is3DNode": false,
  1600. "_groupIndex": 0,
  1601. "groupIndex": 0,
  1602. "_id": "6eu6151pRNIaar5Vx/N9bx"
  1603. },
  1604. {
  1605. "__type__": "cc.Node",
  1606. "_name": "Label",
  1607. "_objFlags": 0,
  1608. "_parent": {
  1609. "__id__": 46
  1610. },
  1611. "_children": [],
  1612. "_active": true,
  1613. "_components": [
  1614. {
  1615. "__id__": 48
  1616. },
  1617. {
  1618. "__id__": 49
  1619. }
  1620. ],
  1621. "_prefab": null,
  1622. "_opacity": 255,
  1623. "_color": {
  1624. "__type__": "cc.Color",
  1625. "r": 255,
  1626. "g": 255,
  1627. "b": 255,
  1628. "a": 255
  1629. },
  1630. "_contentSize": {
  1631. "__type__": "cc.Size",
  1632. "width": 100.41,
  1633. "height": 46.84
  1634. },
  1635. "_anchorPoint": {
  1636. "__type__": "cc.Vec2",
  1637. "x": 0.5,
  1638. "y": 0.5
  1639. },
  1640. "_trs": {
  1641. "__type__": "TypedArray",
  1642. "ctor": "Float64Array",
  1643. "array": [
  1644. 23.32,
  1645. 0,
  1646. 0,
  1647. 0,
  1648. 0,
  1649. 0,
  1650. 1,
  1651. 1,
  1652. 1,
  1653. 1
  1654. ]
  1655. },
  1656. "_eulerAngles": {
  1657. "__type__": "cc.Vec3",
  1658. "x": 0,
  1659. "y": 0,
  1660. "z": 0
  1661. },
  1662. "_skewX": 0,
  1663. "_skewY": 0,
  1664. "_is3DNode": false,
  1665. "_groupIndex": 0,
  1666. "groupIndex": 0,
  1667. "_id": "91W+K64uRC9opT8R89W1nC"
  1668. },
  1669. {
  1670. "__type__": "cc.Label",
  1671. "_name": "",
  1672. "_objFlags": 0,
  1673. "node": {
  1674. "__id__": 47
  1675. },
  1676. "_enabled": true,
  1677. "_materials": [
  1678. {
  1679. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1680. }
  1681. ],
  1682. "_srcBlendFactor": 770,
  1683. "_dstBlendFactor": 771,
  1684. "_string": "999ab",
  1685. "_N$string": "999ab",
  1686. "_fontSize": 34,
  1687. "_lineHeight": 34,
  1688. "_enableWrapText": false,
  1689. "_N$file": null,
  1690. "_isSystemFontUsed": true,
  1691. "_spacingX": 0,
  1692. "_batchAsBitmap": false,
  1693. "_styleFlags": 1,
  1694. "_underlineHeight": 0,
  1695. "_N$horizontalAlign": 1,
  1696. "_N$verticalAlign": 1,
  1697. "_N$fontFamily": "Arial",
  1698. "_N$overflow": 0,
  1699. "_N$cacheMode": 0,
  1700. "_id": "2aJP/KDuhHl5mP8bQwYL1m"
  1701. },
  1702. {
  1703. "__type__": "cc.LabelOutline",
  1704. "_name": "",
  1705. "_objFlags": 0,
  1706. "node": {
  1707. "__id__": 47
  1708. },
  1709. "_enabled": true,
  1710. "_color": {
  1711. "__type__": "cc.Color",
  1712. "r": 72,
  1713. "g": 132,
  1714. "b": 3,
  1715. "a": 255
  1716. },
  1717. "_width": 2,
  1718. "_id": "1dGCrM42lFu5KKmshOtDLA"
  1719. },
  1720. {
  1721. "__type__": "cc.Node",
  1722. "_name": "icon",
  1723. "_objFlags": 0,
  1724. "_parent": {
  1725. "__id__": 46
  1726. },
  1727. "_children": [],
  1728. "_active": true,
  1729. "_components": [
  1730. {
  1731. "__id__": 51
  1732. }
  1733. ],
  1734. "_prefab": null,
  1735. "_opacity": 255,
  1736. "_color": {
  1737. "__type__": "cc.Color",
  1738. "r": 255,
  1739. "g": 255,
  1740. "b": 255,
  1741. "a": 255
  1742. },
  1743. "_contentSize": {
  1744. "__type__": "cc.Size",
  1745. "width": 40,
  1746. "height": 40
  1747. },
  1748. "_anchorPoint": {
  1749. "__type__": "cc.Vec2",
  1750. "x": 0.5,
  1751. "y": 0.5
  1752. },
  1753. "_trs": {
  1754. "__type__": "TypedArray",
  1755. "ctor": "Float64Array",
  1756. "array": [
  1757. -48.701,
  1758. 0.555,
  1759. 0,
  1760. 0,
  1761. 0,
  1762. 0,
  1763. 1,
  1764. 1,
  1765. 1,
  1766. 1
  1767. ]
  1768. },
  1769. "_eulerAngles": {
  1770. "__type__": "cc.Vec3",
  1771. "x": 0,
  1772. "y": 0,
  1773. "z": 0
  1774. },
  1775. "_skewX": 0,
  1776. "_skewY": 0,
  1777. "_is3DNode": false,
  1778. "_groupIndex": 0,
  1779. "groupIndex": 0,
  1780. "_id": "43fppgPzpFSokcbCv7XGeD"
  1781. },
  1782. {
  1783. "__type__": "cc.Sprite",
  1784. "_name": "",
  1785. "_objFlags": 0,
  1786. "node": {
  1787. "__id__": 50
  1788. },
  1789. "_enabled": true,
  1790. "_materials": [
  1791. {
  1792. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1793. }
  1794. ],
  1795. "_srcBlendFactor": 770,
  1796. "_dstBlendFactor": 771,
  1797. "_spriteFrame": {
  1798. "__uuid__": "1d8aafc2-695e-4d3e-b22f-e63a2ae6d496"
  1799. },
  1800. "_type": 0,
  1801. "_sizeMode": 0,
  1802. "_fillType": 0,
  1803. "_fillCenter": {
  1804. "__type__": "cc.Vec2",
  1805. "x": 0,
  1806. "y": 0
  1807. },
  1808. "_fillStart": 0,
  1809. "_fillRange": 0,
  1810. "_isTrimmedMode": true,
  1811. "_atlas": null,
  1812. "_id": "b0bKNmsihLXo/M/Go+AZKE"
  1813. },
  1814. {
  1815. "__type__": "cc.Button",
  1816. "_name": "",
  1817. "_objFlags": 0,
  1818. "node": {
  1819. "__id__": 46
  1820. },
  1821. "_enabled": true,
  1822. "_normalMaterial": {
  1823. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1824. },
  1825. "_grayMaterial": {
  1826. "__uuid__": "3a7bb79f-32fd-422e-ada2-96f518fed422"
  1827. },
  1828. "duration": 0.1,
  1829. "zoomScale": 1.2,
  1830. "clickEvents": [
  1831. {
  1832. "__id__": 53
  1833. }
  1834. ],
  1835. "_N$interactable": true,
  1836. "_N$enableAutoGrayEffect": true,
  1837. "_N$transition": 0,
  1838. "transition": 0,
  1839. "_N$normalColor": {
  1840. "__type__": "cc.Color",
  1841. "r": 230,
  1842. "g": 230,
  1843. "b": 230,
  1844. "a": 255
  1845. },
  1846. "_N$pressedColor": {
  1847. "__type__": "cc.Color",
  1848. "r": 211,
  1849. "g": 211,
  1850. "b": 211,
  1851. "a": 255
  1852. },
  1853. "pressedColor": {
  1854. "__type__": "cc.Color",
  1855. "r": 211,
  1856. "g": 211,
  1857. "b": 211,
  1858. "a": 255
  1859. },
  1860. "_N$hoverColor": {
  1861. "__type__": "cc.Color",
  1862. "r": 255,
  1863. "g": 255,
  1864. "b": 255,
  1865. "a": 255
  1866. },
  1867. "hoverColor": {
  1868. "__type__": "cc.Color",
  1869. "r": 255,
  1870. "g": 255,
  1871. "b": 255,
  1872. "a": 255
  1873. },
  1874. "_N$disabledColor": {
  1875. "__type__": "cc.Color",
  1876. "r": 120,
  1877. "g": 120,
  1878. "b": 120,
  1879. "a": 200
  1880. },
  1881. "_N$normalSprite": null,
  1882. "_N$pressedSprite": null,
  1883. "pressedSprite": null,
  1884. "_N$hoverSprite": null,
  1885. "hoverSprite": null,
  1886. "_N$disabledSprite": null,
  1887. "_N$target": {
  1888. "__id__": 46
  1889. },
  1890. "_id": "927NMdOMNO8b2Pvko5pA+x"
  1891. },
  1892. {
  1893. "__type__": "cc.ClickEvent",
  1894. "target": {
  1895. "__id__": 42
  1896. },
  1897. "component": "",
  1898. "_componentId": "e377190w91ADb7R0RJHQmx9",
  1899. "handler": "onTouchBtn",
  1900. "customEventData": ""
  1901. },
  1902. {
  1903. "__type__": "cc.Sprite",
  1904. "_name": "",
  1905. "_objFlags": 0,
  1906. "node": {
  1907. "__id__": 46
  1908. },
  1909. "_enabled": true,
  1910. "_materials": [
  1911. {
  1912. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1913. }
  1914. ],
  1915. "_srcBlendFactor": 770,
  1916. "_dstBlendFactor": 771,
  1917. "_spriteFrame": {
  1918. "__uuid__": "a7f731bf-b765-4cee-b961-013da72fdda2"
  1919. },
  1920. "_type": 0,
  1921. "_sizeMode": 0,
  1922. "_fillType": 0,
  1923. "_fillCenter": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0,
  1926. "y": 0
  1927. },
  1928. "_fillStart": 0,
  1929. "_fillRange": 0,
  1930. "_isTrimmedMode": true,
  1931. "_atlas": null,
  1932. "_id": "a1r9D9HYxLRK8Mfm+D0yqC"
  1933. },
  1934. {
  1935. "__type__": "cc.Sprite",
  1936. "_name": "",
  1937. "_objFlags": 0,
  1938. "node": {
  1939. "__id__": 43
  1940. },
  1941. "_enabled": true,
  1942. "_materials": [
  1943. {
  1944. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1945. }
  1946. ],
  1947. "_srcBlendFactor": 770,
  1948. "_dstBlendFactor": 771,
  1949. "_spriteFrame": {
  1950. "__uuid__": "4ec1d0bb-d375-459a-8621-9265406cc144"
  1951. },
  1952. "_type": 1,
  1953. "_sizeMode": 0,
  1954. "_fillType": 0,
  1955. "_fillCenter": {
  1956. "__type__": "cc.Vec2",
  1957. "x": 0,
  1958. "y": 0
  1959. },
  1960. "_fillStart": 0,
  1961. "_fillRange": 0,
  1962. "_isTrimmedMode": true,
  1963. "_atlas": null,
  1964. "_id": "42f9JCPL9FjrkhuPAaNbiM"
  1965. },
  1966. {
  1967. "__type__": "cc.Node",
  1968. "_name": "di_4",
  1969. "_objFlags": 0,
  1970. "_parent": {
  1971. "__id__": 42
  1972. },
  1973. "_children": [],
  1974. "_active": true,
  1975. "_components": [
  1976. {
  1977. "__id__": 57
  1978. }
  1979. ],
  1980. "_prefab": null,
  1981. "_opacity": 255,
  1982. "_color": {
  1983. "__type__": "cc.Color",
  1984. "r": 255,
  1985. "g": 255,
  1986. "b": 255,
  1987. "a": 255
  1988. },
  1989. "_contentSize": {
  1990. "__type__": "cc.Size",
  1991. "width": 48,
  1992. "height": 44
  1993. },
  1994. "_anchorPoint": {
  1995. "__type__": "cc.Vec2",
  1996. "x": 0.5,
  1997. "y": 0.5
  1998. },
  1999. "_trs": {
  2000. "__type__": "TypedArray",
  2001. "ctor": "Float64Array",
  2002. "array": [
  2003. 0,
  2004. 18.126,
  2005. 0,
  2006. 0,
  2007. 0,
  2008. 0,
  2009. 1,
  2010. 1,
  2011. 1,
  2012. 1
  2013. ]
  2014. },
  2015. "_eulerAngles": {
  2016. "__type__": "cc.Vec3",
  2017. "x": 0,
  2018. "y": 0,
  2019. "z": 0
  2020. },
  2021. "_skewX": 0,
  2022. "_skewY": 0,
  2023. "_is3DNode": false,
  2024. "_groupIndex": 0,
  2025. "groupIndex": 0,
  2026. "_id": "06L9BQdIZDXrPWN4nTJPHn"
  2027. },
  2028. {
  2029. "__type__": "cc.Sprite",
  2030. "_name": "",
  2031. "_objFlags": 0,
  2032. "node": {
  2033. "__id__": 56
  2034. },
  2035. "_enabled": true,
  2036. "_materials": [
  2037. {
  2038. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2039. }
  2040. ],
  2041. "_srcBlendFactor": 770,
  2042. "_dstBlendFactor": 771,
  2043. "_spriteFrame": {
  2044. "__uuid__": "c969a572-a0a0-4b1d-a293-05165e760ec2"
  2045. },
  2046. "_type": 0,
  2047. "_sizeMode": 1,
  2048. "_fillType": 0,
  2049. "_fillCenter": {
  2050. "__type__": "cc.Vec2",
  2051. "x": 0,
  2052. "y": 0
  2053. },
  2054. "_fillStart": 0,
  2055. "_fillRange": 0,
  2056. "_isTrimmedMode": true,
  2057. "_atlas": null,
  2058. "_id": "89zJ5qO0RGwakejGNzugxP"
  2059. },
  2060. {
  2061. "__type__": "e377190w91ADb7R0RJHQmx9",
  2062. "_name": "",
  2063. "_objFlags": 0,
  2064. "node": {
  2065. "__id__": 42
  2066. },
  2067. "_enabled": true,
  2068. "btnLab": {
  2069. "__id__": 48
  2070. },
  2071. "btn": {
  2072. "__id__": 52
  2073. },
  2074. "bgNode": {
  2075. "__id__": 43
  2076. },
  2077. "panelAni": {
  2078. "__id__": 59
  2079. },
  2080. "_id": "3dr5zVqpVEmpAV4JL9r/pY"
  2081. },
  2082. {
  2083. "__type__": "c8ce0aO6IZCxbaDTRQx/82/",
  2084. "_name": "",
  2085. "_objFlags": 0,
  2086. "node": {
  2087. "__id__": 42
  2088. },
  2089. "_enabled": true,
  2090. "_id": "47x7ZM8iJDaI5RbR9QOzwm"
  2091. },
  2092. {
  2093. "__type__": "cc.Node",
  2094. "_name": "LvUpBox",
  2095. "_objFlags": 0,
  2096. "_parent": {
  2097. "__id__": 22
  2098. },
  2099. "_children": [
  2100. {
  2101. "__id__": 61
  2102. },
  2103. {
  2104. "__id__": 121
  2105. }
  2106. ],
  2107. "_active": true,
  2108. "_components": [
  2109. {
  2110. "__id__": 123
  2111. },
  2112. {
  2113. "__id__": 124
  2114. }
  2115. ],
  2116. "_prefab": null,
  2117. "_opacity": 255,
  2118. "_color": {
  2119. "__type__": "cc.Color",
  2120. "r": 255,
  2121. "g": 255,
  2122. "b": 255,
  2123. "a": 255
  2124. },
  2125. "_contentSize": {
  2126. "__type__": "cc.Size",
  2127. "width": 250,
  2128. "height": 300
  2129. },
  2130. "_anchorPoint": {
  2131. "__type__": "cc.Vec2",
  2132. "x": 0.5,
  2133. "y": 0
  2134. },
  2135. "_trs": {
  2136. "__type__": "TypedArray",
  2137. "ctor": "Float64Array",
  2138. "array": [
  2139. -567.026,
  2140. 311.655,
  2141. 0,
  2142. 0,
  2143. 0,
  2144. 0,
  2145. 1,
  2146. 1,
  2147. 1,
  2148. 1
  2149. ]
  2150. },
  2151. "_eulerAngles": {
  2152. "__type__": "cc.Vec3",
  2153. "x": 0,
  2154. "y": 0,
  2155. "z": 0
  2156. },
  2157. "_skewX": 0,
  2158. "_skewY": 0,
  2159. "_is3DNode": false,
  2160. "_groupIndex": 0,
  2161. "groupIndex": 0,
  2162. "_id": "8dQ3aqc4RKFqHDB6kX01W7"
  2163. },
  2164. {
  2165. "__type__": "cc.Node",
  2166. "_name": "BgNode@Node",
  2167. "_objFlags": 0,
  2168. "_parent": {
  2169. "__id__": 60
  2170. },
  2171. "_children": [
  2172. {
  2173. "__id__": 62
  2174. },
  2175. {
  2176. "__id__": 69
  2177. },
  2178. {
  2179. "__id__": 72
  2180. },
  2181. {
  2182. "__id__": 74
  2183. },
  2184. {
  2185. "__id__": 96
  2186. },
  2187. {
  2188. "__id__": 98
  2189. },
  2190. {
  2191. "__id__": 107
  2192. },
  2193. {
  2194. "__id__": 112
  2195. },
  2196. {
  2197. "__id__": 114
  2198. },
  2199. {
  2200. "__id__": 116
  2201. },
  2202. {
  2203. "__id__": 118
  2204. }
  2205. ],
  2206. "_active": true,
  2207. "_components": [
  2208. {
  2209. "__id__": 120
  2210. }
  2211. ],
  2212. "_prefab": null,
  2213. "_opacity": 255,
  2214. "_color": {
  2215. "__type__": "cc.Color",
  2216. "r": 255,
  2217. "g": 255,
  2218. "b": 255,
  2219. "a": 255
  2220. },
  2221. "_contentSize": {
  2222. "__type__": "cc.Size",
  2223. "width": 250,
  2224. "height": 300
  2225. },
  2226. "_anchorPoint": {
  2227. "__type__": "cc.Vec2",
  2228. "x": 0.5,
  2229. "y": 0.5
  2230. },
  2231. "_trs": {
  2232. "__type__": "TypedArray",
  2233. "ctor": "Float64Array",
  2234. "array": [
  2235. 0,
  2236. 184.767,
  2237. 0,
  2238. 0,
  2239. 0,
  2240. 0,
  2241. 1,
  2242. 1,
  2243. 1,
  2244. 1
  2245. ]
  2246. },
  2247. "_eulerAngles": {
  2248. "__type__": "cc.Vec3",
  2249. "x": 0,
  2250. "y": 0,
  2251. "z": 0
  2252. },
  2253. "_skewX": 0,
  2254. "_skewY": 0,
  2255. "_is3DNode": false,
  2256. "_groupIndex": 0,
  2257. "groupIndex": 0,
  2258. "_id": "a4Wn4Gl/ZFw5RPqQ0OJ7Hw"
  2259. },
  2260. {
  2261. "__type__": "cc.Node",
  2262. "_name": "Progress@Bar",
  2263. "_objFlags": 0,
  2264. "_parent": {
  2265. "__id__": 61
  2266. },
  2267. "_children": [
  2268. {
  2269. "__id__": 63
  2270. },
  2271. {
  2272. "__id__": 65
  2273. }
  2274. ],
  2275. "_active": true,
  2276. "_components": [
  2277. {
  2278. "__id__": 67
  2279. },
  2280. {
  2281. "__id__": 68
  2282. }
  2283. ],
  2284. "_prefab": null,
  2285. "_opacity": 255,
  2286. "_color": {
  2287. "__type__": "cc.Color",
  2288. "r": 255,
  2289. "g": 255,
  2290. "b": 255,
  2291. "a": 255
  2292. },
  2293. "_contentSize": {
  2294. "__type__": "cc.Size",
  2295. "width": 208,
  2296. "height": 32
  2297. },
  2298. "_anchorPoint": {
  2299. "__type__": "cc.Vec2",
  2300. "x": 0.5,
  2301. "y": 0.5
  2302. },
  2303. "_trs": {
  2304. "__type__": "TypedArray",
  2305. "ctor": "Float64Array",
  2306. "array": [
  2307. 0,
  2308. 6.149,
  2309. 0,
  2310. 0,
  2311. 0,
  2312. 0,
  2313. 1,
  2314. 1,
  2315. 1,
  2316. 1
  2317. ]
  2318. },
  2319. "_eulerAngles": {
  2320. "__type__": "cc.Vec3",
  2321. "x": 0,
  2322. "y": 0,
  2323. "z": 0
  2324. },
  2325. "_skewX": 0,
  2326. "_skewY": 0,
  2327. "_is3DNode": false,
  2328. "_groupIndex": 0,
  2329. "groupIndex": 0,
  2330. "_id": "94kSMiE3xJCLnmdvGRqU2K"
  2331. },
  2332. {
  2333. "__type__": "cc.Node",
  2334. "_name": "bar",
  2335. "_objFlags": 0,
  2336. "_parent": {
  2337. "__id__": 62
  2338. },
  2339. "_children": [],
  2340. "_active": true,
  2341. "_components": [
  2342. {
  2343. "__id__": 64
  2344. }
  2345. ],
  2346. "_prefab": null,
  2347. "_opacity": 255,
  2348. "_color": {
  2349. "__type__": "cc.Color",
  2350. "r": 255,
  2351. "g": 255,
  2352. "b": 255,
  2353. "a": 255
  2354. },
  2355. "_contentSize": {
  2356. "__type__": "cc.Size",
  2357. "width": 200,
  2358. "height": 24
  2359. },
  2360. "_anchorPoint": {
  2361. "__type__": "cc.Vec2",
  2362. "x": 0,
  2363. "y": 0.5
  2364. },
  2365. "_trs": {
  2366. "__type__": "TypedArray",
  2367. "ctor": "Float64Array",
  2368. "array": [
  2369. -100.632,
  2370. 0,
  2371. 0,
  2372. 0,
  2373. 0,
  2374. 0,
  2375. 1,
  2376. 1,
  2377. 1,
  2378. 1
  2379. ]
  2380. },
  2381. "_eulerAngles": {
  2382. "__type__": "cc.Vec3",
  2383. "x": 0,
  2384. "y": 0,
  2385. "z": 0
  2386. },
  2387. "_skewX": 0,
  2388. "_skewY": 0,
  2389. "_is3DNode": false,
  2390. "_groupIndex": 0,
  2391. "groupIndex": 0,
  2392. "_id": "4agYeYWvdOO7la459vnb4l"
  2393. },
  2394. {
  2395. "__type__": "cc.Sprite",
  2396. "_name": "",
  2397. "_objFlags": 0,
  2398. "node": {
  2399. "__id__": 63
  2400. },
  2401. "_enabled": true,
  2402. "_materials": [
  2403. {
  2404. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2405. }
  2406. ],
  2407. "_srcBlendFactor": 770,
  2408. "_dstBlendFactor": 771,
  2409. "_spriteFrame": {
  2410. "__uuid__": "b634a8f7-daa0-4403-860c-9468d0c183c9"
  2411. },
  2412. "_type": 2,
  2413. "_sizeMode": 0,
  2414. "_fillType": 0,
  2415. "_fillCenter": {
  2416. "__type__": "cc.Vec2",
  2417. "x": 0,
  2418. "y": 0
  2419. },
  2420. "_fillStart": 0,
  2421. "_fillRange": 0,
  2422. "_isTrimmedMode": true,
  2423. "_atlas": null,
  2424. "_id": "e5YRA17ZFEcLMb2zhs1B8f"
  2425. },
  2426. {
  2427. "__type__": "cc.Node",
  2428. "_name": "MaxBar@Node",
  2429. "_objFlags": 0,
  2430. "_parent": {
  2431. "__id__": 62
  2432. },
  2433. "_children": [],
  2434. "_active": true,
  2435. "_components": [
  2436. {
  2437. "__id__": 66
  2438. }
  2439. ],
  2440. "_prefab": null,
  2441. "_opacity": 255,
  2442. "_color": {
  2443. "__type__": "cc.Color",
  2444. "r": 255,
  2445. "g": 255,
  2446. "b": 255,
  2447. "a": 255
  2448. },
  2449. "_contentSize": {
  2450. "__type__": "cc.Size",
  2451. "width": 200,
  2452. "height": 26
  2453. },
  2454. "_anchorPoint": {
  2455. "__type__": "cc.Vec2",
  2456. "x": 0,
  2457. "y": 0.5
  2458. },
  2459. "_trs": {
  2460. "__type__": "TypedArray",
  2461. "ctor": "Float64Array",
  2462. "array": [
  2463. -101.234,
  2464. 0,
  2465. 0,
  2466. 0,
  2467. 0,
  2468. 0,
  2469. 1,
  2470. 1,
  2471. 1,
  2472. 1
  2473. ]
  2474. },
  2475. "_eulerAngles": {
  2476. "__type__": "cc.Vec3",
  2477. "x": 0,
  2478. "y": 0,
  2479. "z": 0
  2480. },
  2481. "_skewX": 0,
  2482. "_skewY": 0,
  2483. "_is3DNode": false,
  2484. "_groupIndex": 0,
  2485. "groupIndex": 0,
  2486. "_id": "cdlko77JVIj7554dyAeHL2"
  2487. },
  2488. {
  2489. "__type__": "cc.Sprite",
  2490. "_name": "",
  2491. "_objFlags": 0,
  2492. "node": {
  2493. "__id__": 65
  2494. },
  2495. "_enabled": true,
  2496. "_materials": [
  2497. {
  2498. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2499. }
  2500. ],
  2501. "_srcBlendFactor": 770,
  2502. "_dstBlendFactor": 771,
  2503. "_spriteFrame": {
  2504. "__uuid__": "79648af4-d7ef-40c5-8a94-511bfecf5bfb"
  2505. },
  2506. "_type": 1,
  2507. "_sizeMode": 0,
  2508. "_fillType": 0,
  2509. "_fillCenter": {
  2510. "__type__": "cc.Vec2",
  2511. "x": 0,
  2512. "y": 0
  2513. },
  2514. "_fillStart": 0,
  2515. "_fillRange": 0,
  2516. "_isTrimmedMode": true,
  2517. "_atlas": null,
  2518. "_id": "ed89ObzC1ACqbXZ+GaLYRi"
  2519. },
  2520. {
  2521. "__type__": "cc.Sprite",
  2522. "_name": "",
  2523. "_objFlags": 0,
  2524. "node": {
  2525. "__id__": 62
  2526. },
  2527. "_enabled": true,
  2528. "_materials": [
  2529. {
  2530. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2531. }
  2532. ],
  2533. "_srcBlendFactor": 770,
  2534. "_dstBlendFactor": 771,
  2535. "_spriteFrame": {
  2536. "__uuid__": "f3604a7e-c0d8-4809-a3b9-3fe8887dc977"
  2537. },
  2538. "_type": 1,
  2539. "_sizeMode": 0,
  2540. "_fillType": 0,
  2541. "_fillCenter": {
  2542. "__type__": "cc.Vec2",
  2543. "x": 0,
  2544. "y": 0
  2545. },
  2546. "_fillStart": 0,
  2547. "_fillRange": 0,
  2548. "_isTrimmedMode": true,
  2549. "_atlas": null,
  2550. "_id": "63JHB9Am9PGZx4fAQIKWlO"
  2551. },
  2552. {
  2553. "__type__": "cc.ProgressBar",
  2554. "_name": "",
  2555. "_objFlags": 0,
  2556. "node": {
  2557. "__id__": 62
  2558. },
  2559. "_enabled": true,
  2560. "_N$totalLength": 200,
  2561. "_N$barSprite": {
  2562. "__id__": 64
  2563. },
  2564. "_N$mode": 0,
  2565. "_N$progress": 1,
  2566. "_N$reverse": false,
  2567. "_id": "fablaV5lRI9r1kB+GJpl6S"
  2568. },
  2569. {
  2570. "__type__": "cc.Node",
  2571. "_name": "DiamondNode@Node",
  2572. "_objFlags": 0,
  2573. "_parent": {
  2574. "__id__": 61
  2575. },
  2576. "_children": [],
  2577. "_active": false,
  2578. "_components": [
  2579. {
  2580. "__id__": 70
  2581. },
  2582. {
  2583. "__id__": 71
  2584. }
  2585. ],
  2586. "_prefab": null,
  2587. "_opacity": 255,
  2588. "_color": {
  2589. "__type__": "cc.Color",
  2590. "r": 255,
  2591. "g": 255,
  2592. "b": 255,
  2593. "a": 255
  2594. },
  2595. "_contentSize": {
  2596. "__type__": "cc.Size",
  2597. "width": 64,
  2598. "height": 53
  2599. },
  2600. "_anchorPoint": {
  2601. "__type__": "cc.Vec2",
  2602. "x": 0.5,
  2603. "y": 0.5
  2604. },
  2605. "_trs": {
  2606. "__type__": "TypedArray",
  2607. "ctor": "Float64Array",
  2608. "array": [
  2609. 96.256,
  2610. 6.608,
  2611. 0,
  2612. 0,
  2613. 0,
  2614. 0,
  2615. 1,
  2616. 0.6,
  2617. 0.65,
  2618. 1
  2619. ]
  2620. },
  2621. "_eulerAngles": {
  2622. "__type__": "cc.Vec3",
  2623. "x": 0,
  2624. "y": 0,
  2625. "z": 0
  2626. },
  2627. "_skewX": 0,
  2628. "_skewY": 0,
  2629. "_is3DNode": false,
  2630. "_groupIndex": 0,
  2631. "groupIndex": 0,
  2632. "_id": "00f5+6+LBG0p2ysyLy7IWb"
  2633. },
  2634. {
  2635. "__type__": "cc.Sprite",
  2636. "_name": "",
  2637. "_objFlags": 0,
  2638. "node": {
  2639. "__id__": 69
  2640. },
  2641. "_enabled": true,
  2642. "_materials": [
  2643. {
  2644. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2645. }
  2646. ],
  2647. "_srcBlendFactor": 770,
  2648. "_dstBlendFactor": 771,
  2649. "_spriteFrame": {
  2650. "__uuid__": "75d8b763-f475-41c9-9366-44165d4dff32"
  2651. },
  2652. "_type": 0,
  2653. "_sizeMode": 1,
  2654. "_fillType": 0,
  2655. "_fillCenter": {
  2656. "__type__": "cc.Vec2",
  2657. "x": 0,
  2658. "y": 0
  2659. },
  2660. "_fillStart": 0,
  2661. "_fillRange": 0,
  2662. "_isTrimmedMode": true,
  2663. "_atlas": null,
  2664. "_id": "d5bcscDAxMuKJXWGLJA8BP"
  2665. },
  2666. {
  2667. "__type__": "095c24gWrtFE4ERcaFCHYSJ",
  2668. "_name": "",
  2669. "_objFlags": 0,
  2670. "node": {
  2671. "__id__": 69
  2672. },
  2673. "_enabled": true,
  2674. "_systemIndex": "LV_UP_DIAMOND",
  2675. "lock": null,
  2676. "unlock": null,
  2677. "graySprites": [],
  2678. "showType": 0,
  2679. "isPlay": true,
  2680. "_id": "5djiDyS4RA9ZCW0WQG3CHr"
  2681. },
  2682. {
  2683. "__type__": "cc.Node",
  2684. "_name": "icon",
  2685. "_objFlags": 0,
  2686. "_parent": {
  2687. "__id__": 61
  2688. },
  2689. "_children": [],
  2690. "_active": true,
  2691. "_components": [
  2692. {
  2693. "__id__": 73
  2694. }
  2695. ],
  2696. "_prefab": null,
  2697. "_opacity": 255,
  2698. "_color": {
  2699. "__type__": "cc.Color",
  2700. "r": 255,
  2701. "g": 255,
  2702. "b": 255,
  2703. "a": 255
  2704. },
  2705. "_contentSize": {
  2706. "__type__": "cc.Size",
  2707. "width": 35,
  2708. "height": 35
  2709. },
  2710. "_anchorPoint": {
  2711. "__type__": "cc.Vec2",
  2712. "x": 0.5,
  2713. "y": 0.5
  2714. },
  2715. "_trs": {
  2716. "__type__": "TypedArray",
  2717. "ctor": "Float64Array",
  2718. "array": [
  2719. -81,
  2720. -36.394,
  2721. 0,
  2722. 0,
  2723. 0,
  2724. 0,
  2725. 1,
  2726. 1,
  2727. 1,
  2728. 1
  2729. ]
  2730. },
  2731. "_eulerAngles": {
  2732. "__type__": "cc.Vec3",
  2733. "x": 0,
  2734. "y": 0,
  2735. "z": 0
  2736. },
  2737. "_skewX": 0,
  2738. "_skewY": 0,
  2739. "_is3DNode": false,
  2740. "_groupIndex": 0,
  2741. "groupIndex": 0,
  2742. "_id": "27hmsktTFP3pf7cpekB/pY"
  2743. },
  2744. {
  2745. "__type__": "cc.Sprite",
  2746. "_name": "",
  2747. "_objFlags": 0,
  2748. "node": {
  2749. "__id__": 72
  2750. },
  2751. "_enabled": true,
  2752. "_materials": [
  2753. {
  2754. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2755. }
  2756. ],
  2757. "_srcBlendFactor": 770,
  2758. "_dstBlendFactor": 771,
  2759. "_spriteFrame": {
  2760. "__uuid__": "1d8aafc2-695e-4d3e-b22f-e63a2ae6d496"
  2761. },
  2762. "_type": 0,
  2763. "_sizeMode": 0,
  2764. "_fillType": 0,
  2765. "_fillCenter": {
  2766. "__type__": "cc.Vec2",
  2767. "x": 0,
  2768. "y": 0
  2769. },
  2770. "_fillStart": 0,
  2771. "_fillRange": 0,
  2772. "_isTrimmedMode": true,
  2773. "_atlas": null,
  2774. "_id": "fe4139qSdNh41eqh8Fq0c6"
  2775. },
  2776. {
  2777. "__type__": "cc.Node",
  2778. "_name": "StarList@Node",
  2779. "_objFlags": 0,
  2780. "_parent": {
  2781. "__id__": 61
  2782. },
  2783. "_children": [
  2784. {
  2785. "__id__": 75
  2786. },
  2787. {
  2788. "__id__": 79
  2789. },
  2790. {
  2791. "__id__": 83
  2792. },
  2793. {
  2794. "__id__": 87
  2795. },
  2796. {
  2797. "__id__": 91
  2798. }
  2799. ],
  2800. "_active": true,
  2801. "_components": [
  2802. {
  2803. "__id__": 95
  2804. }
  2805. ],
  2806. "_prefab": null,
  2807. "_opacity": 255,
  2808. "_color": {
  2809. "__type__": "cc.Color",
  2810. "r": 255,
  2811. "g": 255,
  2812. "b": 255,
  2813. "a": 255
  2814. },
  2815. "_contentSize": {
  2816. "__type__": "cc.Size",
  2817. "width": 174,
  2818. "height": 31
  2819. },
  2820. "_anchorPoint": {
  2821. "__type__": "cc.Vec2",
  2822. "x": 0.5,
  2823. "y": 0.5
  2824. },
  2825. "_trs": {
  2826. "__type__": "TypedArray",
  2827. "ctor": "Float64Array",
  2828. "array": [
  2829. 0,
  2830. 47.449,
  2831. 0,
  2832. 0,
  2833. 0,
  2834. 0,
  2835. 1,
  2836. 1,
  2837. 1,
  2838. 1
  2839. ]
  2840. },
  2841. "_eulerAngles": {
  2842. "__type__": "cc.Vec3",
  2843. "x": 0,
  2844. "y": 0,
  2845. "z": 0
  2846. },
  2847. "_skewX": 0,
  2848. "_skewY": 0,
  2849. "_is3DNode": false,
  2850. "_groupIndex": 0,
  2851. "groupIndex": 0,
  2852. "_id": "8ap0/j4l5LqpMBeBTnuYTH"
  2853. },
  2854. {
  2855. "__type__": "cc.Node",
  2856. "_name": "star",
  2857. "_objFlags": 0,
  2858. "_parent": {
  2859. "__id__": 74
  2860. },
  2861. "_children": [
  2862. {
  2863. "__id__": 76
  2864. }
  2865. ],
  2866. "_active": true,
  2867. "_components": [
  2868. {
  2869. "__id__": 78
  2870. }
  2871. ],
  2872. "_prefab": null,
  2873. "_opacity": 255,
  2874. "_color": {
  2875. "__type__": "cc.Color",
  2876. "r": 255,
  2877. "g": 255,
  2878. "b": 255,
  2879. "a": 255
  2880. },
  2881. "_contentSize": {
  2882. "__type__": "cc.Size",
  2883. "width": 30,
  2884. "height": 31
  2885. },
  2886. "_anchorPoint": {
  2887. "__type__": "cc.Vec2",
  2888. "x": 0.5,
  2889. "y": 0.5
  2890. },
  2891. "_trs": {
  2892. "__type__": "TypedArray",
  2893. "ctor": "Float64Array",
  2894. "array": [
  2895. -72,
  2896. 0,
  2897. 0,
  2898. 0,
  2899. 0,
  2900. 0,
  2901. 1,
  2902. 1,
  2903. 1,
  2904. 1
  2905. ]
  2906. },
  2907. "_eulerAngles": {
  2908. "__type__": "cc.Vec3",
  2909. "x": 0,
  2910. "y": 0,
  2911. "z": 0
  2912. },
  2913. "_skewX": 0,
  2914. "_skewY": 0,
  2915. "_is3DNode": false,
  2916. "_groupIndex": 0,
  2917. "groupIndex": 0,
  2918. "_id": "83SCHsKwNLcYD9TLCa6xiL"
  2919. },
  2920. {
  2921. "__type__": "cc.Node",
  2922. "_name": "tb_17",
  2923. "_objFlags": 0,
  2924. "_parent": {
  2925. "__id__": 75
  2926. },
  2927. "_children": [],
  2928. "_active": true,
  2929. "_components": [
  2930. {
  2931. "__id__": 77
  2932. }
  2933. ],
  2934. "_prefab": null,
  2935. "_opacity": 255,
  2936. "_color": {
  2937. "__type__": "cc.Color",
  2938. "r": 255,
  2939. "g": 255,
  2940. "b": 255,
  2941. "a": 255
  2942. },
  2943. "_contentSize": {
  2944. "__type__": "cc.Size",
  2945. "width": 24,
  2946. "height": 24
  2947. },
  2948. "_anchorPoint": {
  2949. "__type__": "cc.Vec2",
  2950. "x": 0.5,
  2951. "y": 0.5
  2952. },
  2953. "_trs": {
  2954. "__type__": "TypedArray",
  2955. "ctor": "Float64Array",
  2956. "array": [
  2957. 0,
  2958. 0,
  2959. 0,
  2960. 0,
  2961. 0,
  2962. 0,
  2963. 1,
  2964. 1,
  2965. 1,
  2966. 1
  2967. ]
  2968. },
  2969. "_eulerAngles": {
  2970. "__type__": "cc.Vec3",
  2971. "x": 0,
  2972. "y": 0,
  2973. "z": 0
  2974. },
  2975. "_skewX": 0,
  2976. "_skewY": 0,
  2977. "_is3DNode": false,
  2978. "_groupIndex": 0,
  2979. "groupIndex": 0,
  2980. "_id": "eeFwFCTXhBtbHp4LIECRWy"
  2981. },
  2982. {
  2983. "__type__": "cc.Sprite",
  2984. "_name": "",
  2985. "_objFlags": 0,
  2986. "node": {
  2987. "__id__": 76
  2988. },
  2989. "_enabled": true,
  2990. "_materials": [
  2991. {
  2992. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2993. }
  2994. ],
  2995. "_srcBlendFactor": 770,
  2996. "_dstBlendFactor": 771,
  2997. "_spriteFrame": {
  2998. "__uuid__": "23c3d8f4-ba4f-4dd1-86ab-ed5299547fad"
  2999. },
  3000. "_type": 0,
  3001. "_sizeMode": 1,
  3002. "_fillType": 0,
  3003. "_fillCenter": {
  3004. "__type__": "cc.Vec2",
  3005. "x": 0,
  3006. "y": 0
  3007. },
  3008. "_fillStart": 0,
  3009. "_fillRange": 0,
  3010. "_isTrimmedMode": true,
  3011. "_atlas": null,
  3012. "_id": "42diqLACtOQ5TcFV0oAeDG"
  3013. },
  3014. {
  3015. "__type__": "cc.Sprite",
  3016. "_name": "",
  3017. "_objFlags": 0,
  3018. "node": {
  3019. "__id__": 75
  3020. },
  3021. "_enabled": true,
  3022. "_materials": [
  3023. {
  3024. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3025. }
  3026. ],
  3027. "_srcBlendFactor": 770,
  3028. "_dstBlendFactor": 771,
  3029. "_spriteFrame": {
  3030. "__uuid__": "5a9483cc-25e7-4bf7-a7c0-bdea8b989f78"
  3031. },
  3032. "_type": 0,
  3033. "_sizeMode": 1,
  3034. "_fillType": 0,
  3035. "_fillCenter": {
  3036. "__type__": "cc.Vec2",
  3037. "x": 0,
  3038. "y": 0
  3039. },
  3040. "_fillStart": 0,
  3041. "_fillRange": 0,
  3042. "_isTrimmedMode": true,
  3043. "_atlas": null,
  3044. "_id": "69uGuBdR9BIJhCnirFSR6r"
  3045. },
  3046. {
  3047. "__type__": "cc.Node",
  3048. "_name": "star",
  3049. "_objFlags": 0,
  3050. "_parent": {
  3051. "__id__": 74
  3052. },
  3053. "_children": [
  3054. {
  3055. "__id__": 80
  3056. }
  3057. ],
  3058. "_active": true,
  3059. "_components": [
  3060. {
  3061. "__id__": 82
  3062. }
  3063. ],
  3064. "_prefab": null,
  3065. "_opacity": 255,
  3066. "_color": {
  3067. "__type__": "cc.Color",
  3068. "r": 255,
  3069. "g": 255,
  3070. "b": 255,
  3071. "a": 255
  3072. },
  3073. "_contentSize": {
  3074. "__type__": "cc.Size",
  3075. "width": 30,
  3076. "height": 31
  3077. },
  3078. "_anchorPoint": {
  3079. "__type__": "cc.Vec2",
  3080. "x": 0.5,
  3081. "y": 0.5
  3082. },
  3083. "_trs": {
  3084. "__type__": "TypedArray",
  3085. "ctor": "Float64Array",
  3086. "array": [
  3087. -36,
  3088. 0,
  3089. 0,
  3090. 0,
  3091. 0,
  3092. 0,
  3093. 1,
  3094. 1,
  3095. 1,
  3096. 1
  3097. ]
  3098. },
  3099. "_eulerAngles": {
  3100. "__type__": "cc.Vec3",
  3101. "x": 0,
  3102. "y": 0,
  3103. "z": 0
  3104. },
  3105. "_skewX": 0,
  3106. "_skewY": 0,
  3107. "_is3DNode": false,
  3108. "_groupIndex": 0,
  3109. "groupIndex": 0,
  3110. "_id": "c3Is6HouBPco/CFsrxqb01"
  3111. },
  3112. {
  3113. "__type__": "cc.Node",
  3114. "_name": "tb_17",
  3115. "_objFlags": 0,
  3116. "_parent": {
  3117. "__id__": 79
  3118. },
  3119. "_children": [],
  3120. "_active": true,
  3121. "_components": [
  3122. {
  3123. "__id__": 81
  3124. }
  3125. ],
  3126. "_prefab": null,
  3127. "_opacity": 255,
  3128. "_color": {
  3129. "__type__": "cc.Color",
  3130. "r": 255,
  3131. "g": 255,
  3132. "b": 255,
  3133. "a": 255
  3134. },
  3135. "_contentSize": {
  3136. "__type__": "cc.Size",
  3137. "width": 24,
  3138. "height": 24
  3139. },
  3140. "_anchorPoint": {
  3141. "__type__": "cc.Vec2",
  3142. "x": 0.5,
  3143. "y": 0.5
  3144. },
  3145. "_trs": {
  3146. "__type__": "TypedArray",
  3147. "ctor": "Float64Array",
  3148. "array": [
  3149. 0,
  3150. 0,
  3151. 0,
  3152. 0,
  3153. 0,
  3154. 0,
  3155. 1,
  3156. 1,
  3157. 1,
  3158. 1
  3159. ]
  3160. },
  3161. "_eulerAngles": {
  3162. "__type__": "cc.Vec3",
  3163. "x": 0,
  3164. "y": 0,
  3165. "z": 0
  3166. },
  3167. "_skewX": 0,
  3168. "_skewY": 0,
  3169. "_is3DNode": false,
  3170. "_groupIndex": 0,
  3171. "groupIndex": 0,
  3172. "_id": "51bKjcI0JEwKlweO1jC5+L"
  3173. },
  3174. {
  3175. "__type__": "cc.Sprite",
  3176. "_name": "",
  3177. "_objFlags": 0,
  3178. "node": {
  3179. "__id__": 80
  3180. },
  3181. "_enabled": true,
  3182. "_materials": [
  3183. {
  3184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3185. }
  3186. ],
  3187. "_srcBlendFactor": 770,
  3188. "_dstBlendFactor": 771,
  3189. "_spriteFrame": {
  3190. "__uuid__": "23c3d8f4-ba4f-4dd1-86ab-ed5299547fad"
  3191. },
  3192. "_type": 0,
  3193. "_sizeMode": 1,
  3194. "_fillType": 0,
  3195. "_fillCenter": {
  3196. "__type__": "cc.Vec2",
  3197. "x": 0,
  3198. "y": 0
  3199. },
  3200. "_fillStart": 0,
  3201. "_fillRange": 0,
  3202. "_isTrimmedMode": true,
  3203. "_atlas": null,
  3204. "_id": "c6zsy3759MSJciyXZIKHe9"
  3205. },
  3206. {
  3207. "__type__": "cc.Sprite",
  3208. "_name": "",
  3209. "_objFlags": 0,
  3210. "node": {
  3211. "__id__": 79
  3212. },
  3213. "_enabled": true,
  3214. "_materials": [
  3215. {
  3216. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3217. }
  3218. ],
  3219. "_srcBlendFactor": 770,
  3220. "_dstBlendFactor": 771,
  3221. "_spriteFrame": {
  3222. "__uuid__": "5a9483cc-25e7-4bf7-a7c0-bdea8b989f78"
  3223. },
  3224. "_type": 0,
  3225. "_sizeMode": 1,
  3226. "_fillType": 0,
  3227. "_fillCenter": {
  3228. "__type__": "cc.Vec2",
  3229. "x": 0,
  3230. "y": 0
  3231. },
  3232. "_fillStart": 0,
  3233. "_fillRange": 0,
  3234. "_isTrimmedMode": true,
  3235. "_atlas": null,
  3236. "_id": "f5aBPirRpNg7sm1QxqV+4r"
  3237. },
  3238. {
  3239. "__type__": "cc.Node",
  3240. "_name": "star",
  3241. "_objFlags": 0,
  3242. "_parent": {
  3243. "__id__": 74
  3244. },
  3245. "_children": [
  3246. {
  3247. "__id__": 84
  3248. }
  3249. ],
  3250. "_active": true,
  3251. "_components": [
  3252. {
  3253. "__id__": 86
  3254. }
  3255. ],
  3256. "_prefab": null,
  3257. "_opacity": 255,
  3258. "_color": {
  3259. "__type__": "cc.Color",
  3260. "r": 255,
  3261. "g": 255,
  3262. "b": 255,
  3263. "a": 255
  3264. },
  3265. "_contentSize": {
  3266. "__type__": "cc.Size",
  3267. "width": 30,
  3268. "height": 31
  3269. },
  3270. "_anchorPoint": {
  3271. "__type__": "cc.Vec2",
  3272. "x": 0.5,
  3273. "y": 0.5
  3274. },
  3275. "_trs": {
  3276. "__type__": "TypedArray",
  3277. "ctor": "Float64Array",
  3278. "array": [
  3279. 0,
  3280. 0,
  3281. 0,
  3282. 0,
  3283. 0,
  3284. 0,
  3285. 1,
  3286. 1,
  3287. 1,
  3288. 1
  3289. ]
  3290. },
  3291. "_eulerAngles": {
  3292. "__type__": "cc.Vec3",
  3293. "x": 0,
  3294. "y": 0,
  3295. "z": 0
  3296. },
  3297. "_skewX": 0,
  3298. "_skewY": 0,
  3299. "_is3DNode": false,
  3300. "_groupIndex": 0,
  3301. "groupIndex": 0,
  3302. "_id": "ca2ETJzohFPr3zCex5Q2Vd"
  3303. },
  3304. {
  3305. "__type__": "cc.Node",
  3306. "_name": "tb_17",
  3307. "_objFlags": 0,
  3308. "_parent": {
  3309. "__id__": 83
  3310. },
  3311. "_children": [],
  3312. "_active": true,
  3313. "_components": [
  3314. {
  3315. "__id__": 85
  3316. }
  3317. ],
  3318. "_prefab": null,
  3319. "_opacity": 255,
  3320. "_color": {
  3321. "__type__": "cc.Color",
  3322. "r": 255,
  3323. "g": 255,
  3324. "b": 255,
  3325. "a": 255
  3326. },
  3327. "_contentSize": {
  3328. "__type__": "cc.Size",
  3329. "width": 24,
  3330. "height": 24
  3331. },
  3332. "_anchorPoint": {
  3333. "__type__": "cc.Vec2",
  3334. "x": 0.5,
  3335. "y": 0.5
  3336. },
  3337. "_trs": {
  3338. "__type__": "TypedArray",
  3339. "ctor": "Float64Array",
  3340. "array": [
  3341. 0,
  3342. 0,
  3343. 0,
  3344. 0,
  3345. 0,
  3346. 0,
  3347. 1,
  3348. 1,
  3349. 1,
  3350. 1
  3351. ]
  3352. },
  3353. "_eulerAngles": {
  3354. "__type__": "cc.Vec3",
  3355. "x": 0,
  3356. "y": 0,
  3357. "z": 0
  3358. },
  3359. "_skewX": 0,
  3360. "_skewY": 0,
  3361. "_is3DNode": false,
  3362. "_groupIndex": 0,
  3363. "groupIndex": 0,
  3364. "_id": "94qJGIodhIp7ey1J/qu3fM"
  3365. },
  3366. {
  3367. "__type__": "cc.Sprite",
  3368. "_name": "",
  3369. "_objFlags": 0,
  3370. "node": {
  3371. "__id__": 84
  3372. },
  3373. "_enabled": true,
  3374. "_materials": [
  3375. {
  3376. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3377. }
  3378. ],
  3379. "_srcBlendFactor": 770,
  3380. "_dstBlendFactor": 771,
  3381. "_spriteFrame": {
  3382. "__uuid__": "23c3d8f4-ba4f-4dd1-86ab-ed5299547fad"
  3383. },
  3384. "_type": 0,
  3385. "_sizeMode": 1,
  3386. "_fillType": 0,
  3387. "_fillCenter": {
  3388. "__type__": "cc.Vec2",
  3389. "x": 0,
  3390. "y": 0
  3391. },
  3392. "_fillStart": 0,
  3393. "_fillRange": 0,
  3394. "_isTrimmedMode": true,
  3395. "_atlas": null,
  3396. "_id": "0fD24ObWFHVo6NdtpTL+uW"
  3397. },
  3398. {
  3399. "__type__": "cc.Sprite",
  3400. "_name": "",
  3401. "_objFlags": 0,
  3402. "node": {
  3403. "__id__": 83
  3404. },
  3405. "_enabled": true,
  3406. "_materials": [
  3407. {
  3408. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3409. }
  3410. ],
  3411. "_srcBlendFactor": 770,
  3412. "_dstBlendFactor": 771,
  3413. "_spriteFrame": {
  3414. "__uuid__": "5a9483cc-25e7-4bf7-a7c0-bdea8b989f78"
  3415. },
  3416. "_type": 0,
  3417. "_sizeMode": 1,
  3418. "_fillType": 0,
  3419. "_fillCenter": {
  3420. "__type__": "cc.Vec2",
  3421. "x": 0,
  3422. "y": 0
  3423. },
  3424. "_fillStart": 0,
  3425. "_fillRange": 0,
  3426. "_isTrimmedMode": true,
  3427. "_atlas": null,
  3428. "_id": "739mom8X1Dg4/JVGLsoh3V"
  3429. },
  3430. {
  3431. "__type__": "cc.Node",
  3432. "_name": "star",
  3433. "_objFlags": 0,
  3434. "_parent": {
  3435. "__id__": 74
  3436. },
  3437. "_children": [
  3438. {
  3439. "__id__": 88
  3440. }
  3441. ],
  3442. "_active": true,
  3443. "_components": [
  3444. {
  3445. "__id__": 90
  3446. }
  3447. ],
  3448. "_prefab": null,
  3449. "_opacity": 255,
  3450. "_color": {
  3451. "__type__": "cc.Color",
  3452. "r": 255,
  3453. "g": 255,
  3454. "b": 255,
  3455. "a": 255
  3456. },
  3457. "_contentSize": {
  3458. "__type__": "cc.Size",
  3459. "width": 30,
  3460. "height": 31
  3461. },
  3462. "_anchorPoint": {
  3463. "__type__": "cc.Vec2",
  3464. "x": 0.5,
  3465. "y": 0.5
  3466. },
  3467. "_trs": {
  3468. "__type__": "TypedArray",
  3469. "ctor": "Float64Array",
  3470. "array": [
  3471. 36,
  3472. 0,
  3473. 0,
  3474. 0,
  3475. 0,
  3476. 0,
  3477. 1,
  3478. 1,
  3479. 1,
  3480. 1
  3481. ]
  3482. },
  3483. "_eulerAngles": {
  3484. "__type__": "cc.Vec3",
  3485. "x": 0,
  3486. "y": 0,
  3487. "z": 0
  3488. },
  3489. "_skewX": 0,
  3490. "_skewY": 0,
  3491. "_is3DNode": false,
  3492. "_groupIndex": 0,
  3493. "groupIndex": 0,
  3494. "_id": "d8b2xx9wZP/JaTgcLAK/Mo"
  3495. },
  3496. {
  3497. "__type__": "cc.Node",
  3498. "_name": "tb_17",
  3499. "_objFlags": 0,
  3500. "_parent": {
  3501. "__id__": 87
  3502. },
  3503. "_children": [],
  3504. "_active": true,
  3505. "_components": [
  3506. {
  3507. "__id__": 89
  3508. }
  3509. ],
  3510. "_prefab": null,
  3511. "_opacity": 255,
  3512. "_color": {
  3513. "__type__": "cc.Color",
  3514. "r": 255,
  3515. "g": 255,
  3516. "b": 255,
  3517. "a": 255
  3518. },
  3519. "_contentSize": {
  3520. "__type__": "cc.Size",
  3521. "width": 24,
  3522. "height": 24
  3523. },
  3524. "_anchorPoint": {
  3525. "__type__": "cc.Vec2",
  3526. "x": 0.5,
  3527. "y": 0.5
  3528. },
  3529. "_trs": {
  3530. "__type__": "TypedArray",
  3531. "ctor": "Float64Array",
  3532. "array": [
  3533. 0,
  3534. 0,
  3535. 0,
  3536. 0,
  3537. 0,
  3538. 0,
  3539. 1,
  3540. 1,
  3541. 1,
  3542. 1
  3543. ]
  3544. },
  3545. "_eulerAngles": {
  3546. "__type__": "cc.Vec3",
  3547. "x": 0,
  3548. "y": 0,
  3549. "z": 0
  3550. },
  3551. "_skewX": 0,
  3552. "_skewY": 0,
  3553. "_is3DNode": false,
  3554. "_groupIndex": 0,
  3555. "groupIndex": 0,
  3556. "_id": "c3a2jYMwROlKApvU5EICQm"
  3557. },
  3558. {
  3559. "__type__": "cc.Sprite",
  3560. "_name": "",
  3561. "_objFlags": 0,
  3562. "node": {
  3563. "__id__": 88
  3564. },
  3565. "_enabled": true,
  3566. "_materials": [
  3567. {
  3568. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3569. }
  3570. ],
  3571. "_srcBlendFactor": 770,
  3572. "_dstBlendFactor": 771,
  3573. "_spriteFrame": {
  3574. "__uuid__": "23c3d8f4-ba4f-4dd1-86ab-ed5299547fad"
  3575. },
  3576. "_type": 0,
  3577. "_sizeMode": 1,
  3578. "_fillType": 0,
  3579. "_fillCenter": {
  3580. "__type__": "cc.Vec2",
  3581. "x": 0,
  3582. "y": 0
  3583. },
  3584. "_fillStart": 0,
  3585. "_fillRange": 0,
  3586. "_isTrimmedMode": true,
  3587. "_atlas": null,
  3588. "_id": "cagEAukAZNQYWplc9vvj5a"
  3589. },
  3590. {
  3591. "__type__": "cc.Sprite",
  3592. "_name": "",
  3593. "_objFlags": 0,
  3594. "node": {
  3595. "__id__": 87
  3596. },
  3597. "_enabled": true,
  3598. "_materials": [
  3599. {
  3600. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3601. }
  3602. ],
  3603. "_srcBlendFactor": 770,
  3604. "_dstBlendFactor": 771,
  3605. "_spriteFrame": {
  3606. "__uuid__": "5a9483cc-25e7-4bf7-a7c0-bdea8b989f78"
  3607. },
  3608. "_type": 0,
  3609. "_sizeMode": 1,
  3610. "_fillType": 0,
  3611. "_fillCenter": {
  3612. "__type__": "cc.Vec2",
  3613. "x": 0,
  3614. "y": 0
  3615. },
  3616. "_fillStart": 0,
  3617. "_fillRange": 0,
  3618. "_isTrimmedMode": true,
  3619. "_atlas": null,
  3620. "_id": "d9eSuBXvxMCoSqjaoZUav6"
  3621. },
  3622. {
  3623. "__type__": "cc.Node",
  3624. "_name": "star",
  3625. "_objFlags": 0,
  3626. "_parent": {
  3627. "__id__": 74
  3628. },
  3629. "_children": [
  3630. {
  3631. "__id__": 92
  3632. }
  3633. ],
  3634. "_active": true,
  3635. "_components": [
  3636. {
  3637. "__id__": 94
  3638. }
  3639. ],
  3640. "_prefab": null,
  3641. "_opacity": 255,
  3642. "_color": {
  3643. "__type__": "cc.Color",
  3644. "r": 255,
  3645. "g": 255,
  3646. "b": 255,
  3647. "a": 255
  3648. },
  3649. "_contentSize": {
  3650. "__type__": "cc.Size",
  3651. "width": 30,
  3652. "height": 31
  3653. },
  3654. "_anchorPoint": {
  3655. "__type__": "cc.Vec2",
  3656. "x": 0.5,
  3657. "y": 0.5
  3658. },
  3659. "_trs": {
  3660. "__type__": "TypedArray",
  3661. "ctor": "Float64Array",
  3662. "array": [
  3663. 72,
  3664. 0,
  3665. 0,
  3666. 0,
  3667. 0,
  3668. 0,
  3669. 1,
  3670. 1,
  3671. 1,
  3672. 1
  3673. ]
  3674. },
  3675. "_eulerAngles": {
  3676. "__type__": "cc.Vec3",
  3677. "x": 0,
  3678. "y": 0,
  3679. "z": 0
  3680. },
  3681. "_skewX": 0,
  3682. "_skewY": 0,
  3683. "_is3DNode": false,
  3684. "_groupIndex": 0,
  3685. "groupIndex": 0,
  3686. "_id": "a8osKnqadI+b4OG8Fy0LNj"
  3687. },
  3688. {
  3689. "__type__": "cc.Node",
  3690. "_name": "tb_17",
  3691. "_objFlags": 0,
  3692. "_parent": {
  3693. "__id__": 91
  3694. },
  3695. "_children": [],
  3696. "_active": true,
  3697. "_components": [
  3698. {
  3699. "__id__": 93
  3700. }
  3701. ],
  3702. "_prefab": null,
  3703. "_opacity": 255,
  3704. "_color": {
  3705. "__type__": "cc.Color",
  3706. "r": 255,
  3707. "g": 255,
  3708. "b": 255,
  3709. "a": 255
  3710. },
  3711. "_contentSize": {
  3712. "__type__": "cc.Size",
  3713. "width": 24,
  3714. "height": 24
  3715. },
  3716. "_anchorPoint": {
  3717. "__type__": "cc.Vec2",
  3718. "x": 0.5,
  3719. "y": 0.5
  3720. },
  3721. "_trs": {
  3722. "__type__": "TypedArray",
  3723. "ctor": "Float64Array",
  3724. "array": [
  3725. 0,
  3726. 0,
  3727. 0,
  3728. 0,
  3729. 0,
  3730. 0,
  3731. 1,
  3732. 1,
  3733. 1,
  3734. 1
  3735. ]
  3736. },
  3737. "_eulerAngles": {
  3738. "__type__": "cc.Vec3",
  3739. "x": 0,
  3740. "y": 0,
  3741. "z": 0
  3742. },
  3743. "_skewX": 0,
  3744. "_skewY": 0,
  3745. "_is3DNode": false,
  3746. "_groupIndex": 0,
  3747. "groupIndex": 0,
  3748. "_id": "deGuXyM6RDjYO+NlxUfzap"
  3749. },
  3750. {
  3751. "__type__": "cc.Sprite",
  3752. "_name": "",
  3753. "_objFlags": 0,
  3754. "node": {
  3755. "__id__": 92
  3756. },
  3757. "_enabled": true,
  3758. "_materials": [
  3759. {
  3760. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3761. }
  3762. ],
  3763. "_srcBlendFactor": 770,
  3764. "_dstBlendFactor": 771,
  3765. "_spriteFrame": {
  3766. "__uuid__": "23c3d8f4-ba4f-4dd1-86ab-ed5299547fad"
  3767. },
  3768. "_type": 0,
  3769. "_sizeMode": 1,
  3770. "_fillType": 0,
  3771. "_fillCenter": {
  3772. "__type__": "cc.Vec2",
  3773. "x": 0,
  3774. "y": 0
  3775. },
  3776. "_fillStart": 0,
  3777. "_fillRange": 0,
  3778. "_isTrimmedMode": true,
  3779. "_atlas": null,
  3780. "_id": "78BCJK7VpPxov1JerMVFg1"
  3781. },
  3782. {
  3783. "__type__": "cc.Sprite",
  3784. "_name": "",
  3785. "_objFlags": 0,
  3786. "node": {
  3787. "__id__": 91
  3788. },
  3789. "_enabled": true,
  3790. "_materials": [
  3791. {
  3792. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3793. }
  3794. ],
  3795. "_srcBlendFactor": 770,
  3796. "_dstBlendFactor": 771,
  3797. "_spriteFrame": {
  3798. "__uuid__": "5a9483cc-25e7-4bf7-a7c0-bdea8b989f78"
  3799. },
  3800. "_type": 0,
  3801. "_sizeMode": 1,
  3802. "_fillType": 0,
  3803. "_fillCenter": {
  3804. "__type__": "cc.Vec2",
  3805. "x": 0,
  3806. "y": 0
  3807. },
  3808. "_fillStart": 0,
  3809. "_fillRange": 0,
  3810. "_isTrimmedMode": true,
  3811. "_atlas": null,
  3812. "_id": "65FX0RvQZFAZPEJ2UwjuR6"
  3813. },
  3814. {
  3815. "__type__": "cc.Layout",
  3816. "_name": "",
  3817. "_objFlags": 0,
  3818. "node": {
  3819. "__id__": 74
  3820. },
  3821. "_enabled": true,
  3822. "_layoutSize": {
  3823. "__type__": "cc.Size",
  3824. "width": 174,
  3825. "height": 31
  3826. },
  3827. "_resize": 1,
  3828. "_N$layoutType": 1,
  3829. "_N$cellSize": {
  3830. "__type__": "cc.Size",
  3831. "width": 40,
  3832. "height": 40
  3833. },
  3834. "_N$startAxis": 0,
  3835. "_N$paddingLeft": 0,
  3836. "_N$paddingRight": 0,
  3837. "_N$paddingTop": 0,
  3838. "_N$paddingBottom": 0,
  3839. "_N$spacingX": 6,
  3840. "_N$spacingY": 0,
  3841. "_N$verticalDirection": 1,
  3842. "_N$horizontalDirection": 0,
  3843. "_N$affectedByScale": false,
  3844. "_id": "cb6GtGJtZAqboP4jYhH560"
  3845. },
  3846. {
  3847. "__type__": "cc.Node",
  3848. "_name": "icon",
  3849. "_objFlags": 0,
  3850. "_parent": {
  3851. "__id__": 61
  3852. },
  3853. "_children": [],
  3854. "_active": true,
  3855. "_components": [
  3856. {
  3857. "__id__": 97
  3858. }
  3859. ],
  3860. "_prefab": null,
  3861. "_opacity": 255,
  3862. "_color": {
  3863. "__type__": "cc.Color",
  3864. "r": 255,
  3865. "g": 255,
  3866. "b": 255,
  3867. "a": 255
  3868. },
  3869. "_contentSize": {
  3870. "__type__": "cc.Size",
  3871. "width": 68,
  3872. "height": 64
  3873. },
  3874. "_anchorPoint": {
  3875. "__type__": "cc.Vec2",
  3876. "x": 0.5,
  3877. "y": 0.5
  3878. },
  3879. "_trs": {
  3880. "__type__": "TypedArray",
  3881. "ctor": "Float64Array",
  3882. "array": [
  3883. 45.628,
  3884. -32.801,
  3885. 0,
  3886. 0,
  3887. 0,
  3888. 0,
  3889. 1,
  3890. 0.6,
  3891. 0.6,
  3892. 0.6
  3893. ]
  3894. },
  3895. "_eulerAngles": {
  3896. "__type__": "cc.Vec3",
  3897. "x": 0,
  3898. "y": 0,
  3899. "z": 0
  3900. },
  3901. "_skewX": 0,
  3902. "_skewY": 0,
  3903. "_is3DNode": false,
  3904. "_groupIndex": 0,
  3905. "groupIndex": 0,
  3906. "_id": "13fouOA6hEF6YGCfTAySKh"
  3907. },
  3908. {
  3909. "__type__": "cc.Sprite",
  3910. "_name": "",
  3911. "_objFlags": 0,
  3912. "node": {
  3913. "__id__": 96
  3914. },
  3915. "_enabled": true,
  3916. "_materials": [
  3917. {
  3918. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3919. }
  3920. ],
  3921. "_srcBlendFactor": 770,
  3922. "_dstBlendFactor": 771,
  3923. "_spriteFrame": {
  3924. "__uuid__": "7613d7b9-c2c5-4111-8416-279812975e10"
  3925. },
  3926. "_type": 0,
  3927. "_sizeMode": 1,
  3928. "_fillType": 0,
  3929. "_fillCenter": {
  3930. "__type__": "cc.Vec2",
  3931. "x": 0,
  3932. "y": 0
  3933. },
  3934. "_fillStart": 0,
  3935. "_fillRange": 0,
  3936. "_isTrimmedMode": true,
  3937. "_atlas": null,
  3938. "_id": "36+qWhmxBMAbHxMBw71nbw"
  3939. },
  3940. {
  3941. "__type__": "cc.Node",
  3942. "_name": "LvUp@Btn",
  3943. "_objFlags": 0,
  3944. "_parent": {
  3945. "__id__": 61
  3946. },
  3947. "_children": [
  3948. {
  3949. "__id__": 99
  3950. },
  3951. {
  3952. "__id__": 101
  3953. }
  3954. ],
  3955. "_active": true,
  3956. "_components": [
  3957. {
  3958. "__id__": 104
  3959. },
  3960. {
  3961. "__id__": 105
  3962. }
  3963. ],
  3964. "_prefab": null,
  3965. "_opacity": 255,
  3966. "_color": {
  3967. "__type__": "cc.Color",
  3968. "r": 230,
  3969. "g": 230,
  3970. "b": 230,
  3971. "a": 255
  3972. },
  3973. "_contentSize": {
  3974. "__type__": "cc.Size",
  3975. "width": 214,
  3976. "height": 77
  3977. },
  3978. "_anchorPoint": {
  3979. "__type__": "cc.Vec2",
  3980. "x": 0.5,
  3981. "y": 0.5
  3982. },
  3983. "_trs": {
  3984. "__type__": "TypedArray",
  3985. "ctor": "Float64Array",
  3986. "array": [
  3987. 0,
  3988. -99.555,
  3989. 0,
  3990. 0,
  3991. 0,
  3992. 0,
  3993. 1,
  3994. 1,
  3995. 1,
  3996. 1
  3997. ]
  3998. },
  3999. "_eulerAngles": {
  4000. "__type__": "cc.Vec3",
  4001. "x": 0,
  4002. "y": 0,
  4003. "z": 0
  4004. },
  4005. "_skewX": 0,
  4006. "_skewY": 0,
  4007. "_is3DNode": false,
  4008. "_groupIndex": 0,
  4009. "groupIndex": 0,
  4010. "_id": "f453LHr/9BuJ10+TxhNhtW"
  4011. },
  4012. {
  4013. "__type__": "cc.Node",
  4014. "_name": "icon",
  4015. "_objFlags": 0,
  4016. "_parent": {
  4017. "__id__": 98
  4018. },
  4019. "_children": [],
  4020. "_active": true,
  4021. "_components": [
  4022. {
  4023. "__id__": 100
  4024. }
  4025. ],
  4026. "_prefab": null,
  4027. "_opacity": 255,
  4028. "_color": {
  4029. "__type__": "cc.Color",
  4030. "r": 255,
  4031. "g": 255,
  4032. "b": 255,
  4033. "a": 255
  4034. },
  4035. "_contentSize": {
  4036. "__type__": "cc.Size",
  4037. "width": 40,
  4038. "height": 40
  4039. },
  4040. "_anchorPoint": {
  4041. "__type__": "cc.Vec2",
  4042. "x": 0.5,
  4043. "y": 0.5
  4044. },
  4045. "_trs": {
  4046. "__type__": "TypedArray",
  4047. "ctor": "Float64Array",
  4048. "array": [
  4049. -48.701,
  4050. 0.555,
  4051. 0,
  4052. 0,
  4053. 0,
  4054. 0,
  4055. 1,
  4056. 1,
  4057. 1,
  4058. 1
  4059. ]
  4060. },
  4061. "_eulerAngles": {
  4062. "__type__": "cc.Vec3",
  4063. "x": 0,
  4064. "y": 0,
  4065. "z": 0
  4066. },
  4067. "_skewX": 0,
  4068. "_skewY": 0,
  4069. "_is3DNode": false,
  4070. "_groupIndex": 0,
  4071. "groupIndex": 0,
  4072. "_id": "ccdMjKE61CWLozJ1lIKHxG"
  4073. },
  4074. {
  4075. "__type__": "cc.Sprite",
  4076. "_name": "",
  4077. "_objFlags": 0,
  4078. "node": {
  4079. "__id__": 99
  4080. },
  4081. "_enabled": true,
  4082. "_materials": [
  4083. {
  4084. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4085. }
  4086. ],
  4087. "_srcBlendFactor": 770,
  4088. "_dstBlendFactor": 771,
  4089. "_spriteFrame": {
  4090. "__uuid__": "1d8aafc2-695e-4d3e-b22f-e63a2ae6d496"
  4091. },
  4092. "_type": 0,
  4093. "_sizeMode": 0,
  4094. "_fillType": 0,
  4095. "_fillCenter": {
  4096. "__type__": "cc.Vec2",
  4097. "x": 0,
  4098. "y": 0
  4099. },
  4100. "_fillStart": 0,
  4101. "_fillRange": 0,
  4102. "_isTrimmedMode": true,
  4103. "_atlas": null,
  4104. "_id": "8bP18Elo5BMqtZAGbsFp+2"
  4105. },
  4106. {
  4107. "__type__": "cc.Node",
  4108. "_name": "Cost@Lab",
  4109. "_objFlags": 0,
  4110. "_parent": {
  4111. "__id__": 98
  4112. },
  4113. "_children": [],
  4114. "_active": true,
  4115. "_components": [
  4116. {
  4117. "__id__": 102
  4118. },
  4119. {
  4120. "__id__": 103
  4121. }
  4122. ],
  4123. "_prefab": null,
  4124. "_opacity": 255,
  4125. "_color": {
  4126. "__type__": "cc.Color",
  4127. "r": 255,
  4128. "g": 255,
  4129. "b": 255,
  4130. "a": 255
  4131. },
  4132. "_contentSize": {
  4133. "__type__": "cc.Size",
  4134. "width": 100.41,
  4135. "height": 46.84
  4136. },
  4137. "_anchorPoint": {
  4138. "__type__": "cc.Vec2",
  4139. "x": 0.5,
  4140. "y": 0.5
  4141. },
  4142. "_trs": {
  4143. "__type__": "TypedArray",
  4144. "ctor": "Float64Array",
  4145. "array": [
  4146. 23.32,
  4147. 0,
  4148. 0,
  4149. 0,
  4150. 0,
  4151. 0,
  4152. 1,
  4153. 1,
  4154. 1,
  4155. 1
  4156. ]
  4157. },
  4158. "_eulerAngles": {
  4159. "__type__": "cc.Vec3",
  4160. "x": 0,
  4161. "y": 0,
  4162. "z": 0
  4163. },
  4164. "_skewX": 0,
  4165. "_skewY": 0,
  4166. "_is3DNode": false,
  4167. "_groupIndex": 0,
  4168. "groupIndex": 0,
  4169. "_id": "3dGzS22KpCoo56Vhjsniv1"
  4170. },
  4171. {
  4172. "__type__": "cc.Label",
  4173. "_name": "",
  4174. "_objFlags": 0,
  4175. "node": {
  4176. "__id__": 101
  4177. },
  4178. "_enabled": true,
  4179. "_materials": [
  4180. {
  4181. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4182. }
  4183. ],
  4184. "_srcBlendFactor": 770,
  4185. "_dstBlendFactor": 771,
  4186. "_string": "999ab",
  4187. "_N$string": "999ab",
  4188. "_fontSize": 34,
  4189. "_lineHeight": 34,
  4190. "_enableWrapText": false,
  4191. "_N$file": null,
  4192. "_isSystemFontUsed": true,
  4193. "_spacingX": 0,
  4194. "_batchAsBitmap": false,
  4195. "_styleFlags": 1,
  4196. "_underlineHeight": 0,
  4197. "_N$horizontalAlign": 1,
  4198. "_N$verticalAlign": 1,
  4199. "_N$fontFamily": "Arial",
  4200. "_N$overflow": 0,
  4201. "_N$cacheMode": 0,
  4202. "_id": "b2YYNi1kVNWJSIg++jJR5O"
  4203. },
  4204. {
  4205. "__type__": "cc.LabelOutline",
  4206. "_name": "",
  4207. "_objFlags": 0,
  4208. "node": {
  4209. "__id__": 101
  4210. },
  4211. "_enabled": true,
  4212. "_color": {
  4213. "__type__": "cc.Color",
  4214. "r": 72,
  4215. "g": 132,
  4216. "b": 3,
  4217. "a": 255
  4218. },
  4219. "_width": 2,
  4220. "_id": "680c/miLhElInSQt9RpjBP"
  4221. },
  4222. {
  4223. "__type__": "cc.Sprite",
  4224. "_name": "",
  4225. "_objFlags": 0,
  4226. "node": {
  4227. "__id__": 98
  4228. },
  4229. "_enabled": true,
  4230. "_materials": [
  4231. {
  4232. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4233. }
  4234. ],
  4235. "_srcBlendFactor": 770,
  4236. "_dstBlendFactor": 771,
  4237. "_spriteFrame": {
  4238. "__uuid__": "a7f731bf-b765-4cee-b961-013da72fdda2"
  4239. },
  4240. "_type": 0,
  4241. "_sizeMode": 0,
  4242. "_fillType": 0,
  4243. "_fillCenter": {
  4244. "__type__": "cc.Vec2",
  4245. "x": 0,
  4246. "y": 0
  4247. },
  4248. "_fillStart": 0,
  4249. "_fillRange": 0,
  4250. "_isTrimmedMode": true,
  4251. "_atlas": null,
  4252. "_id": "78ZjuWJwVBVKYGz0Pmg814"
  4253. },
  4254. {
  4255. "__type__": "d2d05WNCK1Cw4JufdukJZmq",
  4256. "_name": "",
  4257. "_objFlags": 0,
  4258. "node": {
  4259. "__id__": 98
  4260. },
  4261. "_enabled": true,
  4262. "callEvent": [
  4263. {
  4264. "__id__": 106
  4265. }
  4266. ],
  4267. "targets": [
  4268. {
  4269. "__id__": 104
  4270. },
  4271. {
  4272. "__id__": 100
  4273. },
  4274. {
  4275. "__id__": 102
  4276. }
  4277. ],
  4278. "_id": "1eLxh7YJROy7CPdIdcRaXc"
  4279. },
  4280. {
  4281. "__type__": "cc.ClickEvent",
  4282. "target": {
  4283. "__id__": 60
  4284. },
  4285. "component": "",
  4286. "_componentId": "d9468CdJNlGhLvzs/BvF/X5",
  4287. "handler": "onTouchLvUpBtn",
  4288. "customEventData": ""
  4289. },
  4290. {
  4291. "__type__": "cc.Node",
  4292. "_name": "DoubleTipBg@Node",
  4293. "_objFlags": 0,
  4294. "_parent": {
  4295. "__id__": 61
  4296. },
  4297. "_children": [
  4298. {
  4299. "__id__": 108
  4300. }
  4301. ],
  4302. "_active": false,
  4303. "_components": [
  4304. {
  4305. "__id__": 111
  4306. }
  4307. ],
  4308. "_prefab": null,
  4309. "_opacity": 255,
  4310. "_color": {
  4311. "__type__": "cc.Color",
  4312. "r": 255,
  4313. "g": 255,
  4314. "b": 255,
  4315. "a": 255
  4316. },
  4317. "_contentSize": {
  4318. "__type__": "cc.Size",
  4319. "width": 250,
  4320. "height": 70
  4321. },
  4322. "_anchorPoint": {
  4323. "__type__": "cc.Vec2",
  4324. "x": 0.5,
  4325. "y": 0
  4326. },
  4327. "_trs": {
  4328. "__type__": "TypedArray",
  4329. "ctor": "Float64Array",
  4330. "array": [
  4331. 0,
  4332. 164.117,
  4333. 0,
  4334. 0,
  4335. 0,
  4336. 0,
  4337. 1,
  4338. 1,
  4339. 1,
  4340. 1
  4341. ]
  4342. },
  4343. "_eulerAngles": {
  4344. "__type__": "cc.Vec3",
  4345. "x": 0,
  4346. "y": 0,
  4347. "z": 0
  4348. },
  4349. "_skewX": 0,
  4350. "_skewY": 0,
  4351. "_is3DNode": false,
  4352. "_groupIndex": 0,
  4353. "groupIndex": 0,
  4354. "_id": "dfCUcIYUJDsItBx6wcRYVs"
  4355. },
  4356. {
  4357. "__type__": "cc.Node",
  4358. "_name": "DoubleLab",
  4359. "_objFlags": 0,
  4360. "_parent": {
  4361. "__id__": 107
  4362. },
  4363. "_children": [],
  4364. "_active": true,
  4365. "_components": [
  4366. {
  4367. "__id__": 109
  4368. },
  4369. {
  4370. "__id__": 110
  4371. }
  4372. ],
  4373. "_prefab": null,
  4374. "_opacity": 255,
  4375. "_color": {
  4376. "__type__": "cc.Color",
  4377. "r": 255,
  4378. "g": 240,
  4379. "b": 110,
  4380. "a": 255
  4381. },
  4382. "_contentSize": {
  4383. "__type__": "cc.Size",
  4384. "width": 110.68,
  4385. "height": 41.8
  4386. },
  4387. "_anchorPoint": {
  4388. "__type__": "cc.Vec2",
  4389. "x": 0.5,
  4390. "y": 0.5
  4391. },
  4392. "_trs": {
  4393. "__type__": "TypedArray",
  4394. "ctor": "Float64Array",
  4395. "array": [
  4396. 0,
  4397. 38.181,
  4398. 0,
  4399. 0,
  4400. 0,
  4401. 0,
  4402. 1,
  4403. 1,
  4404. 1,
  4405. 1
  4406. ]
  4407. },
  4408. "_eulerAngles": {
  4409. "__type__": "cc.Vec3",
  4410. "x": 0,
  4411. "y": 0,
  4412. "z": 0
  4413. },
  4414. "_skewX": 0,
  4415. "_skewY": 0,
  4416. "_is3DNode": false,
  4417. "_groupIndex": 0,
  4418. "groupIndex": 0,
  4419. "_id": "8bxbO4WTZJ/4mfAUeKfV89"
  4420. },
  4421. {
  4422. "__type__": "cc.Label",
  4423. "_name": "",
  4424. "_objFlags": 0,
  4425. "node": {
  4426. "__id__": 108
  4427. },
  4428. "_enabled": true,
  4429. "_materials": [
  4430. {
  4431. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4432. }
  4433. ],
  4434. "_srcBlendFactor": 770,
  4435. "_dstBlendFactor": 771,
  4436. "_string": "2倍收入",
  4437. "_N$string": "2倍收入",
  4438. "_fontSize": 30,
  4439. "_lineHeight": 30,
  4440. "_enableWrapText": true,
  4441. "_N$file": null,
  4442. "_isSystemFontUsed": true,
  4443. "_spacingX": 0,
  4444. "_batchAsBitmap": false,
  4445. "_styleFlags": 0,
  4446. "_underlineHeight": 0,
  4447. "_N$horizontalAlign": 1,
  4448. "_N$verticalAlign": 1,
  4449. "_N$fontFamily": "Arial",
  4450. "_N$overflow": 0,
  4451. "_N$cacheMode": 0,
  4452. "_id": "62ThB7v7VIEbpdfIVMW0Bo"
  4453. },
  4454. {
  4455. "__type__": "cc.LabelOutline",
  4456. "_name": "",
  4457. "_objFlags": 0,
  4458. "node": {
  4459. "__id__": 108
  4460. },
  4461. "_enabled": true,
  4462. "_color": {
  4463. "__type__": "cc.Color",
  4464. "r": 143,
  4465. "g": 95,
  4466. "b": 104,
  4467. "a": 255
  4468. },
  4469. "_width": 2,
  4470. "_id": "c6OXHEk6dDmbhKzBk/bu/6"
  4471. },
  4472. {
  4473. "__type__": "cc.Sprite",
  4474. "_name": "",
  4475. "_objFlags": 0,
  4476. "node": {
  4477. "__id__": 107
  4478. },
  4479. "_enabled": true,
  4480. "_materials": [
  4481. {
  4482. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4483. }
  4484. ],
  4485. "_srcBlendFactor": 770,
  4486. "_dstBlendFactor": 771,
  4487. "_spriteFrame": {
  4488. "__uuid__": "4ec1d0bb-d375-459a-8621-9265406cc144"
  4489. },
  4490. "_type": 1,
  4491. "_sizeMode": 0,
  4492. "_fillType": 0,
  4493. "_fillCenter": {
  4494. "__type__": "cc.Vec2",
  4495. "x": 0,
  4496. "y": 0
  4497. },
  4498. "_fillStart": 0,
  4499. "_fillRange": 0,
  4500. "_isTrimmedMode": true,
  4501. "_atlas": null,
  4502. "_id": "fdiI65vJFOJpK+TWoXNmCl"
  4503. },
  4504. {
  4505. "__type__": "cc.Node",
  4506. "_name": "Lv@Lab",
  4507. "_objFlags": 0,
  4508. "_parent": {
  4509. "__id__": 61
  4510. },
  4511. "_children": [],
  4512. "_active": true,
  4513. "_components": [
  4514. {
  4515. "__id__": 113
  4516. }
  4517. ],
  4518. "_prefab": null,
  4519. "_opacity": 255,
  4520. "_color": {
  4521. "__type__": "cc.Color",
  4522. "r": 143,
  4523. "g": 95,
  4524. "b": 104,
  4525. "a": 255
  4526. },
  4527. "_contentSize": {
  4528. "__type__": "cc.Size",
  4529. "width": 86.94,
  4530. "height": 42.84
  4531. },
  4532. "_anchorPoint": {
  4533. "__type__": "cc.Vec2",
  4534. "x": 0.5,
  4535. "y": 0.5
  4536. },
  4537. "_trs": {
  4538. "__type__": "TypedArray",
  4539. "ctor": "Float64Array",
  4540. "array": [
  4541. 0,
  4542. 122.692,
  4543. 0,
  4544. 0,
  4545. 0,
  4546. 0,
  4547. 1,
  4548. 1,
  4549. 1,
  4550. 1
  4551. ]
  4552. },
  4553. "_eulerAngles": {
  4554. "__type__": "cc.Vec3",
  4555. "x": 0,
  4556. "y": 0,
  4557. "z": 0
  4558. },
  4559. "_skewX": 0,
  4560. "_skewY": 0,
  4561. "_is3DNode": false,
  4562. "_groupIndex": 0,
  4563. "groupIndex": 0,
  4564. "_id": "47Nzv6jrRE8JGNzYjDTZ1Q"
  4565. },
  4566. {
  4567. "__type__": "cc.Label",
  4568. "_name": "",
  4569. "_objFlags": 0,
  4570. "node": {
  4571. "__id__": 112
  4572. },
  4573. "_enabled": true,
  4574. "_materials": [
  4575. {
  4576. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4577. }
  4578. ],
  4579. "_srcBlendFactor": 770,
  4580. "_dstBlendFactor": 771,
  4581. "_string": "Lv 99",
  4582. "_N$string": "Lv 99",
  4583. "_fontSize": 34,
  4584. "_lineHeight": 34,
  4585. "_enableWrapText": true,
  4586. "_N$file": null,
  4587. "_isSystemFontUsed": true,
  4588. "_spacingX": 0,
  4589. "_batchAsBitmap": false,
  4590. "_styleFlags": 1,
  4591. "_underlineHeight": 0,
  4592. "_N$horizontalAlign": 1,
  4593. "_N$verticalAlign": 1,
  4594. "_N$fontFamily": "Arial",
  4595. "_N$overflow": 0,
  4596. "_N$cacheMode": 0,
  4597. "_id": "b9G19W3ttH7Jh16LsUHBex"
  4598. },
  4599. {
  4600. "__type__": "cc.Node",
  4601. "_name": "Name@Lab",
  4602. "_objFlags": 0,
  4603. "_parent": {
  4604. "__id__": 61
  4605. },
  4606. "_children": [],
  4607. "_active": true,
  4608. "_components": [
  4609. {
  4610. "__id__": 115
  4611. }
  4612. ],
  4613. "_prefab": null,
  4614. "_opacity": 255,
  4615. "_color": {
  4616. "__type__": "cc.Color",
  4617. "r": 143,
  4618. "g": 95,
  4619. "b": 104,
  4620. "a": 255
  4621. },
  4622. "_contentSize": {
  4623. "__type__": "cc.Size",
  4624. "width": 50,
  4625. "height": 31.5
  4626. },
  4627. "_anchorPoint": {
  4628. "__type__": "cc.Vec2",
  4629. "x": 0.5,
  4630. "y": 0.5
  4631. },
  4632. "_trs": {
  4633. "__type__": "TypedArray",
  4634. "ctor": "Float64Array",
  4635. "array": [
  4636. 0,
  4637. 86.614,
  4638. 0,
  4639. 0,
  4640. 0,
  4641. 0,
  4642. 1,
  4643. 1,
  4644. 1,
  4645. 1
  4646. ]
  4647. },
  4648. "_eulerAngles": {
  4649. "__type__": "cc.Vec3",
  4650. "x": 0,
  4651. "y": 0,
  4652. "z": 0
  4653. },
  4654. "_skewX": 0,
  4655. "_skewY": 0,
  4656. "_is3DNode": false,
  4657. "_groupIndex": 0,
  4658. "groupIndex": 0,
  4659. "_id": "70yocgeXtNaolQMQ9D5UVl"
  4660. },
  4661. {
  4662. "__type__": "cc.Label",
  4663. "_name": "",
  4664. "_objFlags": 0,
  4665. "node": {
  4666. "__id__": 114
  4667. },
  4668. "_enabled": true,
  4669. "_materials": [
  4670. {
  4671. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4672. }
  4673. ],
  4674. "_srcBlendFactor": 770,
  4675. "_dstBlendFactor": 771,
  4676. "_string": "烤肠",
  4677. "_N$string": "烤肠",
  4678. "_fontSize": 25,
  4679. "_lineHeight": 25,
  4680. "_enableWrapText": true,
  4681. "_N$file": null,
  4682. "_isSystemFontUsed": true,
  4683. "_spacingX": 0,
  4684. "_batchAsBitmap": false,
  4685. "_styleFlags": 0,
  4686. "_underlineHeight": 0,
  4687. "_N$horizontalAlign": 1,
  4688. "_N$verticalAlign": 1,
  4689. "_N$fontFamily": "Arial",
  4690. "_N$overflow": 0,
  4691. "_N$cacheMode": 0,
  4692. "_id": "3327foLupLc6SOWfGTqIG4"
  4693. },
  4694. {
  4695. "__type__": "cc.Node",
  4696. "_name": "FoodValue@Lab",
  4697. "_objFlags": 0,
  4698. "_parent": {
  4699. "__id__": 61
  4700. },
  4701. "_children": [],
  4702. "_active": true,
  4703. "_components": [
  4704. {
  4705. "__id__": 117
  4706. }
  4707. ],
  4708. "_prefab": null,
  4709. "_opacity": 255,
  4710. "_color": {
  4711. "__type__": "cc.Color",
  4712. "r": 143,
  4713. "g": 95,
  4714. "b": 104,
  4715. "a": 255
  4716. },
  4717. "_contentSize": {
  4718. "__type__": "cc.Size",
  4719. "width": 69.52,
  4720. "height": 31.5
  4721. },
  4722. "_anchorPoint": {
  4723. "__type__": "cc.Vec2",
  4724. "x": 0.5,
  4725. "y": 0.5
  4726. },
  4727. "_trs": {
  4728. "__type__": "TypedArray",
  4729. "ctor": "Float64Array",
  4730. "array": [
  4731. -26,
  4732. -35,
  4733. 0,
  4734. 0,
  4735. 0,
  4736. 0,
  4737. 1,
  4738. 1,
  4739. 1,
  4740. 1
  4741. ]
  4742. },
  4743. "_eulerAngles": {
  4744. "__type__": "cc.Vec3",
  4745. "x": 0,
  4746. "y": 0,
  4747. "z": 0
  4748. },
  4749. "_skewX": 0,
  4750. "_skewY": 0,
  4751. "_is3DNode": false,
  4752. "_groupIndex": 0,
  4753. "groupIndex": 0,
  4754. "_id": "65Y57E5ndGM5NdybFbczti"
  4755. },
  4756. {
  4757. "__type__": "cc.Label",
  4758. "_name": "",
  4759. "_objFlags": 0,
  4760. "node": {
  4761. "__id__": 116
  4762. },
  4763. "_enabled": true,
  4764. "_materials": [
  4765. {
  4766. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4767. }
  4768. ],
  4769. "_srcBlendFactor": 770,
  4770. "_dstBlendFactor": 771,
  4771. "_string": "999ab",
  4772. "_N$string": "999ab",
  4773. "_fontSize": 25,
  4774. "_lineHeight": 25,
  4775. "_enableWrapText": false,
  4776. "_N$file": null,
  4777. "_isSystemFontUsed": true,
  4778. "_spacingX": 0,
  4779. "_batchAsBitmap": false,
  4780. "_styleFlags": 0,
  4781. "_underlineHeight": 0,
  4782. "_N$horizontalAlign": 1,
  4783. "_N$verticalAlign": 1,
  4784. "_N$fontFamily": "Arial",
  4785. "_N$overflow": 0,
  4786. "_N$cacheMode": 0,
  4787. "_id": "7fidlJPEpBt5hP743iiR4z"
  4788. },
  4789. {
  4790. "__type__": "cc.Node",
  4791. "_name": "Time@Lab",
  4792. "_objFlags": 0,
  4793. "_parent": {
  4794. "__id__": 61
  4795. },
  4796. "_children": [],
  4797. "_active": true,
  4798. "_components": [
  4799. {
  4800. "__id__": 119
  4801. }
  4802. ],
  4803. "_prefab": null,
  4804. "_opacity": 255,
  4805. "_color": {
  4806. "__type__": "cc.Color",
  4807. "r": 143,
  4808. "g": 95,
  4809. "b": 104,
  4810. "a": 255
  4811. },
  4812. "_contentSize": {
  4813. "__type__": "cc.Size",
  4814. "width": 40.31,
  4815. "height": 31.5
  4816. },
  4817. "_anchorPoint": {
  4818. "__type__": "cc.Vec2",
  4819. "x": 0.5,
  4820. "y": 0.5
  4821. },
  4822. "_trs": {
  4823. "__type__": "TypedArray",
  4824. "ctor": "Float64Array",
  4825. "array": [
  4826. 82.337,
  4827. -35,
  4828. 0,
  4829. 0,
  4830. 0,
  4831. 0,
  4832. 1,
  4833. 1,
  4834. 1,
  4835. 1
  4836. ]
  4837. },
  4838. "_eulerAngles": {
  4839. "__type__": "cc.Vec3",
  4840. "x": 0,
  4841. "y": 0,
  4842. "z": 0
  4843. },
  4844. "_skewX": 0,
  4845. "_skewY": 0,
  4846. "_is3DNode": false,
  4847. "_groupIndex": 0,
  4848. "groupIndex": 0,
  4849. "_id": "f0wm12g1BL7YFziLQ9PimF"
  4850. },
  4851. {
  4852. "__type__": "cc.Label",
  4853. "_name": "",
  4854. "_objFlags": 0,
  4855. "node": {
  4856. "__id__": 118
  4857. },
  4858. "_enabled": true,
  4859. "_materials": [
  4860. {
  4861. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4862. }
  4863. ],
  4864. "_srcBlendFactor": 770,
  4865. "_dstBlendFactor": 771,
  4866. "_string": "15s",
  4867. "_N$string": "15s",
  4868. "_fontSize": 25,
  4869. "_lineHeight": 25,
  4870. "_enableWrapText": false,
  4871. "_N$file": null,
  4872. "_isSystemFontUsed": true,
  4873. "_spacingX": 0,
  4874. "_batchAsBitmap": false,
  4875. "_styleFlags": 0,
  4876. "_underlineHeight": 0,
  4877. "_N$horizontalAlign": 1,
  4878. "_N$verticalAlign": 1,
  4879. "_N$fontFamily": "Arial",
  4880. "_N$overflow": 0,
  4881. "_N$cacheMode": 0,
  4882. "_id": "90zOr9u5lKjJi7eBdywjt5"
  4883. },
  4884. {
  4885. "__type__": "cc.Sprite",
  4886. "_name": "",
  4887. "_objFlags": 0,
  4888. "node": {
  4889. "__id__": 61
  4890. },
  4891. "_enabled": true,
  4892. "_materials": [
  4893. {
  4894. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4895. }
  4896. ],
  4897. "_srcBlendFactor": 770,
  4898. "_dstBlendFactor": 771,
  4899. "_spriteFrame": {
  4900. "__uuid__": "4ec1d0bb-d375-459a-8621-9265406cc144"
  4901. },
  4902. "_type": 1,
  4903. "_sizeMode": 0,
  4904. "_fillType": 0,
  4905. "_fillCenter": {
  4906. "__type__": "cc.Vec2",
  4907. "x": 0,
  4908. "y": 0
  4909. },
  4910. "_fillStart": 0,
  4911. "_fillRange": 0,
  4912. "_isTrimmedMode": true,
  4913. "_atlas": null,
  4914. "_id": "83yfeKH/5Hba6AueMWF+mJ"
  4915. },
  4916. {
  4917. "__type__": "cc.Node",
  4918. "_name": "di_4",
  4919. "_objFlags": 0,
  4920. "_parent": {
  4921. "__id__": 60
  4922. },
  4923. "_children": [],
  4924. "_active": true,
  4925. "_components": [
  4926. {
  4927. "__id__": 122
  4928. }
  4929. ],
  4930. "_prefab": null,
  4931. "_opacity": 255,
  4932. "_color": {
  4933. "__type__": "cc.Color",
  4934. "r": 255,
  4935. "g": 255,
  4936. "b": 255,
  4937. "a": 255
  4938. },
  4939. "_contentSize": {
  4940. "__type__": "cc.Size",
  4941. "width": 48,
  4942. "height": 44
  4943. },
  4944. "_anchorPoint": {
  4945. "__type__": "cc.Vec2",
  4946. "x": 0.5,
  4947. "y": 0.5
  4948. },
  4949. "_trs": {
  4950. "__type__": "TypedArray",
  4951. "ctor": "Float64Array",
  4952. "array": [
  4953. 0,
  4954. 24.886,
  4955. 0,
  4956. 0,
  4957. 0,
  4958. 0,
  4959. 1,
  4960. 1,
  4961. 1,
  4962. 1
  4963. ]
  4964. },
  4965. "_eulerAngles": {
  4966. "__type__": "cc.Vec3",
  4967. "x": 0,
  4968. "y": 0,
  4969. "z": 0
  4970. },
  4971. "_skewX": 0,
  4972. "_skewY": 0,
  4973. "_is3DNode": false,
  4974. "_groupIndex": 0,
  4975. "groupIndex": 0,
  4976. "_id": "19T+OCZg5Pu5WwmPnMHlqa"
  4977. },
  4978. {
  4979. "__type__": "cc.Sprite",
  4980. "_name": "",
  4981. "_objFlags": 0,
  4982. "node": {
  4983. "__id__": 121
  4984. },
  4985. "_enabled": true,
  4986. "_materials": [
  4987. {
  4988. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4989. }
  4990. ],
  4991. "_srcBlendFactor": 770,
  4992. "_dstBlendFactor": 771,
  4993. "_spriteFrame": {
  4994. "__uuid__": "c969a572-a0a0-4b1d-a293-05165e760ec2"
  4995. },
  4996. "_type": 0,
  4997. "_sizeMode": 1,
  4998. "_fillType": 0,
  4999. "_fillCenter": {
  5000. "__type__": "cc.Vec2",
  5001. "x": 0,
  5002. "y": 0
  5003. },
  5004. "_fillStart": 0,
  5005. "_fillRange": 0,
  5006. "_isTrimmedMode": true,
  5007. "_atlas": null,
  5008. "_id": "c8GBC7g1RKibyDvSRfvtPX"
  5009. },
  5010. {
  5011. "__type__": "d9468CdJNlGhLvzs/BvF/X5",
  5012. "_name": "",
  5013. "_objFlags": 0,
  5014. "node": {
  5015. "__id__": 60
  5016. },
  5017. "_enabled": true,
  5018. "bgNode": {
  5019. "__id__": 61
  5020. },
  5021. "progressBar": {
  5022. "__id__": 68
  5023. },
  5024. "maxNode": {
  5025. "__id__": 65
  5026. },
  5027. "diamondNode": {
  5028. "__id__": 69
  5029. },
  5030. "starListNode": {
  5031. "__id__": 74
  5032. },
  5033. "lvUpBtn": {
  5034. "__id__": 105
  5035. },
  5036. "costLab": {
  5037. "__id__": 102
  5038. },
  5039. "doubleTipBg": {
  5040. "__id__": 107
  5041. },
  5042. "lvLab": {
  5043. "__id__": 113
  5044. },
  5045. "nameLab": {
  5046. "__id__": 115
  5047. },
  5048. "foodValueLab": {
  5049. "__id__": 117
  5050. },
  5051. "timeLab": {
  5052. "__id__": 119
  5053. },
  5054. "panelAni": {
  5055. "__id__": 124
  5056. },
  5057. "_id": "26zpmIRztBJ7UK/pfycSQz"
  5058. },
  5059. {
  5060. "__type__": "c8ce0aO6IZCxbaDTRQx/82/",
  5061. "_name": "",
  5062. "_objFlags": 0,
  5063. "node": {
  5064. "__id__": 60
  5065. },
  5066. "_enabled": true,
  5067. "_id": "8d5wLMWNVIeKF4xOjTVuiy"
  5068. },
  5069. {
  5070. "__type__": "cc.Canvas",
  5071. "_name": "",
  5072. "_objFlags": 0,
  5073. "node": {
  5074. "__id__": 22
  5075. },
  5076. "_enabled": true,
  5077. "_designResolution": {
  5078. "__type__": "cc.Size",
  5079. "width": 640,
  5080. "height": 1136
  5081. },
  5082. "_fitWidth": true,
  5083. "_fitHeight": false,
  5084. "_id": "1dueLm5w9CwoyJCmo3cREd"
  5085. },
  5086. {
  5087. "__type__": "cc.Widget",
  5088. "_name": "",
  5089. "_objFlags": 0,
  5090. "node": {
  5091. "__id__": 22
  5092. },
  5093. "_enabled": true,
  5094. "alignMode": 1,
  5095. "_target": null,
  5096. "_alignFlags": 45,
  5097. "_left": 0,
  5098. "_right": 0,
  5099. "_top": 0,
  5100. "_bottom": 0,
  5101. "_verticalCenter": 0,
  5102. "_horizontalCenter": 0,
  5103. "_isAbsLeft": true,
  5104. "_isAbsRight": true,
  5105. "_isAbsTop": true,
  5106. "_isAbsBottom": true,
  5107. "_isAbsHorizontalCenter": true,
  5108. "_isAbsVerticalCenter": true,
  5109. "_originalWidth": 0,
  5110. "_originalHeight": 0,
  5111. "_id": "97uffKLGNLdYzGm+hOEotf"
  5112. },
  5113. {
  5114. "__type__": "ff50crhtq9DV4V3Q+o0h5Vw",
  5115. "_name": "",
  5116. "_objFlags": 0,
  5117. "node": {
  5118. "__id__": 22
  5119. },
  5120. "_enabled": true,
  5121. "openSysAniPrefab": {
  5122. "__uuid__": "fed4c131-9fa6-4e61-bb6e-fc2aa22024e3"
  5123. },
  5124. "moneyAniPre": {
  5125. "__uuid__": "33d5a775-0222-45b8-924f-4f68834f6d47"
  5126. },
  5127. "_id": "6aB1j82ZlDGb5qUgrUfvNr"
  5128. },
  5129. {
  5130. "__type__": "89283keENFPerJUJ0cf/RjD",
  5131. "_name": "",
  5132. "_objFlags": 0,
  5133. "node": {
  5134. "__id__": 22
  5135. },
  5136. "_enabled": true,
  5137. "gameViewPrefab": null,
  5138. "nodePoolMsrPrefab": null,
  5139. "_id": "7biAOGDBBI6JhglCXLiVXN"
  5140. },
  5141. {
  5142. "__type__": "66ee3OrV6NDr7mx1WPgv7XX",
  5143. "_name": "ViewportService",
  5144. "_objFlags": 0,
  5145. "node": {
  5146. "__id__": 18
  5147. },
  5148. "_enabled": true,
  5149. "viewport": {
  5150. "__id__": 25
  5151. },
  5152. "handler": {
  5153. "__id__": 39
  5154. },
  5155. "map": null,
  5156. "_id": "797OM9/2JK76MRnXYf0E0n"
  5157. },
  5158. {
  5159. "__type__": "13e9dnZvD1BNYopLea+RKMU",
  5160. "_name": "",
  5161. "_objFlags": 0,
  5162. "node": {
  5163. "__id__": 18
  5164. },
  5165. "_enabled": true,
  5166. "_id": "6aBfHrz8BBdYI0ZrU0z+QJ"
  5167. },
  5168. {
  5169. "__type__": "28ec0St9n1CTLlKjKuOwevu",
  5170. "_name": "",
  5171. "_objFlags": 0,
  5172. "node": {
  5173. "__id__": 18
  5174. },
  5175. "_enabled": true,
  5176. "customerPool": {
  5177. "__id__": 132
  5178. },
  5179. "carPool": {
  5180. "__id__": 133
  5181. },
  5182. "chefPool": {
  5183. "__id__": 134
  5184. },
  5185. "waiterPool": {
  5186. "__id__": 135
  5187. },
  5188. "mainCatPool": {
  5189. "__id__": 136
  5190. },
  5191. "_id": "e6lHZmnTlNWYzELs+agSI1"
  5192. },
  5193. {
  5194. "__type__": "NodePool",
  5195. "prefab": {
  5196. "__uuid__": "0f03d682-0725-4f9b-8012-18cdf867040a"
  5197. }
  5198. },
  5199. {
  5200. "__type__": "NodePool",
  5201. "prefab": {
  5202. "__uuid__": "ff904b99-9bcb-47f0-8523-380ff09d654d"
  5203. }
  5204. },
  5205. {
  5206. "__type__": "NodePool",
  5207. "prefab": {
  5208. "__uuid__": "0967fbd2-edc7-499a-a5f6-9034564fe37d"
  5209. }
  5210. },
  5211. {
  5212. "__type__": "NodePool",
  5213. "prefab": {
  5214. "__uuid__": "3a1b9eab-c628-463e-b156-1d875ac95a26"
  5215. }
  5216. },
  5217. {
  5218. "__type__": "NodePool",
  5219. "prefab": {
  5220. "__uuid__": "c500b443-c16e-474b-9414-96dffc2e9327"
  5221. }
  5222. },
  5223. {
  5224. "__type__": "6c7a7sH3bxOB5XyQlCJwKoZ",
  5225. "_name": "",
  5226. "_objFlags": 0,
  5227. "node": {
  5228. "__id__": 18
  5229. },
  5230. "_enabled": true,
  5231. "machineUnlockBox": {
  5232. "__id__": 58
  5233. },
  5234. "lvUpBox": {
  5235. "__id__": 123
  5236. },
  5237. "_id": "666wgJMkFPGqwOYGGeiIOH"
  5238. },
  5239. {
  5240. "__type__": "0a040hVADpEx7+PjIM3YtJX",
  5241. "_name": "",
  5242. "_objFlags": 0,
  5243. "node": {
  5244. "__id__": 18
  5245. },
  5246. "_enabled": true,
  5247. "_id": "52epsybrpABI08JWtgsiGP"
  5248. },
  5249. {
  5250. "__type__": "8497eDhRPZKfLx1FrpntVOH",
  5251. "_name": "",
  5252. "_objFlags": 0,
  5253. "node": {
  5254. "__id__": 18
  5255. },
  5256. "_enabled": true,
  5257. "_id": "21abaxdMtDxouxurNe015r"
  5258. },
  5259. {
  5260. "__type__": "964a1Kx8URK8ZHb7yudaDiv",
  5261. "_name": "",
  5262. "_objFlags": 0,
  5263. "node": {
  5264. "__id__": 18
  5265. },
  5266. "_enabled": true,
  5267. "_id": "55YnD17J5DBI0OOninDM6f"
  5268. },
  5269. {
  5270. "__type__": "c7db8TRA8lHQaiy1Gv9EUDW",
  5271. "_name": "",
  5272. "_objFlags": 0,
  5273. "node": {
  5274. "__id__": 18
  5275. },
  5276. "_enabled": true,
  5277. "_id": "4fpIxXAsND9pa9+eHI5h3K"
  5278. },
  5279. {
  5280. "__type__": "9937byU1NZA0JRc7wTcqRpx",
  5281. "_name": "",
  5282. "_objFlags": 0,
  5283. "node": {
  5284. "__id__": 18
  5285. },
  5286. "_enabled": true,
  5287. "_id": "52nAWfEt1FG7xXpKDGRD+y"
  5288. }
  5289. ]