Shop.prefab 87 KB

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