Shop.prefab 86 KB

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