Sign.prefab 80 KB

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