sign.prefab 94 KB

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