Hall.fire 89 KB

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