SpeedUpUI.prefab 87 KB

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