game.fire 84 KB

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