doubleRewards.prefab 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "DoubleRewards",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "DoubleRewards",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 76
  26. },
  27. {
  28. "__id__": 174
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 180
  35. },
  36. {
  37. "__id__": 182
  38. },
  39. {
  40. "__id__": 238
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 240
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "topNode",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [
  84. {
  85. "__id__": 3
  86. },
  87. {
  88. "__id__": 33
  89. },
  90. {
  91. "__id__": 53
  92. },
  93. {
  94. "__id__": 61
  95. }
  96. ],
  97. "_active": true,
  98. "_components": [
  99. {
  100. "__id__": 69
  101. },
  102. {
  103. "__id__": 71
  104. },
  105. {
  106. "__id__": 73
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 75
  111. },
  112. "_lpos": {
  113. "__type__": "cc.Vec3",
  114. "x": 0,
  115. "y": 109.66899999999998,
  116. "z": 0
  117. },
  118. "_lrot": {
  119. "__type__": "cc.Quat",
  120. "x": 0,
  121. "y": 0,
  122. "z": 0,
  123. "w": 1
  124. },
  125. "_lscale": {
  126. "__type__": "cc.Vec3",
  127. "x": 1,
  128. "y": 1,
  129. "z": 1
  130. },
  131. "_mobility": 0,
  132. "_layer": 33554432,
  133. "_euler": {
  134. "__type__": "cc.Vec3",
  135. "x": 0,
  136. "y": 0,
  137. "z": 0
  138. },
  139. "_id": ""
  140. },
  141. {
  142. "__type__": "cc.Node",
  143. "_name": "listNode",
  144. "_objFlags": 0,
  145. "__editorExtras__": {},
  146. "_parent": {
  147. "__id__": 2
  148. },
  149. "_children": [
  150. {
  151. "__id__": 4
  152. },
  153. {
  154. "__id__": 12
  155. },
  156. {
  157. "__id__": 20
  158. }
  159. ],
  160. "_active": true,
  161. "_components": [
  162. {
  163. "__id__": 28
  164. },
  165. {
  166. "__id__": 30
  167. }
  168. ],
  169. "_prefab": {
  170. "__id__": 32
  171. },
  172. "_lpos": {
  173. "__type__": "cc.Vec3",
  174. "x": -7.282,
  175. "y": 106.641,
  176. "z": 0
  177. },
  178. "_lrot": {
  179. "__type__": "cc.Quat",
  180. "x": 0,
  181. "y": 0,
  182. "z": 0,
  183. "w": 1
  184. },
  185. "_lscale": {
  186. "__type__": "cc.Vec3",
  187. "x": 1,
  188. "y": 1,
  189. "z": 1
  190. },
  191. "_mobility": 0,
  192. "_layer": 33554432,
  193. "_euler": {
  194. "__type__": "cc.Vec3",
  195. "x": 0,
  196. "y": 0,
  197. "z": 0
  198. },
  199. "_id": ""
  200. },
  201. {
  202. "__type__": "cc.Node",
  203. "_objFlags": 0,
  204. "_parent": {
  205. "__id__": 3
  206. },
  207. "_prefab": {
  208. "__id__": 5
  209. },
  210. "__editorExtras__": {}
  211. },
  212. {
  213. "__type__": "cc.PrefabInfo",
  214. "root": {
  215. "__id__": 4
  216. },
  217. "asset": {
  218. "__uuid__": "d55e4e76-78aa-431e-9076-af5ea0cf35c9",
  219. "__expectedType__": "cc.Prefab"
  220. },
  221. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  222. "instance": {
  223. "__id__": 6
  224. },
  225. "targetOverrides": null
  226. },
  227. {
  228. "__type__": "cc.PrefabInstance",
  229. "fileId": "d8bagdmolAAJ1ouzKkkP4F",
  230. "prefabRootNode": {
  231. "__id__": 1
  232. },
  233. "mountedChildren": [],
  234. "mountedComponents": [],
  235. "propertyOverrides": [
  236. {
  237. "__id__": 7
  238. },
  239. {
  240. "__id__": 9
  241. },
  242. {
  243. "__id__": 10
  244. },
  245. {
  246. "__id__": 11
  247. }
  248. ],
  249. "removedComponents": []
  250. },
  251. {
  252. "__type__": "CCPropertyOverrideInfo",
  253. "targetInfo": {
  254. "__id__": 8
  255. },
  256. "propertyPath": [
  257. "_name"
  258. ],
  259. "value": "gooditem_1"
  260. },
  261. {
  262. "__type__": "cc.TargetInfo",
  263. "localID": [
  264. "c46/YsCPVOJYA4mWEpNYRx"
  265. ]
  266. },
  267. {
  268. "__type__": "CCPropertyOverrideInfo",
  269. "targetInfo": {
  270. "__id__": 8
  271. },
  272. "propertyPath": [
  273. "_lpos"
  274. ],
  275. "value": {
  276. "__type__": "cc.Vec3",
  277. "x": -182,
  278. "y": 0,
  279. "z": 0
  280. }
  281. },
  282. {
  283. "__type__": "CCPropertyOverrideInfo",
  284. "targetInfo": {
  285. "__id__": 8
  286. },
  287. "propertyPath": [
  288. "_lrot"
  289. ],
  290. "value": {
  291. "__type__": "cc.Quat",
  292. "x": 0,
  293. "y": 0,
  294. "z": 0,
  295. "w": 1
  296. }
  297. },
  298. {
  299. "__type__": "CCPropertyOverrideInfo",
  300. "targetInfo": {
  301. "__id__": 8
  302. },
  303. "propertyPath": [
  304. "_euler"
  305. ],
  306. "value": {
  307. "__type__": "cc.Vec3",
  308. "x": 0,
  309. "y": 0,
  310. "z": 0
  311. }
  312. },
  313. {
  314. "__type__": "cc.Node",
  315. "_objFlags": 0,
  316. "_parent": {
  317. "__id__": 3
  318. },
  319. "_prefab": {
  320. "__id__": 13
  321. },
  322. "__editorExtras__": {}
  323. },
  324. {
  325. "__type__": "cc.PrefabInfo",
  326. "root": {
  327. "__id__": 12
  328. },
  329. "asset": {
  330. "__uuid__": "717e568d-dfc0-4b6e-bdf0-7eda9cb2057f",
  331. "__expectedType__": "cc.Prefab"
  332. },
  333. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  334. "instance": {
  335. "__id__": 14
  336. },
  337. "targetOverrides": null
  338. },
  339. {
  340. "__type__": "cc.PrefabInstance",
  341. "fileId": "70g1rSf75PFbCKLm14lO6B",
  342. "prefabRootNode": {
  343. "__id__": 1
  344. },
  345. "mountedChildren": [],
  346. "mountedComponents": [],
  347. "propertyOverrides": [
  348. {
  349. "__id__": 15
  350. },
  351. {
  352. "__id__": 17
  353. },
  354. {
  355. "__id__": 18
  356. },
  357. {
  358. "__id__": 19
  359. }
  360. ],
  361. "removedComponents": []
  362. },
  363. {
  364. "__type__": "CCPropertyOverrideInfo",
  365. "targetInfo": {
  366. "__id__": 16
  367. },
  368. "propertyPath": [
  369. "_name"
  370. ],
  371. "value": "gooditem_2"
  372. },
  373. {
  374. "__type__": "cc.TargetInfo",
  375. "localID": [
  376. "c46/YsCPVOJYA4mWEpNYRx"
  377. ]
  378. },
  379. {
  380. "__type__": "CCPropertyOverrideInfo",
  381. "targetInfo": {
  382. "__id__": 16
  383. },
  384. "propertyPath": [
  385. "_lpos"
  386. ],
  387. "value": {
  388. "__type__": "cc.Vec3",
  389. "x": 0,
  390. "y": 0,
  391. "z": 0
  392. }
  393. },
  394. {
  395. "__type__": "CCPropertyOverrideInfo",
  396. "targetInfo": {
  397. "__id__": 16
  398. },
  399. "propertyPath": [
  400. "_lrot"
  401. ],
  402. "value": {
  403. "__type__": "cc.Quat",
  404. "x": 0,
  405. "y": 0,
  406. "z": 0,
  407. "w": 1
  408. }
  409. },
  410. {
  411. "__type__": "CCPropertyOverrideInfo",
  412. "targetInfo": {
  413. "__id__": 16
  414. },
  415. "propertyPath": [
  416. "_euler"
  417. ],
  418. "value": {
  419. "__type__": "cc.Vec3",
  420. "x": 0,
  421. "y": 0,
  422. "z": 0
  423. }
  424. },
  425. {
  426. "__type__": "cc.Node",
  427. "_objFlags": 0,
  428. "_parent": {
  429. "__id__": 3
  430. },
  431. "_prefab": {
  432. "__id__": 21
  433. },
  434. "__editorExtras__": {}
  435. },
  436. {
  437. "__type__": "cc.PrefabInfo",
  438. "root": {
  439. "__id__": 20
  440. },
  441. "asset": {
  442. "__uuid__": "d40b5b70-6ec3-43ce-81ac-8babe7f6c8f1",
  443. "__expectedType__": "cc.Prefab"
  444. },
  445. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  446. "instance": {
  447. "__id__": 22
  448. },
  449. "targetOverrides": null
  450. },
  451. {
  452. "__type__": "cc.PrefabInstance",
  453. "fileId": "995i1xBsxJebiXGiaM1mUh",
  454. "prefabRootNode": {
  455. "__id__": 1
  456. },
  457. "mountedChildren": [],
  458. "mountedComponents": [],
  459. "propertyOverrides": [
  460. {
  461. "__id__": 23
  462. },
  463. {
  464. "__id__": 25
  465. },
  466. {
  467. "__id__": 26
  468. },
  469. {
  470. "__id__": 27
  471. }
  472. ],
  473. "removedComponents": []
  474. },
  475. {
  476. "__type__": "CCPropertyOverrideInfo",
  477. "targetInfo": {
  478. "__id__": 24
  479. },
  480. "propertyPath": [
  481. "_name"
  482. ],
  483. "value": "gooditem_3"
  484. },
  485. {
  486. "__type__": "cc.TargetInfo",
  487. "localID": [
  488. "c46/YsCPVOJYA4mWEpNYRx"
  489. ]
  490. },
  491. {
  492. "__type__": "CCPropertyOverrideInfo",
  493. "targetInfo": {
  494. "__id__": 24
  495. },
  496. "propertyPath": [
  497. "_lpos"
  498. ],
  499. "value": {
  500. "__type__": "cc.Vec3",
  501. "x": 182,
  502. "y": 0,
  503. "z": 0
  504. }
  505. },
  506. {
  507. "__type__": "CCPropertyOverrideInfo",
  508. "targetInfo": {
  509. "__id__": 24
  510. },
  511. "propertyPath": [
  512. "_lrot"
  513. ],
  514. "value": {
  515. "__type__": "cc.Quat",
  516. "x": 0,
  517. "y": 0,
  518. "z": 0,
  519. "w": 1
  520. }
  521. },
  522. {
  523. "__type__": "CCPropertyOverrideInfo",
  524. "targetInfo": {
  525. "__id__": 24
  526. },
  527. "propertyPath": [
  528. "_euler"
  529. ],
  530. "value": {
  531. "__type__": "cc.Vec3",
  532. "x": 0,
  533. "y": 0,
  534. "z": 0
  535. }
  536. },
  537. {
  538. "__type__": "cc.UITransform",
  539. "_name": "",
  540. "_objFlags": 0,
  541. "__editorExtras__": {},
  542. "node": {
  543. "__id__": 3
  544. },
  545. "_enabled": true,
  546. "__prefab": {
  547. "__id__": 29
  548. },
  549. "_contentSize": {
  550. "__type__": "cc.Size",
  551. "width": 524,
  552. "height": 150
  553. },
  554. "_anchorPoint": {
  555. "__type__": "cc.Vec2",
  556. "x": 0.5,
  557. "y": 0.5
  558. },
  559. "_id": ""
  560. },
  561. {
  562. "__type__": "cc.CompPrefabInfo",
  563. "fileId": "65yIWorptC874PJ+d1m6Ys"
  564. },
  565. {
  566. "__type__": "cc.Layout",
  567. "_name": "",
  568. "_objFlags": 0,
  569. "__editorExtras__": {},
  570. "node": {
  571. "__id__": 3
  572. },
  573. "_enabled": true,
  574. "__prefab": {
  575. "__id__": 31
  576. },
  577. "_resizeMode": 1,
  578. "_layoutType": 1,
  579. "_cellSize": {
  580. "__type__": "cc.Size",
  581. "width": 40,
  582. "height": 40
  583. },
  584. "_startAxis": 0,
  585. "_paddingLeft": 10,
  586. "_paddingRight": 10,
  587. "_paddingTop": 0,
  588. "_paddingBottom": 0,
  589. "_spacingX": 42,
  590. "_spacingY": 0,
  591. "_verticalDirection": 1,
  592. "_horizontalDirection": 0,
  593. "_constraint": 0,
  594. "_constraintNum": 2,
  595. "_affectedByScale": false,
  596. "_isAlign": false,
  597. "_id": ""
  598. },
  599. {
  600. "__type__": "cc.CompPrefabInfo",
  601. "fileId": "45HEjHXQFLf45dmaPwNxoV"
  602. },
  603. {
  604. "__type__": "cc.PrefabInfo",
  605. "root": {
  606. "__id__": 1
  607. },
  608. "asset": {
  609. "__id__": 0
  610. },
  611. "fileId": "c8vkemV+BCqokwqdAKGvf9",
  612. "instance": null,
  613. "targetOverrides": null,
  614. "nestedPrefabInstanceRoots": null
  615. },
  616. {
  617. "__type__": "cc.Node",
  618. "_name": "btn_all",
  619. "_objFlags": 0,
  620. "__editorExtras__": {},
  621. "_parent": {
  622. "__id__": 2
  623. },
  624. "_children": [
  625. {
  626. "__id__": 34
  627. },
  628. {
  629. "__id__": 40
  630. }
  631. ],
  632. "_active": true,
  633. "_components": [
  634. {
  635. "__id__": 46
  636. },
  637. {
  638. "__id__": 48
  639. },
  640. {
  641. "__id__": 50
  642. }
  643. ],
  644. "_prefab": {
  645. "__id__": 52
  646. },
  647. "_lpos": {
  648. "__type__": "cc.Vec3",
  649. "x": 0,
  650. "y": -193.208,
  651. "z": 0
  652. },
  653. "_lrot": {
  654. "__type__": "cc.Quat",
  655. "x": 0,
  656. "y": 0,
  657. "z": 0,
  658. "w": 1
  659. },
  660. "_lscale": {
  661. "__type__": "cc.Vec3",
  662. "x": 1,
  663. "y": 1,
  664. "z": 1
  665. },
  666. "_mobility": 0,
  667. "_layer": 33554432,
  668. "_euler": {
  669. "__type__": "cc.Vec3",
  670. "x": 0,
  671. "y": 0,
  672. "z": 0
  673. },
  674. "_id": ""
  675. },
  676. {
  677. "__type__": "cc.Node",
  678. "_name": "icon_vector",
  679. "_objFlags": 0,
  680. "__editorExtras__": {},
  681. "_parent": {
  682. "__id__": 33
  683. },
  684. "_children": [],
  685. "_active": true,
  686. "_components": [
  687. {
  688. "__id__": 35
  689. },
  690. {
  691. "__id__": 37
  692. }
  693. ],
  694. "_prefab": {
  695. "__id__": 39
  696. },
  697. "_lpos": {
  698. "__type__": "cc.Vec3",
  699. "x": -78.317,
  700. "y": 0,
  701. "z": 0
  702. },
  703. "_lrot": {
  704. "__type__": "cc.Quat",
  705. "x": 0,
  706. "y": 0,
  707. "z": 0,
  708. "w": 1
  709. },
  710. "_lscale": {
  711. "__type__": "cc.Vec3",
  712. "x": 1,
  713. "y": 1,
  714. "z": 1
  715. },
  716. "_mobility": 0,
  717. "_layer": 33554432,
  718. "_euler": {
  719. "__type__": "cc.Vec3",
  720. "x": 0,
  721. "y": 0,
  722. "z": 0
  723. },
  724. "_id": ""
  725. },
  726. {
  727. "__type__": "cc.UITransform",
  728. "_name": "",
  729. "_objFlags": 0,
  730. "__editorExtras__": {},
  731. "node": {
  732. "__id__": 34
  733. },
  734. "_enabled": true,
  735. "__prefab": {
  736. "__id__": 36
  737. },
  738. "_contentSize": {
  739. "__type__": "cc.Size",
  740. "width": 56,
  741. "height": 56
  742. },
  743. "_anchorPoint": {
  744. "__type__": "cc.Vec2",
  745. "x": 0.5,
  746. "y": 0.5
  747. },
  748. "_id": ""
  749. },
  750. {
  751. "__type__": "cc.CompPrefabInfo",
  752. "fileId": "4djm+MTnlHKrkhh6IqYlgK"
  753. },
  754. {
  755. "__type__": "cc.Sprite",
  756. "_name": "",
  757. "_objFlags": 0,
  758. "__editorExtras__": {},
  759. "node": {
  760. "__id__": 34
  761. },
  762. "_enabled": true,
  763. "__prefab": {
  764. "__id__": 38
  765. },
  766. "_customMaterial": null,
  767. "_srcBlendFactor": 2,
  768. "_dstBlendFactor": 4,
  769. "_color": {
  770. "__type__": "cc.Color",
  771. "r": 255,
  772. "g": 255,
  773. "b": 255,
  774. "a": 255
  775. },
  776. "_spriteFrame": {
  777. "__uuid__": "333df597-fb53-4b3c-b9c7-d700e1d0bf57@f9941",
  778. "__expectedType__": "cc.SpriteFrame"
  779. },
  780. "_type": 0,
  781. "_fillType": 0,
  782. "_sizeMode": 1,
  783. "_fillCenter": {
  784. "__type__": "cc.Vec2",
  785. "x": 0,
  786. "y": 0
  787. },
  788. "_fillStart": 0,
  789. "_fillRange": 0,
  790. "_isTrimmedMode": true,
  791. "_useGrayscale": false,
  792. "_atlas": null,
  793. "_id": ""
  794. },
  795. {
  796. "__type__": "cc.CompPrefabInfo",
  797. "fileId": "d08ciwG/1GoqH+lJulG4vK"
  798. },
  799. {
  800. "__type__": "cc.PrefabInfo",
  801. "root": {
  802. "__id__": 1
  803. },
  804. "asset": {
  805. "__id__": 0
  806. },
  807. "fileId": "7bJbiMMfdPErwcnd2XHiUX",
  808. "instance": null,
  809. "targetOverrides": null,
  810. "nestedPrefabInstanceRoots": null
  811. },
  812. {
  813. "__type__": "cc.Node",
  814. "_name": "Label",
  815. "_objFlags": 512,
  816. "__editorExtras__": {},
  817. "_parent": {
  818. "__id__": 33
  819. },
  820. "_children": [],
  821. "_active": true,
  822. "_components": [
  823. {
  824. "__id__": 41
  825. },
  826. {
  827. "__id__": 43
  828. }
  829. ],
  830. "_prefab": {
  831. "__id__": 45
  832. },
  833. "_lpos": {
  834. "__type__": "cc.Vec3",
  835. "x": 29.587,
  836. "y": 0,
  837. "z": 0
  838. },
  839. "_lrot": {
  840. "__type__": "cc.Quat",
  841. "x": 0,
  842. "y": 0,
  843. "z": 0,
  844. "w": 1
  845. },
  846. "_lscale": {
  847. "__type__": "cc.Vec3",
  848. "x": 1,
  849. "y": 1,
  850. "z": 1
  851. },
  852. "_mobility": 0,
  853. "_layer": 33554432,
  854. "_euler": {
  855. "__type__": "cc.Vec3",
  856. "x": 0,
  857. "y": 0,
  858. "z": 0
  859. },
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.UITransform",
  864. "_name": "",
  865. "_objFlags": 0,
  866. "__editorExtras__": {},
  867. "node": {
  868. "__id__": 40
  869. },
  870. "_enabled": true,
  871. "__prefab": {
  872. "__id__": 42
  873. },
  874. "_contentSize": {
  875. "__type__": "cc.Size",
  876. "width": 200,
  877. "height": 60
  878. },
  879. "_anchorPoint": {
  880. "__type__": "cc.Vec2",
  881. "x": 0.5,
  882. "y": 0.5
  883. },
  884. "_id": ""
  885. },
  886. {
  887. "__type__": "cc.CompPrefabInfo",
  888. "fileId": "afXxzq5v9H1qi9hi3cojH2"
  889. },
  890. {
  891. "__type__": "cc.Label",
  892. "_name": "",
  893. "_objFlags": 0,
  894. "__editorExtras__": {},
  895. "node": {
  896. "__id__": 40
  897. },
  898. "_enabled": true,
  899. "__prefab": {
  900. "__id__": 44
  901. },
  902. "_customMaterial": null,
  903. "_srcBlendFactor": 2,
  904. "_dstBlendFactor": 4,
  905. "_color": {
  906. "__type__": "cc.Color",
  907. "r": 255,
  908. "g": 255,
  909. "b": 255,
  910. "a": 255
  911. },
  912. "_string": "全都要",
  913. "_horizontalAlign": 1,
  914. "_verticalAlign": 1,
  915. "_actualFontSize": 48,
  916. "_fontSize": 48,
  917. "_fontFamily": "Arial",
  918. "_lineHeight": 48,
  919. "_overflow": 1,
  920. "_enableWrapText": false,
  921. "_font": null,
  922. "_isSystemFontUsed": true,
  923. "_spacingX": 0,
  924. "_isItalic": false,
  925. "_isBold": true,
  926. "_isUnderline": false,
  927. "_underlineHeight": 2,
  928. "_cacheMode": 0,
  929. "_enableOutline": true,
  930. "_outlineColor": {
  931. "__type__": "cc.Color",
  932. "r": 88,
  933. "g": 42,
  934. "b": 9,
  935. "a": 255
  936. },
  937. "_outlineWidth": 4,
  938. "_enableShadow": false,
  939. "_shadowColor": {
  940. "__type__": "cc.Color",
  941. "r": 0,
  942. "g": 0,
  943. "b": 0,
  944. "a": 255
  945. },
  946. "_shadowOffset": {
  947. "__type__": "cc.Vec2",
  948. "x": 2,
  949. "y": 2
  950. },
  951. "_shadowBlur": 2,
  952. "_id": ""
  953. },
  954. {
  955. "__type__": "cc.CompPrefabInfo",
  956. "fileId": "fdR2Xzyy5PX5W3hTmDSOwS"
  957. },
  958. {
  959. "__type__": "cc.PrefabInfo",
  960. "root": {
  961. "__id__": 1
  962. },
  963. "asset": {
  964. "__id__": 0
  965. },
  966. "fileId": "f1dUpKMYZByJMq8scWeFKQ",
  967. "instance": null,
  968. "targetOverrides": null,
  969. "nestedPrefabInstanceRoots": null
  970. },
  971. {
  972. "__type__": "cc.UITransform",
  973. "_name": "",
  974. "_objFlags": 0,
  975. "__editorExtras__": {},
  976. "node": {
  977. "__id__": 33
  978. },
  979. "_enabled": true,
  980. "__prefab": {
  981. "__id__": 47
  982. },
  983. "_contentSize": {
  984. "__type__": "cc.Size",
  985. "width": 602,
  986. "height": 140
  987. },
  988. "_anchorPoint": {
  989. "__type__": "cc.Vec2",
  990. "x": 0.5,
  991. "y": 0.5
  992. },
  993. "_id": ""
  994. },
  995. {
  996. "__type__": "cc.CompPrefabInfo",
  997. "fileId": "7671YcPnJOL6NpYDVqO5cf"
  998. },
  999. {
  1000. "__type__": "cc.Sprite",
  1001. "_name": "",
  1002. "_objFlags": 0,
  1003. "__editorExtras__": {},
  1004. "node": {
  1005. "__id__": 33
  1006. },
  1007. "_enabled": true,
  1008. "__prefab": {
  1009. "__id__": 49
  1010. },
  1011. "_customMaterial": null,
  1012. "_srcBlendFactor": 2,
  1013. "_dstBlendFactor": 4,
  1014. "_color": {
  1015. "__type__": "cc.Color",
  1016. "r": 255,
  1017. "g": 255,
  1018. "b": 255,
  1019. "a": 255
  1020. },
  1021. "_spriteFrame": {
  1022. "__uuid__": "e8764bc7-2f97-4e71-a73b-a525a89d1855@f9941",
  1023. "__expectedType__": "cc.SpriteFrame"
  1024. },
  1025. "_type": 1,
  1026. "_fillType": 0,
  1027. "_sizeMode": 0,
  1028. "_fillCenter": {
  1029. "__type__": "cc.Vec2",
  1030. "x": 0,
  1031. "y": 0
  1032. },
  1033. "_fillStart": 0,
  1034. "_fillRange": 0,
  1035. "_isTrimmedMode": true,
  1036. "_useGrayscale": false,
  1037. "_atlas": null,
  1038. "_id": ""
  1039. },
  1040. {
  1041. "__type__": "cc.CompPrefabInfo",
  1042. "fileId": "fa5pD6ysZM5LXFYKVX93M/"
  1043. },
  1044. {
  1045. "__type__": "cc.Button",
  1046. "_name": "",
  1047. "_objFlags": 0,
  1048. "__editorExtras__": {},
  1049. "node": {
  1050. "__id__": 33
  1051. },
  1052. "_enabled": true,
  1053. "__prefab": {
  1054. "__id__": 51
  1055. },
  1056. "clickEvents": [],
  1057. "_interactable": true,
  1058. "_transition": 3,
  1059. "_normalColor": {
  1060. "__type__": "cc.Color",
  1061. "r": 214,
  1062. "g": 214,
  1063. "b": 214,
  1064. "a": 255
  1065. },
  1066. "_hoverColor": {
  1067. "__type__": "cc.Color",
  1068. "r": 211,
  1069. "g": 211,
  1070. "b": 211,
  1071. "a": 255
  1072. },
  1073. "_pressedColor": {
  1074. "__type__": "cc.Color",
  1075. "r": 255,
  1076. "g": 255,
  1077. "b": 255,
  1078. "a": 255
  1079. },
  1080. "_disabledColor": {
  1081. "__type__": "cc.Color",
  1082. "r": 124,
  1083. "g": 124,
  1084. "b": 124,
  1085. "a": 255
  1086. },
  1087. "_normalSprite": {
  1088. "__uuid__": "e8764bc7-2f97-4e71-a73b-a525a89d1855@f9941",
  1089. "__expectedType__": "cc.SpriteFrame"
  1090. },
  1091. "_hoverSprite": null,
  1092. "_pressedSprite": null,
  1093. "_disabledSprite": null,
  1094. "_duration": 0.1,
  1095. "_zoomScale": 1.2,
  1096. "_target": {
  1097. "__id__": 33
  1098. },
  1099. "_id": ""
  1100. },
  1101. {
  1102. "__type__": "cc.CompPrefabInfo",
  1103. "fileId": "73FLkkJ69PlayVOwaA3fs4"
  1104. },
  1105. {
  1106. "__type__": "cc.PrefabInfo",
  1107. "root": {
  1108. "__id__": 1
  1109. },
  1110. "asset": {
  1111. "__id__": 0
  1112. },
  1113. "fileId": "faP4m3eZpB+rIK1SgXAo89",
  1114. "instance": null,
  1115. "targetOverrides": null,
  1116. "nestedPrefabInstanceRoots": null
  1117. },
  1118. {
  1119. "__type__": "cc.Node",
  1120. "_name": "btn_alittle",
  1121. "_objFlags": 0,
  1122. "__editorExtras__": {},
  1123. "_parent": {
  1124. "__id__": 2
  1125. },
  1126. "_children": [],
  1127. "_active": true,
  1128. "_components": [
  1129. {
  1130. "__id__": 54
  1131. },
  1132. {
  1133. "__id__": 56
  1134. },
  1135. {
  1136. "__id__": 58
  1137. }
  1138. ],
  1139. "_prefab": {
  1140. "__id__": 60
  1141. },
  1142. "_lpos": {
  1143. "__type__": "cc.Vec3",
  1144. "x": 0,
  1145. "y": -315.188,
  1146. "z": 0
  1147. },
  1148. "_lrot": {
  1149. "__type__": "cc.Quat",
  1150. "x": 0,
  1151. "y": 0,
  1152. "z": 0,
  1153. "w": 1
  1154. },
  1155. "_lscale": {
  1156. "__type__": "cc.Vec3",
  1157. "x": 1,
  1158. "y": 1,
  1159. "z": 1
  1160. },
  1161. "_mobility": 0,
  1162. "_layer": 33554432,
  1163. "_euler": {
  1164. "__type__": "cc.Vec3",
  1165. "x": 0,
  1166. "y": 0,
  1167. "z": 0
  1168. },
  1169. "_id": ""
  1170. },
  1171. {
  1172. "__type__": "cc.UITransform",
  1173. "_name": "",
  1174. "_objFlags": 0,
  1175. "__editorExtras__": {},
  1176. "node": {
  1177. "__id__": 53
  1178. },
  1179. "_enabled": true,
  1180. "__prefab": {
  1181. "__id__": 55
  1182. },
  1183. "_contentSize": {
  1184. "__type__": "cc.Size",
  1185. "width": 160,
  1186. "height": 50.4
  1187. },
  1188. "_anchorPoint": {
  1189. "__type__": "cc.Vec2",
  1190. "x": 0.5,
  1191. "y": 0.5
  1192. },
  1193. "_id": ""
  1194. },
  1195. {
  1196. "__type__": "cc.CompPrefabInfo",
  1197. "fileId": "37xGH//zxMVaqxAsDHRB2Q"
  1198. },
  1199. {
  1200. "__type__": "cc.Label",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "__editorExtras__": {},
  1204. "node": {
  1205. "__id__": 53
  1206. },
  1207. "_enabled": true,
  1208. "__prefab": {
  1209. "__id__": 57
  1210. },
  1211. "_customMaterial": null,
  1212. "_srcBlendFactor": 2,
  1213. "_dstBlendFactor": 4,
  1214. "_color": {
  1215. "__type__": "cc.Color",
  1216. "r": 255,
  1217. "g": 255,
  1218. "b": 255,
  1219. "a": 255
  1220. },
  1221. "_string": "少量领取",
  1222. "_horizontalAlign": 1,
  1223. "_verticalAlign": 1,
  1224. "_actualFontSize": 40,
  1225. "_fontSize": 40,
  1226. "_fontFamily": "Arial",
  1227. "_lineHeight": 40,
  1228. "_overflow": 0,
  1229. "_enableWrapText": true,
  1230. "_font": null,
  1231. "_isSystemFontUsed": true,
  1232. "_spacingX": 0,
  1233. "_isItalic": false,
  1234. "_isBold": false,
  1235. "_isUnderline": true,
  1236. "_underlineHeight": 2,
  1237. "_cacheMode": 0,
  1238. "_enableOutline": false,
  1239. "_outlineColor": {
  1240. "__type__": "cc.Color",
  1241. "r": 75,
  1242. "g": 69,
  1243. "b": 69,
  1244. "a": 255
  1245. },
  1246. "_outlineWidth": 3,
  1247. "_enableShadow": false,
  1248. "_shadowColor": {
  1249. "__type__": "cc.Color",
  1250. "r": 0,
  1251. "g": 0,
  1252. "b": 0,
  1253. "a": 255
  1254. },
  1255. "_shadowOffset": {
  1256. "__type__": "cc.Vec2",
  1257. "x": 2,
  1258. "y": 2
  1259. },
  1260. "_shadowBlur": 2,
  1261. "_id": ""
  1262. },
  1263. {
  1264. "__type__": "cc.CompPrefabInfo",
  1265. "fileId": "3ef3notUdHopS415Pyox15"
  1266. },
  1267. {
  1268. "__type__": "cc.Button",
  1269. "_name": "",
  1270. "_objFlags": 0,
  1271. "__editorExtras__": {},
  1272. "node": {
  1273. "__id__": 53
  1274. },
  1275. "_enabled": true,
  1276. "__prefab": {
  1277. "__id__": 59
  1278. },
  1279. "clickEvents": [],
  1280. "_interactable": true,
  1281. "_transition": 3,
  1282. "_normalColor": {
  1283. "__type__": "cc.Color",
  1284. "r": 255,
  1285. "g": 255,
  1286. "b": 255,
  1287. "a": 255
  1288. },
  1289. "_hoverColor": {
  1290. "__type__": "cc.Color",
  1291. "r": 211,
  1292. "g": 211,
  1293. "b": 211,
  1294. "a": 255
  1295. },
  1296. "_pressedColor": {
  1297. "__type__": "cc.Color",
  1298. "r": 255,
  1299. "g": 255,
  1300. "b": 255,
  1301. "a": 255
  1302. },
  1303. "_disabledColor": {
  1304. "__type__": "cc.Color",
  1305. "r": 124,
  1306. "g": 124,
  1307. "b": 124,
  1308. "a": 255
  1309. },
  1310. "_normalSprite": null,
  1311. "_hoverSprite": null,
  1312. "_pressedSprite": null,
  1313. "_disabledSprite": null,
  1314. "_duration": 0.1,
  1315. "_zoomScale": 1.2,
  1316. "_target": null,
  1317. "_id": ""
  1318. },
  1319. {
  1320. "__type__": "cc.CompPrefabInfo",
  1321. "fileId": "85N0i5B5RKKqejzodXRkuW"
  1322. },
  1323. {
  1324. "__type__": "cc.PrefabInfo",
  1325. "root": {
  1326. "__id__": 1
  1327. },
  1328. "asset": {
  1329. "__id__": 0
  1330. },
  1331. "fileId": "fcX5e6NWFOH5MYLg8NGlYi",
  1332. "instance": null,
  1333. "targetOverrides": null,
  1334. "nestedPrefabInstanceRoots": null
  1335. },
  1336. {
  1337. "__type__": "cc.Node",
  1338. "_name": "lab_tips",
  1339. "_objFlags": 0,
  1340. "__editorExtras__": {},
  1341. "_parent": {
  1342. "__id__": 2
  1343. },
  1344. "_children": [],
  1345. "_active": true,
  1346. "_components": [
  1347. {
  1348. "__id__": 62
  1349. },
  1350. {
  1351. "__id__": 64
  1352. },
  1353. {
  1354. "__id__": 66
  1355. }
  1356. ],
  1357. "_prefab": {
  1358. "__id__": 68
  1359. },
  1360. "_lpos": {
  1361. "__type__": "cc.Vec3",
  1362. "x": 0,
  1363. "y": -363.815,
  1364. "z": 0
  1365. },
  1366. "_lrot": {
  1367. "__type__": "cc.Quat",
  1368. "x": 0,
  1369. "y": 0,
  1370. "z": 0,
  1371. "w": 1
  1372. },
  1373. "_lscale": {
  1374. "__type__": "cc.Vec3",
  1375. "x": 1,
  1376. "y": 1,
  1377. "z": 1
  1378. },
  1379. "_mobility": 0,
  1380. "_layer": 33554432,
  1381. "_euler": {
  1382. "__type__": "cc.Vec3",
  1383. "x": 0,
  1384. "y": 0,
  1385. "z": 0
  1386. },
  1387. "_id": ""
  1388. },
  1389. {
  1390. "__type__": "cc.UITransform",
  1391. "_name": "",
  1392. "_objFlags": 0,
  1393. "__editorExtras__": {},
  1394. "node": {
  1395. "__id__": 61
  1396. },
  1397. "_enabled": true,
  1398. "__prefab": {
  1399. "__id__": 63
  1400. },
  1401. "_contentSize": {
  1402. "__type__": "cc.Size",
  1403. "width": 157.841796875,
  1404. "height": 25.2
  1405. },
  1406. "_anchorPoint": {
  1407. "__type__": "cc.Vec2",
  1408. "x": 0.5,
  1409. "y": 0.5
  1410. },
  1411. "_id": ""
  1412. },
  1413. {
  1414. "__type__": "cc.CompPrefabInfo",
  1415. "fileId": "faW9tmmc9GIZPAqfxpakWa"
  1416. },
  1417. {
  1418. "__type__": "cc.Label",
  1419. "_name": "",
  1420. "_objFlags": 0,
  1421. "__editorExtras__": {},
  1422. "node": {
  1423. "__id__": 61
  1424. },
  1425. "_enabled": true,
  1426. "__prefab": {
  1427. "__id__": 65
  1428. },
  1429. "_customMaterial": null,
  1430. "_srcBlendFactor": 2,
  1431. "_dstBlendFactor": 4,
  1432. "_color": {
  1433. "__type__": "cc.Color",
  1434. "r": 255,
  1435. "g": 255,
  1436. "b": 255,
  1437. "a": 255
  1438. },
  1439. "_string": "{{0}}秒后自动领取",
  1440. "_horizontalAlign": 1,
  1441. "_verticalAlign": 1,
  1442. "_actualFontSize": 20,
  1443. "_fontSize": 20,
  1444. "_fontFamily": "Arial",
  1445. "_lineHeight": 20,
  1446. "_overflow": 0,
  1447. "_enableWrapText": true,
  1448. "_font": null,
  1449. "_isSystemFontUsed": true,
  1450. "_spacingX": 0,
  1451. "_isItalic": false,
  1452. "_isBold": false,
  1453. "_isUnderline": false,
  1454. "_underlineHeight": 2,
  1455. "_cacheMode": 0,
  1456. "_enableOutline": false,
  1457. "_outlineColor": {
  1458. "__type__": "cc.Color",
  1459. "r": 0,
  1460. "g": 0,
  1461. "b": 0,
  1462. "a": 255
  1463. },
  1464. "_outlineWidth": 2,
  1465. "_enableShadow": false,
  1466. "_shadowColor": {
  1467. "__type__": "cc.Color",
  1468. "r": 0,
  1469. "g": 0,
  1470. "b": 0,
  1471. "a": 255
  1472. },
  1473. "_shadowOffset": {
  1474. "__type__": "cc.Vec2",
  1475. "x": 2,
  1476. "y": 2
  1477. },
  1478. "_shadowBlur": 2,
  1479. "_id": ""
  1480. },
  1481. {
  1482. "__type__": "cc.CompPrefabInfo",
  1483. "fileId": "4aCrVRk+FKl72A0kQDgNjj"
  1484. },
  1485. {
  1486. "__type__": "545c05XsG9GDJispEGWKvYv",
  1487. "_name": "",
  1488. "_objFlags": 0,
  1489. "__editorExtras__": {},
  1490. "node": {
  1491. "__id__": 61
  1492. },
  1493. "_enabled": true,
  1494. "__prefab": {
  1495. "__id__": 67
  1496. },
  1497. "templateMode": true,
  1498. "watchPath": "",
  1499. "labelType": "cc.Label",
  1500. "watchPathArr": [
  1501. "*.time"
  1502. ],
  1503. "_id": ""
  1504. },
  1505. {
  1506. "__type__": "cc.CompPrefabInfo",
  1507. "fileId": "30tkVrFUhCqYktGAMx2BCN"
  1508. },
  1509. {
  1510. "__type__": "cc.PrefabInfo",
  1511. "root": {
  1512. "__id__": 1
  1513. },
  1514. "asset": {
  1515. "__id__": 0
  1516. },
  1517. "fileId": "d0Qu+jGaBPK4ZB1EiEfUEN",
  1518. "instance": null,
  1519. "targetOverrides": null,
  1520. "nestedPrefabInstanceRoots": null
  1521. },
  1522. {
  1523. "__type__": "cc.UITransform",
  1524. "_name": "",
  1525. "_objFlags": 0,
  1526. "__editorExtras__": {},
  1527. "node": {
  1528. "__id__": 2
  1529. },
  1530. "_enabled": true,
  1531. "__prefab": {
  1532. "__id__": 70
  1533. },
  1534. "_contentSize": {
  1535. "__type__": "cc.Size",
  1536. "width": 676,
  1537. "height": 846
  1538. },
  1539. "_anchorPoint": {
  1540. "__type__": "cc.Vec2",
  1541. "x": 0.5,
  1542. "y": 0.5
  1543. },
  1544. "_id": ""
  1545. },
  1546. {
  1547. "__type__": "cc.CompPrefabInfo",
  1548. "fileId": "353A8eJBNID5FT9iHRF1br"
  1549. },
  1550. {
  1551. "__type__": "cc.Sprite",
  1552. "_name": "",
  1553. "_objFlags": 0,
  1554. "__editorExtras__": {},
  1555. "node": {
  1556. "__id__": 2
  1557. },
  1558. "_enabled": true,
  1559. "__prefab": {
  1560. "__id__": 72
  1561. },
  1562. "_customMaterial": null,
  1563. "_srcBlendFactor": 2,
  1564. "_dstBlendFactor": 4,
  1565. "_color": {
  1566. "__type__": "cc.Color",
  1567. "r": 255,
  1568. "g": 255,
  1569. "b": 255,
  1570. "a": 255
  1571. },
  1572. "_spriteFrame": {
  1573. "__uuid__": "4a4a884b-1fad-4218-9fae-f92686fc5f15@f9941",
  1574. "__expectedType__": "cc.SpriteFrame"
  1575. },
  1576. "_type": 1,
  1577. "_fillType": 0,
  1578. "_sizeMode": 2,
  1579. "_fillCenter": {
  1580. "__type__": "cc.Vec2",
  1581. "x": 0,
  1582. "y": 0
  1583. },
  1584. "_fillStart": 0,
  1585. "_fillRange": 0,
  1586. "_isTrimmedMode": true,
  1587. "_useGrayscale": false,
  1588. "_atlas": null,
  1589. "_id": ""
  1590. },
  1591. {
  1592. "__type__": "cc.CompPrefabInfo",
  1593. "fileId": "1cAUwyE5xGJ7KzFIAvsH+K"
  1594. },
  1595. {
  1596. "__type__": "cc.Widget",
  1597. "_name": "",
  1598. "_objFlags": 0,
  1599. "__editorExtras__": {},
  1600. "node": {
  1601. "__id__": 2
  1602. },
  1603. "_enabled": true,
  1604. "__prefab": {
  1605. "__id__": 74
  1606. },
  1607. "_alignFlags": 17,
  1608. "_target": null,
  1609. "_left": 0,
  1610. "_right": 0,
  1611. "_top": 267.331,
  1612. "_bottom": 0,
  1613. "_horizontalCenter": 0,
  1614. "_verticalCenter": 226.697,
  1615. "_isAbsLeft": true,
  1616. "_isAbsRight": true,
  1617. "_isAbsTop": true,
  1618. "_isAbsBottom": true,
  1619. "_isAbsHorizontalCenter": true,
  1620. "_isAbsVerticalCenter": true,
  1621. "_originalWidth": 0,
  1622. "_originalHeight": 0,
  1623. "_alignMode": 2,
  1624. "_lockFlags": 0,
  1625. "_id": ""
  1626. },
  1627. {
  1628. "__type__": "cc.CompPrefabInfo",
  1629. "fileId": "f9MNtz79NDkonobBeX7EGt"
  1630. },
  1631. {
  1632. "__type__": "cc.PrefabInfo",
  1633. "root": {
  1634. "__id__": 1
  1635. },
  1636. "asset": {
  1637. "__id__": 0
  1638. },
  1639. "fileId": "12OndZB5dL4r1K6kPwSTw2",
  1640. "instance": null,
  1641. "targetOverrides": null,
  1642. "nestedPrefabInstanceRoots": null
  1643. },
  1644. {
  1645. "__type__": "cc.Node",
  1646. "_name": "bottonNode",
  1647. "_objFlags": 0,
  1648. "__editorExtras__": {},
  1649. "_parent": {
  1650. "__id__": 1
  1651. },
  1652. "_children": [
  1653. {
  1654. "__id__": 77
  1655. },
  1656. {
  1657. "__id__": 135
  1658. }
  1659. ],
  1660. "_active": true,
  1661. "_components": [
  1662. {
  1663. "__id__": 169
  1664. },
  1665. {
  1666. "__id__": 171
  1667. }
  1668. ],
  1669. "_prefab": {
  1670. "__id__": 173
  1671. },
  1672. "_lpos": {
  1673. "__type__": "cc.Vec3",
  1674. "x": -0.355,
  1675. "y": -448.022,
  1676. "z": 0
  1677. },
  1678. "_lrot": {
  1679. "__type__": "cc.Quat",
  1680. "x": 0,
  1681. "y": 0,
  1682. "z": 0,
  1683. "w": 1
  1684. },
  1685. "_lscale": {
  1686. "__type__": "cc.Vec3",
  1687. "x": 1,
  1688. "y": 1,
  1689. "z": 1
  1690. },
  1691. "_mobility": 0,
  1692. "_layer": 33554432,
  1693. "_euler": {
  1694. "__type__": "cc.Vec3",
  1695. "x": 0,
  1696. "y": 0,
  1697. "z": 0
  1698. },
  1699. "_id": ""
  1700. },
  1701. {
  1702. "__type__": "cc.Node",
  1703. "_name": "tips_node1",
  1704. "_objFlags": 0,
  1705. "__editorExtras__": {},
  1706. "_parent": {
  1707. "__id__": 76
  1708. },
  1709. "_children": [
  1710. {
  1711. "__id__": 78
  1712. },
  1713. {
  1714. "__id__": 86
  1715. },
  1716. {
  1717. "__id__": 92
  1718. },
  1719. {
  1720. "__id__": 108
  1721. },
  1722. {
  1723. "__id__": 126
  1724. }
  1725. ],
  1726. "_active": false,
  1727. "_components": [
  1728. {
  1729. "__id__": 132
  1730. }
  1731. ],
  1732. "_prefab": {
  1733. "__id__": 134
  1734. },
  1735. "_lpos": {
  1736. "__type__": "cc.Vec3",
  1737. "x": 0,
  1738. "y": 0,
  1739. "z": 0
  1740. },
  1741. "_lrot": {
  1742. "__type__": "cc.Quat",
  1743. "x": 0,
  1744. "y": 0,
  1745. "z": 0,
  1746. "w": 1
  1747. },
  1748. "_lscale": {
  1749. "__type__": "cc.Vec3",
  1750. "x": 1,
  1751. "y": 1,
  1752. "z": 1
  1753. },
  1754. "_mobility": 0,
  1755. "_layer": 33554432,
  1756. "_euler": {
  1757. "__type__": "cc.Vec3",
  1758. "x": 0,
  1759. "y": 0,
  1760. "z": 0
  1761. },
  1762. "_id": ""
  1763. },
  1764. {
  1765. "__type__": "cc.Node",
  1766. "_name": "lab_title",
  1767. "_objFlags": 0,
  1768. "__editorExtras__": {},
  1769. "_parent": {
  1770. "__id__": 77
  1771. },
  1772. "_children": [],
  1773. "_active": true,
  1774. "_components": [
  1775. {
  1776. "__id__": 79
  1777. },
  1778. {
  1779. "__id__": 81
  1780. },
  1781. {
  1782. "__id__": 83
  1783. }
  1784. ],
  1785. "_prefab": {
  1786. "__id__": 85
  1787. },
  1788. "_lpos": {
  1789. "__type__": "cc.Vec3",
  1790. "x": 0,
  1791. "y": 87.697,
  1792. "z": 0
  1793. },
  1794. "_lrot": {
  1795. "__type__": "cc.Quat",
  1796. "x": 0,
  1797. "y": 0,
  1798. "z": 0,
  1799. "w": 1
  1800. },
  1801. "_lscale": {
  1802. "__type__": "cc.Vec3",
  1803. "x": 1,
  1804. "y": 1,
  1805. "z": 1
  1806. },
  1807. "_mobility": 0,
  1808. "_layer": 33554432,
  1809. "_euler": {
  1810. "__type__": "cc.Vec3",
  1811. "x": 0,
  1812. "y": 0,
  1813. "z": 0
  1814. },
  1815. "_id": ""
  1816. },
  1817. {
  1818. "__type__": "cc.UITransform",
  1819. "_name": "",
  1820. "_objFlags": 0,
  1821. "__editorExtras__": {},
  1822. "node": {
  1823. "__id__": 78
  1824. },
  1825. "_enabled": true,
  1826. "__prefab": {
  1827. "__id__": 80
  1828. },
  1829. "_contentSize": {
  1830. "__type__": "cc.Size",
  1831. "width": 378.8203125,
  1832. "height": 50.4
  1833. },
  1834. "_anchorPoint": {
  1835. "__type__": "cc.Vec2",
  1836. "x": 0.5,
  1837. "y": 0.5
  1838. },
  1839. "_id": ""
  1840. },
  1841. {
  1842. "__type__": "cc.CompPrefabInfo",
  1843. "fileId": "f74Szi30ZONqTV7p0/TKoT"
  1844. },
  1845. {
  1846. "__type__": "cc.Label",
  1847. "_name": "",
  1848. "_objFlags": 0,
  1849. "__editorExtras__": {},
  1850. "node": {
  1851. "__id__": 78
  1852. },
  1853. "_enabled": true,
  1854. "__prefab": {
  1855. "__id__": 82
  1856. },
  1857. "_customMaterial": null,
  1858. "_srcBlendFactor": 2,
  1859. "_dstBlendFactor": 4,
  1860. "_color": {
  1861. "__type__": "cc.Color",
  1862. "r": 179,
  1863. "g": 130,
  1864. "b": 24,
  1865. "a": 255
  1866. },
  1867. "_string": "凑齐{{0}}元手续费,微信到账{{1}}元",
  1868. "_horizontalAlign": 1,
  1869. "_verticalAlign": 1,
  1870. "_actualFontSize": 24,
  1871. "_fontSize": 24,
  1872. "_fontFamily": "Arial",
  1873. "_lineHeight": 40,
  1874. "_overflow": 0,
  1875. "_enableWrapText": true,
  1876. "_font": null,
  1877. "_isSystemFontUsed": true,
  1878. "_spacingX": 0,
  1879. "_isItalic": false,
  1880. "_isBold": false,
  1881. "_isUnderline": false,
  1882. "_underlineHeight": 2,
  1883. "_cacheMode": 0,
  1884. "_enableOutline": false,
  1885. "_outlineColor": {
  1886. "__type__": "cc.Color",
  1887. "r": 0,
  1888. "g": 0,
  1889. "b": 0,
  1890. "a": 255
  1891. },
  1892. "_outlineWidth": 2,
  1893. "_enableShadow": false,
  1894. "_shadowColor": {
  1895. "__type__": "cc.Color",
  1896. "r": 0,
  1897. "g": 0,
  1898. "b": 0,
  1899. "a": 255
  1900. },
  1901. "_shadowOffset": {
  1902. "__type__": "cc.Vec2",
  1903. "x": 2,
  1904. "y": 2
  1905. },
  1906. "_shadowBlur": 2,
  1907. "_id": ""
  1908. },
  1909. {
  1910. "__type__": "cc.CompPrefabInfo",
  1911. "fileId": "48XjncSu1A7qBIQnZSU62o"
  1912. },
  1913. {
  1914. "__type__": "545c05XsG9GDJispEGWKvYv",
  1915. "_name": "",
  1916. "_objFlags": 0,
  1917. "__editorExtras__": {},
  1918. "node": {
  1919. "__id__": 78
  1920. },
  1921. "_enabled": true,
  1922. "__prefab": {
  1923. "__id__": 84
  1924. },
  1925. "templateMode": true,
  1926. "watchPath": "",
  1927. "labelType": "cc.Label",
  1928. "watchPathArr": [
  1929. "*.handlingCharge",
  1930. "*.totalGoldNum"
  1931. ],
  1932. "_id": ""
  1933. },
  1934. {
  1935. "__type__": "cc.CompPrefabInfo",
  1936. "fileId": "6cVQqS5FFFNoYKWrpnaAKo"
  1937. },
  1938. {
  1939. "__type__": "cc.PrefabInfo",
  1940. "root": {
  1941. "__id__": 1
  1942. },
  1943. "asset": {
  1944. "__id__": 0
  1945. },
  1946. "fileId": "94pvrRlvdChLIdt/q19rq6",
  1947. "instance": null,
  1948. "targetOverrides": null,
  1949. "nestedPrefabInstanceRoots": null
  1950. },
  1951. {
  1952. "__type__": "cc.Node",
  1953. "_name": "spriteFrame",
  1954. "_objFlags": 0,
  1955. "__editorExtras__": {},
  1956. "_parent": {
  1957. "__id__": 77
  1958. },
  1959. "_children": [],
  1960. "_active": true,
  1961. "_components": [
  1962. {
  1963. "__id__": 87
  1964. },
  1965. {
  1966. "__id__": 89
  1967. }
  1968. ],
  1969. "_prefab": {
  1970. "__id__": 91
  1971. },
  1972. "_lpos": {
  1973. "__type__": "cc.Vec3",
  1974. "x": 35.627,
  1975. "y": -12.021,
  1976. "z": 0
  1977. },
  1978. "_lrot": {
  1979. "__type__": "cc.Quat",
  1980. "x": 0,
  1981. "y": 0,
  1982. "z": 0,
  1983. "w": 1
  1984. },
  1985. "_lscale": {
  1986. "__type__": "cc.Vec3",
  1987. "x": 1,
  1988. "y": 1,
  1989. "z": 1
  1990. },
  1991. "_mobility": 0,
  1992. "_layer": 33554432,
  1993. "_euler": {
  1994. "__type__": "cc.Vec3",
  1995. "x": 0,
  1996. "y": 0,
  1997. "z": 0
  1998. },
  1999. "_id": ""
  2000. },
  2001. {
  2002. "__type__": "cc.UITransform",
  2003. "_name": "",
  2004. "_objFlags": 0,
  2005. "__editorExtras__": {},
  2006. "node": {
  2007. "__id__": 86
  2008. },
  2009. "_enabled": true,
  2010. "__prefab": {
  2011. "__id__": 88
  2012. },
  2013. "_contentSize": {
  2014. "__type__": "cc.Size",
  2015. "width": 42,
  2016. "height": 42
  2017. },
  2018. "_anchorPoint": {
  2019. "__type__": "cc.Vec2",
  2020. "x": 0.5,
  2021. "y": 0.5
  2022. },
  2023. "_id": ""
  2024. },
  2025. {
  2026. "__type__": "cc.CompPrefabInfo",
  2027. "fileId": "285sFLbgdCrayGAEEKwk+8"
  2028. },
  2029. {
  2030. "__type__": "cc.Sprite",
  2031. "_name": "",
  2032. "_objFlags": 0,
  2033. "__editorExtras__": {},
  2034. "node": {
  2035. "__id__": 86
  2036. },
  2037. "_enabled": true,
  2038. "__prefab": {
  2039. "__id__": 90
  2040. },
  2041. "_customMaterial": null,
  2042. "_srcBlendFactor": 2,
  2043. "_dstBlendFactor": 4,
  2044. "_color": {
  2045. "__type__": "cc.Color",
  2046. "r": 255,
  2047. "g": 255,
  2048. "b": 255,
  2049. "a": 255
  2050. },
  2051. "_spriteFrame": {
  2052. "__uuid__": "564ef0ba-58a9-441b-9baf-c953f7188c48@f9941",
  2053. "__expectedType__": "cc.SpriteFrame"
  2054. },
  2055. "_type": 0,
  2056. "_fillType": 0,
  2057. "_sizeMode": 1,
  2058. "_fillCenter": {
  2059. "__type__": "cc.Vec2",
  2060. "x": 0,
  2061. "y": 0
  2062. },
  2063. "_fillStart": 0,
  2064. "_fillRange": 0,
  2065. "_isTrimmedMode": true,
  2066. "_useGrayscale": false,
  2067. "_atlas": null,
  2068. "_id": ""
  2069. },
  2070. {
  2071. "__type__": "cc.CompPrefabInfo",
  2072. "fileId": "7bxnRUXV9DvZ5BL4HgV0Jy"
  2073. },
  2074. {
  2075. "__type__": "cc.PrefabInfo",
  2076. "root": {
  2077. "__id__": 1
  2078. },
  2079. "asset": {
  2080. "__id__": 0
  2081. },
  2082. "fileId": "1fWTaajQxIo4JUS+q/FvvW",
  2083. "instance": null,
  2084. "targetOverrides": null,
  2085. "nestedPrefabInstanceRoots": null
  2086. },
  2087. {
  2088. "__type__": "cc.Node",
  2089. "_name": "tips_bg",
  2090. "_objFlags": 0,
  2091. "__editorExtras__": {},
  2092. "_parent": {
  2093. "__id__": 77
  2094. },
  2095. "_children": [
  2096. {
  2097. "__id__": 93
  2098. }
  2099. ],
  2100. "_active": true,
  2101. "_components": [
  2102. {
  2103. "__id__": 101
  2104. },
  2105. {
  2106. "__id__": 103
  2107. },
  2108. {
  2109. "__id__": 105
  2110. }
  2111. ],
  2112. "_prefab": {
  2113. "__id__": 107
  2114. },
  2115. "_lpos": {
  2116. "__type__": "cc.Vec3",
  2117. "x": -80,
  2118. "y": 13,
  2119. "z": 0
  2120. },
  2121. "_lrot": {
  2122. "__type__": "cc.Quat",
  2123. "x": 0,
  2124. "y": 0,
  2125. "z": 0,
  2126. "w": 1
  2127. },
  2128. "_lscale": {
  2129. "__type__": "cc.Vec3",
  2130. "x": 1,
  2131. "y": 1,
  2132. "z": 1
  2133. },
  2134. "_mobility": 0,
  2135. "_layer": 33554432,
  2136. "_euler": {
  2137. "__type__": "cc.Vec3",
  2138. "x": 0,
  2139. "y": 0,
  2140. "z": 0
  2141. },
  2142. "_id": ""
  2143. },
  2144. {
  2145. "__type__": "cc.Node",
  2146. "_name": "lab_tips",
  2147. "_objFlags": 0,
  2148. "__editorExtras__": {},
  2149. "_parent": {
  2150. "__id__": 92
  2151. },
  2152. "_children": [],
  2153. "_active": true,
  2154. "_components": [
  2155. {
  2156. "__id__": 94
  2157. },
  2158. {
  2159. "__id__": 96
  2160. },
  2161. {
  2162. "__id__": 98
  2163. }
  2164. ],
  2165. "_prefab": {
  2166. "__id__": 100
  2167. },
  2168. "_lpos": {
  2169. "__type__": "cc.Vec3",
  2170. "x": 0,
  2171. "y": 0.738,
  2172. "z": 0
  2173. },
  2174. "_lrot": {
  2175. "__type__": "cc.Quat",
  2176. "x": 0,
  2177. "y": 0,
  2178. "z": 0,
  2179. "w": 1
  2180. },
  2181. "_lscale": {
  2182. "__type__": "cc.Vec3",
  2183. "x": 1,
  2184. "y": 1,
  2185. "z": 1
  2186. },
  2187. "_mobility": 0,
  2188. "_layer": 33554432,
  2189. "_euler": {
  2190. "__type__": "cc.Vec3",
  2191. "x": 0,
  2192. "y": 0,
  2193. "z": 0
  2194. },
  2195. "_id": ""
  2196. },
  2197. {
  2198. "__type__": "cc.UITransform",
  2199. "_name": "",
  2200. "_objFlags": 0,
  2201. "__editorExtras__": {},
  2202. "node": {
  2203. "__id__": 93
  2204. },
  2205. "_enabled": true,
  2206. "__prefab": {
  2207. "__id__": 95
  2208. },
  2209. "_contentSize": {
  2210. "__type__": "cc.Size",
  2211. "width": 423.21875,
  2212. "height": 50.4
  2213. },
  2214. "_anchorPoint": {
  2215. "__type__": "cc.Vec2",
  2216. "x": 0.5,
  2217. "y": 0.5
  2218. },
  2219. "_id": ""
  2220. },
  2221. {
  2222. "__type__": "cc.CompPrefabInfo",
  2223. "fileId": "b4u9jNgphEubQv4wE2hNAu"
  2224. },
  2225. {
  2226. "__type__": "cc.Label",
  2227. "_name": "",
  2228. "_objFlags": 0,
  2229. "__editorExtras__": {},
  2230. "node": {
  2231. "__id__": 93
  2232. },
  2233. "_enabled": true,
  2234. "__prefab": {
  2235. "__id__": 97
  2236. },
  2237. "_customMaterial": null,
  2238. "_srcBlendFactor": 2,
  2239. "_dstBlendFactor": 4,
  2240. "_color": {
  2241. "__type__": "cc.Color",
  2242. "r": 255,
  2243. "g": 255,
  2244. "b": 255,
  2245. "a": 255
  2246. },
  2247. "_string": "已赚{{0}}元,还差{{1}}元提现",
  2248. "_horizontalAlign": 1,
  2249. "_verticalAlign": 1,
  2250. "_actualFontSize": 32,
  2251. "_fontSize": 32,
  2252. "_fontFamily": "Arial",
  2253. "_lineHeight": 40,
  2254. "_overflow": 0,
  2255. "_enableWrapText": true,
  2256. "_font": null,
  2257. "_isSystemFontUsed": true,
  2258. "_spacingX": 0,
  2259. "_isItalic": false,
  2260. "_isBold": true,
  2261. "_isUnderline": false,
  2262. "_underlineHeight": 2,
  2263. "_cacheMode": 0,
  2264. "_enableOutline": false,
  2265. "_outlineColor": {
  2266. "__type__": "cc.Color",
  2267. "r": 0,
  2268. "g": 0,
  2269. "b": 0,
  2270. "a": 255
  2271. },
  2272. "_outlineWidth": 2,
  2273. "_enableShadow": false,
  2274. "_shadowColor": {
  2275. "__type__": "cc.Color",
  2276. "r": 0,
  2277. "g": 0,
  2278. "b": 0,
  2279. "a": 255
  2280. },
  2281. "_shadowOffset": {
  2282. "__type__": "cc.Vec2",
  2283. "x": 2,
  2284. "y": 2
  2285. },
  2286. "_shadowBlur": 2,
  2287. "_id": ""
  2288. },
  2289. {
  2290. "__type__": "cc.CompPrefabInfo",
  2291. "fileId": "abCilcOaVProcbJJCmcm2T"
  2292. },
  2293. {
  2294. "__type__": "545c05XsG9GDJispEGWKvYv",
  2295. "_name": "",
  2296. "_objFlags": 0,
  2297. "__editorExtras__": {},
  2298. "node": {
  2299. "__id__": 93
  2300. },
  2301. "_enabled": true,
  2302. "__prefab": {
  2303. "__id__": 99
  2304. },
  2305. "templateMode": true,
  2306. "watchPath": "",
  2307. "labelType": "cc.Label",
  2308. "watchPathArr": [
  2309. "*.curGoldNum",
  2310. "*.gapGoldNum"
  2311. ],
  2312. "_id": ""
  2313. },
  2314. {
  2315. "__type__": "cc.CompPrefabInfo",
  2316. "fileId": "7cUUEI9LpJ64CJAYdfKJCJ"
  2317. },
  2318. {
  2319. "__type__": "cc.PrefabInfo",
  2320. "root": {
  2321. "__id__": 1
  2322. },
  2323. "asset": {
  2324. "__id__": 0
  2325. },
  2326. "fileId": "cc/4znuhJDiYPTiMYKwl0j",
  2327. "instance": null,
  2328. "targetOverrides": null,
  2329. "nestedPrefabInstanceRoots": null
  2330. },
  2331. {
  2332. "__type__": "cc.UITransform",
  2333. "_name": "",
  2334. "_objFlags": 0,
  2335. "__editorExtras__": {},
  2336. "node": {
  2337. "__id__": 92
  2338. },
  2339. "_enabled": true,
  2340. "__prefab": {
  2341. "__id__": 102
  2342. },
  2343. "_contentSize": {
  2344. "__type__": "cc.Size",
  2345. "width": 463.21875,
  2346. "height": 60
  2347. },
  2348. "_anchorPoint": {
  2349. "__type__": "cc.Vec2",
  2350. "x": 0.5,
  2351. "y": 0.5
  2352. },
  2353. "_id": ""
  2354. },
  2355. {
  2356. "__type__": "cc.CompPrefabInfo",
  2357. "fileId": "6ffzBvlc1LVamNYvW/ksZJ"
  2358. },
  2359. {
  2360. "__type__": "cc.Sprite",
  2361. "_name": "",
  2362. "_objFlags": 0,
  2363. "__editorExtras__": {},
  2364. "node": {
  2365. "__id__": 92
  2366. },
  2367. "_enabled": true,
  2368. "__prefab": {
  2369. "__id__": 104
  2370. },
  2371. "_customMaterial": null,
  2372. "_srcBlendFactor": 2,
  2373. "_dstBlendFactor": 4,
  2374. "_color": {
  2375. "__type__": "cc.Color",
  2376. "r": 255,
  2377. "g": 255,
  2378. "b": 255,
  2379. "a": 255
  2380. },
  2381. "_spriteFrame": {
  2382. "__uuid__": "d6411cf5-34da-42c6-b95b-c8a138772066@f9941",
  2383. "__expectedType__": "cc.SpriteFrame"
  2384. },
  2385. "_type": 0,
  2386. "_fillType": 0,
  2387. "_sizeMode": 0,
  2388. "_fillCenter": {
  2389. "__type__": "cc.Vec2",
  2390. "x": 0,
  2391. "y": 0
  2392. },
  2393. "_fillStart": 0,
  2394. "_fillRange": 0,
  2395. "_isTrimmedMode": true,
  2396. "_useGrayscale": false,
  2397. "_atlas": null,
  2398. "_id": ""
  2399. },
  2400. {
  2401. "__type__": "cc.CompPrefabInfo",
  2402. "fileId": "9eP+2bjFhA6o05ttXWcgJN"
  2403. },
  2404. {
  2405. "__type__": "cc.Layout",
  2406. "_name": "",
  2407. "_objFlags": 0,
  2408. "__editorExtras__": {},
  2409. "node": {
  2410. "__id__": 92
  2411. },
  2412. "_enabled": true,
  2413. "__prefab": {
  2414. "__id__": 106
  2415. },
  2416. "_resizeMode": 1,
  2417. "_layoutType": 1,
  2418. "_cellSize": {
  2419. "__type__": "cc.Size",
  2420. "width": 40,
  2421. "height": 40
  2422. },
  2423. "_startAxis": 0,
  2424. "_paddingLeft": 20,
  2425. "_paddingRight": 20,
  2426. "_paddingTop": 0,
  2427. "_paddingBottom": 0,
  2428. "_spacingX": 0,
  2429. "_spacingY": 0,
  2430. "_verticalDirection": 1,
  2431. "_horizontalDirection": 0,
  2432. "_constraint": 0,
  2433. "_constraintNum": 2,
  2434. "_affectedByScale": false,
  2435. "_isAlign": false,
  2436. "_id": ""
  2437. },
  2438. {
  2439. "__type__": "cc.CompPrefabInfo",
  2440. "fileId": "d4Y2QzVUdK4JG7aWzb8cst"
  2441. },
  2442. {
  2443. "__type__": "cc.PrefabInfo",
  2444. "root": {
  2445. "__id__": 1
  2446. },
  2447. "asset": {
  2448. "__id__": 0
  2449. },
  2450. "fileId": "49X7uEXLFGjZvLnfbvi4Fk",
  2451. "instance": null,
  2452. "targetOverrides": null,
  2453. "nestedPrefabInstanceRoots": null
  2454. },
  2455. {
  2456. "__type__": "cc.Node",
  2457. "_name": "pro_progress",
  2458. "_objFlags": 0,
  2459. "__editorExtras__": {},
  2460. "_parent": {
  2461. "__id__": 77
  2462. },
  2463. "_children": [
  2464. {
  2465. "__id__": 109
  2466. }
  2467. ],
  2468. "_active": true,
  2469. "_components": [
  2470. {
  2471. "__id__": 115
  2472. },
  2473. {
  2474. "__id__": 117
  2475. },
  2476. {
  2477. "__id__": 119
  2478. },
  2479. {
  2480. "__id__": 121
  2481. },
  2482. {
  2483. "__id__": 123
  2484. }
  2485. ],
  2486. "_prefab": {
  2487. "__id__": 125
  2488. },
  2489. "_lpos": {
  2490. "__type__": "cc.Vec3",
  2491. "x": -254.184,
  2492. "y": -67.294,
  2493. "z": 0
  2494. },
  2495. "_lrot": {
  2496. "__type__": "cc.Quat",
  2497. "x": 0,
  2498. "y": 0,
  2499. "z": 0,
  2500. "w": 1
  2501. },
  2502. "_lscale": {
  2503. "__type__": "cc.Vec3",
  2504. "x": 1,
  2505. "y": 1,
  2506. "z": 1
  2507. },
  2508. "_mobility": 0,
  2509. "_layer": 33554432,
  2510. "_euler": {
  2511. "__type__": "cc.Vec3",
  2512. "x": 0,
  2513. "y": 0,
  2514. "z": 0
  2515. },
  2516. "_id": ""
  2517. },
  2518. {
  2519. "__type__": "cc.Node",
  2520. "_name": "Bar",
  2521. "_objFlags": 0,
  2522. "__editorExtras__": {},
  2523. "_parent": {
  2524. "__id__": 108
  2525. },
  2526. "_children": [],
  2527. "_active": true,
  2528. "_components": [
  2529. {
  2530. "__id__": 110
  2531. },
  2532. {
  2533. "__id__": 112
  2534. }
  2535. ],
  2536. "_prefab": {
  2537. "__id__": 114
  2538. },
  2539. "_lpos": {
  2540. "__type__": "cc.Vec3",
  2541. "x": 1,
  2542. "y": 0,
  2543. "z": 0
  2544. },
  2545. "_lrot": {
  2546. "__type__": "cc.Quat",
  2547. "x": 0,
  2548. "y": 0,
  2549. "z": 0,
  2550. "w": 1
  2551. },
  2552. "_lscale": {
  2553. "__type__": "cc.Vec3",
  2554. "x": 1,
  2555. "y": 1,
  2556. "z": 1
  2557. },
  2558. "_mobility": 0,
  2559. "_layer": 33554432,
  2560. "_euler": {
  2561. "__type__": "cc.Vec3",
  2562. "x": 0,
  2563. "y": 0,
  2564. "z": 0
  2565. },
  2566. "_id": ""
  2567. },
  2568. {
  2569. "__type__": "cc.UITransform",
  2570. "_name": "",
  2571. "_objFlags": 0,
  2572. "__editorExtras__": {},
  2573. "node": {
  2574. "__id__": 109
  2575. },
  2576. "_enabled": true,
  2577. "__prefab": {
  2578. "__id__": 111
  2579. },
  2580. "_contentSize": {
  2581. "__type__": "cc.Size",
  2582. "width": 516,
  2583. "height": 23
  2584. },
  2585. "_anchorPoint": {
  2586. "__type__": "cc.Vec2",
  2587. "x": 0,
  2588. "y": 0.5
  2589. },
  2590. "_id": ""
  2591. },
  2592. {
  2593. "__type__": "cc.CompPrefabInfo",
  2594. "fileId": "74c6I4nw1NS6vzfj7jo+2x"
  2595. },
  2596. {
  2597. "__type__": "cc.Sprite",
  2598. "_name": "",
  2599. "_objFlags": 0,
  2600. "__editorExtras__": {},
  2601. "node": {
  2602. "__id__": 109
  2603. },
  2604. "_enabled": true,
  2605. "__prefab": {
  2606. "__id__": 113
  2607. },
  2608. "_customMaterial": null,
  2609. "_srcBlendFactor": 2,
  2610. "_dstBlendFactor": 4,
  2611. "_color": {
  2612. "__type__": "cc.Color",
  2613. "r": 255,
  2614. "g": 255,
  2615. "b": 255,
  2616. "a": 255
  2617. },
  2618. "_spriteFrame": {
  2619. "__uuid__": "e738cfa2-f6eb-4ede-8229-6b75cf462678@f9941",
  2620. "__expectedType__": "cc.SpriteFrame"
  2621. },
  2622. "_type": 3,
  2623. "_fillType": 0,
  2624. "_sizeMode": 0,
  2625. "_fillCenter": {
  2626. "__type__": "cc.Vec2",
  2627. "x": 0,
  2628. "y": 0
  2629. },
  2630. "_fillStart": 0,
  2631. "_fillRange": 0.7,
  2632. "_isTrimmedMode": true,
  2633. "_useGrayscale": false,
  2634. "_atlas": null,
  2635. "_id": ""
  2636. },
  2637. {
  2638. "__type__": "cc.CompPrefabInfo",
  2639. "fileId": "1a4zAvUnBD8rAJ5HwLI7T2"
  2640. },
  2641. {
  2642. "__type__": "cc.PrefabInfo",
  2643. "root": {
  2644. "__id__": 1
  2645. },
  2646. "asset": {
  2647. "__id__": 0
  2648. },
  2649. "fileId": "a77pV0Q0JPAZEOtpBj7bjj",
  2650. "instance": null,
  2651. "targetOverrides": null,
  2652. "nestedPrefabInstanceRoots": null
  2653. },
  2654. {
  2655. "__type__": "cc.UITransform",
  2656. "_name": "",
  2657. "_objFlags": 0,
  2658. "__editorExtras__": {},
  2659. "node": {
  2660. "__id__": 108
  2661. },
  2662. "_enabled": true,
  2663. "__prefab": {
  2664. "__id__": 116
  2665. },
  2666. "_contentSize": {
  2667. "__type__": "cc.Size",
  2668. "width": 516,
  2669. "height": 22
  2670. },
  2671. "_anchorPoint": {
  2672. "__type__": "cc.Vec2",
  2673. "x": 0,
  2674. "y": 0.5
  2675. },
  2676. "_id": ""
  2677. },
  2678. {
  2679. "__type__": "cc.CompPrefabInfo",
  2680. "fileId": "75vAPHoVtG3brgwhbVho+C"
  2681. },
  2682. {
  2683. "__type__": "cc.Sprite",
  2684. "_name": "",
  2685. "_objFlags": 0,
  2686. "__editorExtras__": {},
  2687. "node": {
  2688. "__id__": 108
  2689. },
  2690. "_enabled": true,
  2691. "__prefab": {
  2692. "__id__": 118
  2693. },
  2694. "_customMaterial": null,
  2695. "_srcBlendFactor": 2,
  2696. "_dstBlendFactor": 4,
  2697. "_color": {
  2698. "__type__": "cc.Color",
  2699. "r": 255,
  2700. "g": 255,
  2701. "b": 255,
  2702. "a": 255
  2703. },
  2704. "_spriteFrame": {
  2705. "__uuid__": "e902775f-4f3f-41d8-a5d1-09d24fae3430@f9941",
  2706. "__expectedType__": "cc.SpriteFrame"
  2707. },
  2708. "_type": 2,
  2709. "_fillType": 0,
  2710. "_sizeMode": 0,
  2711. "_fillCenter": {
  2712. "__type__": "cc.Vec2",
  2713. "x": 0,
  2714. "y": 0
  2715. },
  2716. "_fillStart": 0,
  2717. "_fillRange": 0,
  2718. "_isTrimmedMode": true,
  2719. "_useGrayscale": false,
  2720. "_atlas": null,
  2721. "_id": ""
  2722. },
  2723. {
  2724. "__type__": "cc.CompPrefabInfo",
  2725. "fileId": "cclLNyWoBDpphZYSCm0IUY"
  2726. },
  2727. {
  2728. "__type__": "cc.ProgressBar",
  2729. "_name": "",
  2730. "_objFlags": 0,
  2731. "__editorExtras__": {},
  2732. "node": {
  2733. "__id__": 108
  2734. },
  2735. "_enabled": true,
  2736. "__prefab": {
  2737. "__id__": 120
  2738. },
  2739. "_barSprite": {
  2740. "__id__": 112
  2741. },
  2742. "_mode": 2,
  2743. "_totalLength": 1,
  2744. "_progress": 0.7,
  2745. "_reverse": false,
  2746. "_id": ""
  2747. },
  2748. {
  2749. "__type__": "cc.CompPrefabInfo",
  2750. "fileId": "c4NJFKgrRGgaaCEJ3H3wEy"
  2751. },
  2752. {
  2753. "__type__": "2a50eqI7JZNV5Sh0y/Qd9C6",
  2754. "_name": "",
  2755. "_objFlags": 0,
  2756. "__editorExtras__": {},
  2757. "node": {
  2758. "__id__": 108
  2759. },
  2760. "_enabled": true,
  2761. "__prefab": {
  2762. "__id__": 122
  2763. },
  2764. "controller": false,
  2765. "watchPath": "",
  2766. "componentName": "cc.ProgressBar",
  2767. "componentProperty": "progress",
  2768. "refreshRate": 0.1,
  2769. "watchPathArr": [
  2770. "*.curGoldNum",
  2771. "*.handlingCharge"
  2772. ],
  2773. "stringFormat": "",
  2774. "_id": ""
  2775. },
  2776. {
  2777. "__type__": "cc.CompPrefabInfo",
  2778. "fileId": "e5j8tpCmJKEpquJhnXOp6T"
  2779. },
  2780. {
  2781. "__type__": "47052uw/Y5O1LXaLObj4ARx",
  2782. "_name": "",
  2783. "_objFlags": 0,
  2784. "__editorExtras__": {},
  2785. "node": {
  2786. "__id__": 108
  2787. },
  2788. "_enabled": true,
  2789. "__prefab": {
  2790. "__id__": 124
  2791. },
  2792. "watchPath": "*.curGoldNum",
  2793. "foreachChildMode": false,
  2794. "condition": 2,
  2795. "foreachChildType": 0,
  2796. "valueA": 0,
  2797. "valueB": 0,
  2798. "valueAction": 0,
  2799. "valueActionOpacity": 0,
  2800. "valueActionColor": {
  2801. "__type__": "cc.Color",
  2802. "r": 155,
  2803. "g": 155,
  2804. "b": 155,
  2805. "a": 255
  2806. },
  2807. "valueComponentName": "",
  2808. "valueComponentProperty": "",
  2809. "valueComponentDefaultValue": "",
  2810. "valueComponentActionValue": "",
  2811. "watchNodes": [
  2812. {
  2813. "__id__": 109
  2814. }
  2815. ],
  2816. "_id": ""
  2817. },
  2818. {
  2819. "__type__": "cc.CompPrefabInfo",
  2820. "fileId": "11LMxggRFL6qIqGEIaMyOB"
  2821. },
  2822. {
  2823. "__type__": "cc.PrefabInfo",
  2824. "root": {
  2825. "__id__": 1
  2826. },
  2827. "asset": {
  2828. "__id__": 0
  2829. },
  2830. "fileId": "dbn6B/pqpPIqhWeCS0SBvv",
  2831. "instance": null,
  2832. "targetOverrides": null,
  2833. "nestedPrefabInstanceRoots": null
  2834. },
  2835. {
  2836. "__type__": "cc.Node",
  2837. "_name": "icon_2",
  2838. "_objFlags": 0,
  2839. "__editorExtras__": {},
  2840. "_parent": {
  2841. "__id__": 77
  2842. },
  2843. "_children": [],
  2844. "_active": true,
  2845. "_components": [
  2846. {
  2847. "__id__": 127
  2848. },
  2849. {
  2850. "__id__": 129
  2851. }
  2852. ],
  2853. "_prefab": {
  2854. "__id__": 131
  2855. },
  2856. "_lpos": {
  2857. "__type__": "cc.Vec3",
  2858. "x": 36.744,
  2859. "y": -64.69,
  2860. "z": 0
  2861. },
  2862. "_lrot": {
  2863. "__type__": "cc.Quat",
  2864. "x": 0,
  2865. "y": 0,
  2866. "z": 0,
  2867. "w": 1
  2868. },
  2869. "_lscale": {
  2870. "__type__": "cc.Vec3",
  2871. "x": 1,
  2872. "y": 1,
  2873. "z": 1
  2874. },
  2875. "_mobility": 0,
  2876. "_layer": 33554432,
  2877. "_euler": {
  2878. "__type__": "cc.Vec3",
  2879. "x": 0,
  2880. "y": 0,
  2881. "z": 0
  2882. },
  2883. "_id": ""
  2884. },
  2885. {
  2886. "__type__": "cc.UITransform",
  2887. "_name": "",
  2888. "_objFlags": 0,
  2889. "__editorExtras__": {},
  2890. "node": {
  2891. "__id__": 126
  2892. },
  2893. "_enabled": true,
  2894. "__prefab": {
  2895. "__id__": 128
  2896. },
  2897. "_contentSize": {
  2898. "__type__": "cc.Size",
  2899. "width": 50,
  2900. "height": 56
  2901. },
  2902. "_anchorPoint": {
  2903. "__type__": "cc.Vec2",
  2904. "x": 0.5,
  2905. "y": 0.5
  2906. },
  2907. "_id": ""
  2908. },
  2909. {
  2910. "__type__": "cc.CompPrefabInfo",
  2911. "fileId": "92RaQYWGdK84dAYuAnyAmV"
  2912. },
  2913. {
  2914. "__type__": "cc.Sprite",
  2915. "_name": "",
  2916. "_objFlags": 0,
  2917. "__editorExtras__": {},
  2918. "node": {
  2919. "__id__": 126
  2920. },
  2921. "_enabled": true,
  2922. "__prefab": {
  2923. "__id__": 130
  2924. },
  2925. "_customMaterial": null,
  2926. "_srcBlendFactor": 2,
  2927. "_dstBlendFactor": 4,
  2928. "_color": {
  2929. "__type__": "cc.Color",
  2930. "r": 255,
  2931. "g": 255,
  2932. "b": 255,
  2933. "a": 255
  2934. },
  2935. "_spriteFrame": {
  2936. "__uuid__": "b26678f8-846f-4447-bd57-0659cca862e1@f9941",
  2937. "__expectedType__": "cc.SpriteFrame"
  2938. },
  2939. "_type": 0,
  2940. "_fillType": 0,
  2941. "_sizeMode": 1,
  2942. "_fillCenter": {
  2943. "__type__": "cc.Vec2",
  2944. "x": 0,
  2945. "y": 0
  2946. },
  2947. "_fillStart": 0,
  2948. "_fillRange": 0,
  2949. "_isTrimmedMode": true,
  2950. "_useGrayscale": false,
  2951. "_atlas": null,
  2952. "_id": ""
  2953. },
  2954. {
  2955. "__type__": "cc.CompPrefabInfo",
  2956. "fileId": "a7Kf3dHepPrqpLAxaPoumZ"
  2957. },
  2958. {
  2959. "__type__": "cc.PrefabInfo",
  2960. "root": {
  2961. "__id__": 1
  2962. },
  2963. "asset": {
  2964. "__id__": 0
  2965. },
  2966. "fileId": "c016HgLjlPUJLhuy4dZEsm",
  2967. "instance": null,
  2968. "targetOverrides": null,
  2969. "nestedPrefabInstanceRoots": null
  2970. },
  2971. {
  2972. "__type__": "cc.UITransform",
  2973. "_name": "",
  2974. "_objFlags": 0,
  2975. "__editorExtras__": {},
  2976. "node": {
  2977. "__id__": 77
  2978. },
  2979. "_enabled": true,
  2980. "__prefab": {
  2981. "__id__": 133
  2982. },
  2983. "_contentSize": {
  2984. "__type__": "cc.Size",
  2985. "width": 700,
  2986. "height": 260
  2987. },
  2988. "_anchorPoint": {
  2989. "__type__": "cc.Vec2",
  2990. "x": 0.5,
  2991. "y": 0.5
  2992. },
  2993. "_id": ""
  2994. },
  2995. {
  2996. "__type__": "cc.CompPrefabInfo",
  2997. "fileId": "26NAgEA75MAZiBVMyK7h4r"
  2998. },
  2999. {
  3000. "__type__": "cc.PrefabInfo",
  3001. "root": {
  3002. "__id__": 1
  3003. },
  3004. "asset": {
  3005. "__id__": 0
  3006. },
  3007. "fileId": "895zlJlJ5JFb1lG0twOxso",
  3008. "instance": null,
  3009. "targetOverrides": null,
  3010. "nestedPrefabInstanceRoots": null
  3011. },
  3012. {
  3013. "__type__": "cc.Node",
  3014. "_name": "tips_node2",
  3015. "_objFlags": 0,
  3016. "__editorExtras__": {},
  3017. "_parent": {
  3018. "__id__": 76
  3019. },
  3020. "_children": [
  3021. {
  3022. "__id__": 136
  3023. },
  3024. {
  3025. "__id__": 144
  3026. },
  3027. {
  3028. "__id__": 162
  3029. }
  3030. ],
  3031. "_active": false,
  3032. "_components": [
  3033. {
  3034. "__id__": 166
  3035. }
  3036. ],
  3037. "_prefab": {
  3038. "__id__": 168
  3039. },
  3040. "_lpos": {
  3041. "__type__": "cc.Vec3",
  3042. "x": 0,
  3043. "y": 0,
  3044. "z": 0
  3045. },
  3046. "_lrot": {
  3047. "__type__": "cc.Quat",
  3048. "x": 0,
  3049. "y": 0,
  3050. "z": 0,
  3051. "w": 1
  3052. },
  3053. "_lscale": {
  3054. "__type__": "cc.Vec3",
  3055. "x": 1,
  3056. "y": 1,
  3057. "z": 1
  3058. },
  3059. "_mobility": 0,
  3060. "_layer": 33554432,
  3061. "_euler": {
  3062. "__type__": "cc.Vec3",
  3063. "x": 0,
  3064. "y": 0,
  3065. "z": 0
  3066. },
  3067. "_id": ""
  3068. },
  3069. {
  3070. "__type__": "cc.Node",
  3071. "_name": "lab_title",
  3072. "_objFlags": 0,
  3073. "__editorExtras__": {},
  3074. "_parent": {
  3075. "__id__": 135
  3076. },
  3077. "_children": [],
  3078. "_active": true,
  3079. "_components": [
  3080. {
  3081. "__id__": 137
  3082. },
  3083. {
  3084. "__id__": 139
  3085. },
  3086. {
  3087. "__id__": 141
  3088. }
  3089. ],
  3090. "_prefab": {
  3091. "__id__": 143
  3092. },
  3093. "_lpos": {
  3094. "__type__": "cc.Vec3",
  3095. "x": -1.148,
  3096. "y": 80.155,
  3097. "z": 0
  3098. },
  3099. "_lrot": {
  3100. "__type__": "cc.Quat",
  3101. "x": 0,
  3102. "y": 0,
  3103. "z": 0,
  3104. "w": 1
  3105. },
  3106. "_lscale": {
  3107. "__type__": "cc.Vec3",
  3108. "x": 1,
  3109. "y": 1,
  3110. "z": 1
  3111. },
  3112. "_mobility": 0,
  3113. "_layer": 33554432,
  3114. "_euler": {
  3115. "__type__": "cc.Vec3",
  3116. "x": 0,
  3117. "y": 0,
  3118. "z": 0
  3119. },
  3120. "_id": ""
  3121. },
  3122. {
  3123. "__type__": "cc.UITransform",
  3124. "_name": "",
  3125. "_objFlags": 0,
  3126. "__editorExtras__": {},
  3127. "node": {
  3128. "__id__": 136
  3129. },
  3130. "_enabled": true,
  3131. "__prefab": {
  3132. "__id__": 138
  3133. },
  3134. "_contentSize": {
  3135. "__type__": "cc.Size",
  3136. "width": 309.41015625,
  3137. "height": 50.4
  3138. },
  3139. "_anchorPoint": {
  3140. "__type__": "cc.Vec2",
  3141. "x": 0.5,
  3142. "y": 0.5
  3143. },
  3144. "_id": ""
  3145. },
  3146. {
  3147. "__type__": "cc.CompPrefabInfo",
  3148. "fileId": "30/YcHb0NHyb2zlisOMdVh"
  3149. },
  3150. {
  3151. "__type__": "cc.Label",
  3152. "_name": "",
  3153. "_objFlags": 0,
  3154. "__editorExtras__": {},
  3155. "node": {
  3156. "__id__": 136
  3157. },
  3158. "_enabled": true,
  3159. "__prefab": {
  3160. "__id__": 140
  3161. },
  3162. "_customMaterial": null,
  3163. "_srcBlendFactor": 2,
  3164. "_dstBlendFactor": 4,
  3165. "_color": {
  3166. "__type__": "cc.Color",
  3167. "r": 179,
  3168. "g": 130,
  3169. "b": 24,
  3170. "a": 255
  3171. },
  3172. "_string": "再收集{{0}}块金砖,自动提现",
  3173. "_horizontalAlign": 1,
  3174. "_verticalAlign": 1,
  3175. "_actualFontSize": 24,
  3176. "_fontSize": 24,
  3177. "_fontFamily": "Arial",
  3178. "_lineHeight": 40,
  3179. "_overflow": 0,
  3180. "_enableWrapText": true,
  3181. "_font": null,
  3182. "_isSystemFontUsed": true,
  3183. "_spacingX": 0,
  3184. "_isItalic": false,
  3185. "_isBold": false,
  3186. "_isUnderline": false,
  3187. "_underlineHeight": 2,
  3188. "_cacheMode": 0,
  3189. "_enableOutline": false,
  3190. "_outlineColor": {
  3191. "__type__": "cc.Color",
  3192. "r": 0,
  3193. "g": 0,
  3194. "b": 0,
  3195. "a": 255
  3196. },
  3197. "_outlineWidth": 2,
  3198. "_enableShadow": false,
  3199. "_shadowColor": {
  3200. "__type__": "cc.Color",
  3201. "r": 0,
  3202. "g": 0,
  3203. "b": 0,
  3204. "a": 255
  3205. },
  3206. "_shadowOffset": {
  3207. "__type__": "cc.Vec2",
  3208. "x": 2,
  3209. "y": 2
  3210. },
  3211. "_shadowBlur": 2,
  3212. "_id": ""
  3213. },
  3214. {
  3215. "__type__": "cc.CompPrefabInfo",
  3216. "fileId": "17U3yq42dFPKi5zL2KrsC6"
  3217. },
  3218. {
  3219. "__type__": "545c05XsG9GDJispEGWKvYv",
  3220. "_name": "",
  3221. "_objFlags": 0,
  3222. "__editorExtras__": {},
  3223. "node": {
  3224. "__id__": 136
  3225. },
  3226. "_enabled": true,
  3227. "__prefab": {
  3228. "__id__": 142
  3229. },
  3230. "templateMode": true,
  3231. "watchPath": "",
  3232. "labelType": "cc.Label",
  3233. "watchPathArr": [
  3234. "*.goldNum"
  3235. ],
  3236. "_id": ""
  3237. },
  3238. {
  3239. "__type__": "cc.CompPrefabInfo",
  3240. "fileId": "eaHrnj7iFIA7oIsATcGRV+"
  3241. },
  3242. {
  3243. "__type__": "cc.PrefabInfo",
  3244. "root": {
  3245. "__id__": 1
  3246. },
  3247. "asset": {
  3248. "__id__": 0
  3249. },
  3250. "fileId": "237/m1UCZN0pcBU1kYHhio",
  3251. "instance": null,
  3252. "targetOverrides": null,
  3253. "nestedPrefabInstanceRoots": null
  3254. },
  3255. {
  3256. "__type__": "cc.Node",
  3257. "_name": "pro_progress",
  3258. "_objFlags": 0,
  3259. "__editorExtras__": {},
  3260. "_parent": {
  3261. "__id__": 135
  3262. },
  3263. "_children": [
  3264. {
  3265. "__id__": 145
  3266. }
  3267. ],
  3268. "_active": true,
  3269. "_components": [
  3270. {
  3271. "__id__": 151
  3272. },
  3273. {
  3274. "__id__": 153
  3275. },
  3276. {
  3277. "__id__": 155
  3278. },
  3279. {
  3280. "__id__": 157
  3281. },
  3282. {
  3283. "__id__": 159
  3284. }
  3285. ],
  3286. "_prefab": {
  3287. "__id__": 161
  3288. },
  3289. "_lpos": {
  3290. "__type__": "cc.Vec3",
  3291. "x": -254.184,
  3292. "y": -61.338,
  3293. "z": 0
  3294. },
  3295. "_lrot": {
  3296. "__type__": "cc.Quat",
  3297. "x": 0,
  3298. "y": 0,
  3299. "z": 0,
  3300. "w": 1
  3301. },
  3302. "_lscale": {
  3303. "__type__": "cc.Vec3",
  3304. "x": 1,
  3305. "y": 1,
  3306. "z": 1
  3307. },
  3308. "_mobility": 0,
  3309. "_layer": 33554432,
  3310. "_euler": {
  3311. "__type__": "cc.Vec3",
  3312. "x": 0,
  3313. "y": 0,
  3314. "z": 0
  3315. },
  3316. "_id": ""
  3317. },
  3318. {
  3319. "__type__": "cc.Node",
  3320. "_name": "Bar",
  3321. "_objFlags": 0,
  3322. "__editorExtras__": {},
  3323. "_parent": {
  3324. "__id__": 144
  3325. },
  3326. "_children": [],
  3327. "_active": true,
  3328. "_components": [
  3329. {
  3330. "__id__": 146
  3331. },
  3332. {
  3333. "__id__": 148
  3334. }
  3335. ],
  3336. "_prefab": {
  3337. "__id__": 150
  3338. },
  3339. "_lpos": {
  3340. "__type__": "cc.Vec3",
  3341. "x": 1,
  3342. "y": 0,
  3343. "z": 0
  3344. },
  3345. "_lrot": {
  3346. "__type__": "cc.Quat",
  3347. "x": 0,
  3348. "y": 0,
  3349. "z": 0,
  3350. "w": 1
  3351. },
  3352. "_lscale": {
  3353. "__type__": "cc.Vec3",
  3354. "x": 1,
  3355. "y": 1,
  3356. "z": 1
  3357. },
  3358. "_mobility": 0,
  3359. "_layer": 33554432,
  3360. "_euler": {
  3361. "__type__": "cc.Vec3",
  3362. "x": 0,
  3363. "y": 0,
  3364. "z": 0
  3365. },
  3366. "_id": ""
  3367. },
  3368. {
  3369. "__type__": "cc.UITransform",
  3370. "_name": "",
  3371. "_objFlags": 0,
  3372. "__editorExtras__": {},
  3373. "node": {
  3374. "__id__": 145
  3375. },
  3376. "_enabled": true,
  3377. "__prefab": {
  3378. "__id__": 147
  3379. },
  3380. "_contentSize": {
  3381. "__type__": "cc.Size",
  3382. "width": 516,
  3383. "height": 23
  3384. },
  3385. "_anchorPoint": {
  3386. "__type__": "cc.Vec2",
  3387. "x": 0,
  3388. "y": 0.5
  3389. },
  3390. "_id": ""
  3391. },
  3392. {
  3393. "__type__": "cc.CompPrefabInfo",
  3394. "fileId": "9buoP220RMMrIKWCNKoGtq"
  3395. },
  3396. {
  3397. "__type__": "cc.Sprite",
  3398. "_name": "",
  3399. "_objFlags": 0,
  3400. "__editorExtras__": {},
  3401. "node": {
  3402. "__id__": 145
  3403. },
  3404. "_enabled": true,
  3405. "__prefab": {
  3406. "__id__": 149
  3407. },
  3408. "_customMaterial": null,
  3409. "_srcBlendFactor": 2,
  3410. "_dstBlendFactor": 4,
  3411. "_color": {
  3412. "__type__": "cc.Color",
  3413. "r": 255,
  3414. "g": 255,
  3415. "b": 255,
  3416. "a": 255
  3417. },
  3418. "_spriteFrame": {
  3419. "__uuid__": "e738cfa2-f6eb-4ede-8229-6b75cf462678@f9941",
  3420. "__expectedType__": "cc.SpriteFrame"
  3421. },
  3422. "_type": 3,
  3423. "_fillType": 0,
  3424. "_sizeMode": 0,
  3425. "_fillCenter": {
  3426. "__type__": "cc.Vec2",
  3427. "x": 0,
  3428. "y": 0
  3429. },
  3430. "_fillStart": 0,
  3431. "_fillRange": 0,
  3432. "_isTrimmedMode": true,
  3433. "_useGrayscale": false,
  3434. "_atlas": null,
  3435. "_id": ""
  3436. },
  3437. {
  3438. "__type__": "cc.CompPrefabInfo",
  3439. "fileId": "0aLdufFzZHZ7JtNotVgqOf"
  3440. },
  3441. {
  3442. "__type__": "cc.PrefabInfo",
  3443. "root": {
  3444. "__id__": 1
  3445. },
  3446. "asset": {
  3447. "__id__": 0
  3448. },
  3449. "fileId": "7cdm5jeapE/5lk2kWel68c",
  3450. "instance": null,
  3451. "targetOverrides": null,
  3452. "nestedPrefabInstanceRoots": null
  3453. },
  3454. {
  3455. "__type__": "cc.UITransform",
  3456. "_name": "",
  3457. "_objFlags": 0,
  3458. "__editorExtras__": {},
  3459. "node": {
  3460. "__id__": 144
  3461. },
  3462. "_enabled": true,
  3463. "__prefab": {
  3464. "__id__": 152
  3465. },
  3466. "_contentSize": {
  3467. "__type__": "cc.Size",
  3468. "width": 516,
  3469. "height": 22
  3470. },
  3471. "_anchorPoint": {
  3472. "__type__": "cc.Vec2",
  3473. "x": 0,
  3474. "y": 0.5
  3475. },
  3476. "_id": ""
  3477. },
  3478. {
  3479. "__type__": "cc.CompPrefabInfo",
  3480. "fileId": "1fX9SQcQFBz6leQ8zL4f75"
  3481. },
  3482. {
  3483. "__type__": "cc.Sprite",
  3484. "_name": "",
  3485. "_objFlags": 0,
  3486. "__editorExtras__": {},
  3487. "node": {
  3488. "__id__": 144
  3489. },
  3490. "_enabled": true,
  3491. "__prefab": {
  3492. "__id__": 154
  3493. },
  3494. "_customMaterial": null,
  3495. "_srcBlendFactor": 2,
  3496. "_dstBlendFactor": 4,
  3497. "_color": {
  3498. "__type__": "cc.Color",
  3499. "r": 255,
  3500. "g": 255,
  3501. "b": 255,
  3502. "a": 255
  3503. },
  3504. "_spriteFrame": {
  3505. "__uuid__": "e902775f-4f3f-41d8-a5d1-09d24fae3430@f9941",
  3506. "__expectedType__": "cc.SpriteFrame"
  3507. },
  3508. "_type": 2,
  3509. "_fillType": 0,
  3510. "_sizeMode": 0,
  3511. "_fillCenter": {
  3512. "__type__": "cc.Vec2",
  3513. "x": 0,
  3514. "y": 0
  3515. },
  3516. "_fillStart": 0,
  3517. "_fillRange": 0,
  3518. "_isTrimmedMode": true,
  3519. "_useGrayscale": false,
  3520. "_atlas": null,
  3521. "_id": ""
  3522. },
  3523. {
  3524. "__type__": "cc.CompPrefabInfo",
  3525. "fileId": "c9RL1ztkhGy5nIzd/L+lkW"
  3526. },
  3527. {
  3528. "__type__": "cc.ProgressBar",
  3529. "_name": "",
  3530. "_objFlags": 0,
  3531. "__editorExtras__": {},
  3532. "node": {
  3533. "__id__": 144
  3534. },
  3535. "_enabled": true,
  3536. "__prefab": {
  3537. "__id__": 156
  3538. },
  3539. "_barSprite": {
  3540. "__id__": 148
  3541. },
  3542. "_mode": 2,
  3543. "_totalLength": 1,
  3544. "_progress": 0,
  3545. "_reverse": false,
  3546. "_id": ""
  3547. },
  3548. {
  3549. "__type__": "cc.CompPrefabInfo",
  3550. "fileId": "f9LD1622dMdLOVYHtmG4qp"
  3551. },
  3552. {
  3553. "__type__": "2a50eqI7JZNV5Sh0y/Qd9C6",
  3554. "_name": "",
  3555. "_objFlags": 0,
  3556. "__editorExtras__": {},
  3557. "node": {
  3558. "__id__": 144
  3559. },
  3560. "_enabled": true,
  3561. "__prefab": {
  3562. "__id__": 158
  3563. },
  3564. "controller": false,
  3565. "watchPath": "",
  3566. "componentName": "cc.ProgressBar",
  3567. "componentProperty": "progress",
  3568. "refreshRate": 0.1,
  3569. "watchPathArr": [
  3570. "*.curGoldNum",
  3571. "*.handlingCharge"
  3572. ],
  3573. "stringFormat": "",
  3574. "_id": ""
  3575. },
  3576. {
  3577. "__type__": "cc.CompPrefabInfo",
  3578. "fileId": "6eedBC/KRC0phPVOiirr0M"
  3579. },
  3580. {
  3581. "__type__": "47052uw/Y5O1LXaLObj4ARx",
  3582. "_name": "",
  3583. "_objFlags": 0,
  3584. "__editorExtras__": {},
  3585. "node": {
  3586. "__id__": 144
  3587. },
  3588. "_enabled": true,
  3589. "__prefab": {
  3590. "__id__": 160
  3591. },
  3592. "watchPath": "*.curGoldNum",
  3593. "foreachChildMode": false,
  3594. "condition": 2,
  3595. "foreachChildType": 0,
  3596. "valueA": 0,
  3597. "valueB": 0,
  3598. "valueAction": 0,
  3599. "valueActionOpacity": 0,
  3600. "valueActionColor": {
  3601. "__type__": "cc.Color",
  3602. "r": 155,
  3603. "g": 155,
  3604. "b": 155,
  3605. "a": 255
  3606. },
  3607. "valueComponentName": "",
  3608. "valueComponentProperty": "",
  3609. "valueComponentDefaultValue": "",
  3610. "valueComponentActionValue": "",
  3611. "watchNodes": [
  3612. {
  3613. "__id__": 145
  3614. }
  3615. ],
  3616. "_id": ""
  3617. },
  3618. {
  3619. "__type__": "cc.CompPrefabInfo",
  3620. "fileId": "a3RV4Mw5VKRqD4ULClFhzI"
  3621. },
  3622. {
  3623. "__type__": "cc.PrefabInfo",
  3624. "root": {
  3625. "__id__": 1
  3626. },
  3627. "asset": {
  3628. "__id__": 0
  3629. },
  3630. "fileId": "00E/dslRVI1ZGypOj8tSCv",
  3631. "instance": null,
  3632. "targetOverrides": null,
  3633. "nestedPrefabInstanceRoots": null
  3634. },
  3635. {
  3636. "__type__": "cc.Node",
  3637. "_name": "itemList",
  3638. "_objFlags": 0,
  3639. "__editorExtras__": {},
  3640. "_parent": {
  3641. "__id__": 135
  3642. },
  3643. "_children": [],
  3644. "_active": true,
  3645. "_components": [
  3646. {
  3647. "__id__": 163
  3648. }
  3649. ],
  3650. "_prefab": {
  3651. "__id__": 165
  3652. },
  3653. "_lpos": {
  3654. "__type__": "cc.Vec3",
  3655. "x": 0,
  3656. "y": -61.054,
  3657. "z": 0
  3658. },
  3659. "_lrot": {
  3660. "__type__": "cc.Quat",
  3661. "x": 0,
  3662. "y": 0,
  3663. "z": 0,
  3664. "w": 1
  3665. },
  3666. "_lscale": {
  3667. "__type__": "cc.Vec3",
  3668. "x": 1,
  3669. "y": 1,
  3670. "z": 1
  3671. },
  3672. "_mobility": 0,
  3673. "_layer": 33554432,
  3674. "_euler": {
  3675. "__type__": "cc.Vec3",
  3676. "x": 0,
  3677. "y": 0,
  3678. "z": 0
  3679. },
  3680. "_id": ""
  3681. },
  3682. {
  3683. "__type__": "cc.UITransform",
  3684. "_name": "",
  3685. "_objFlags": 0,
  3686. "__editorExtras__": {},
  3687. "node": {
  3688. "__id__": 162
  3689. },
  3690. "_enabled": true,
  3691. "__prefab": {
  3692. "__id__": 164
  3693. },
  3694. "_contentSize": {
  3695. "__type__": "cc.Size",
  3696. "width": 520,
  3697. "height": 100
  3698. },
  3699. "_anchorPoint": {
  3700. "__type__": "cc.Vec2",
  3701. "x": 0.5,
  3702. "y": 0.5
  3703. },
  3704. "_id": ""
  3705. },
  3706. {
  3707. "__type__": "cc.CompPrefabInfo",
  3708. "fileId": "27WKJ1QHpMFZTyCPTQlsGH"
  3709. },
  3710. {
  3711. "__type__": "cc.PrefabInfo",
  3712. "root": {
  3713. "__id__": 1
  3714. },
  3715. "asset": {
  3716. "__id__": 0
  3717. },
  3718. "fileId": "42ytUXVwNJ/4MgmDy3bbto",
  3719. "instance": null,
  3720. "targetOverrides": null,
  3721. "nestedPrefabInstanceRoots": null
  3722. },
  3723. {
  3724. "__type__": "cc.UITransform",
  3725. "_name": "",
  3726. "_objFlags": 0,
  3727. "__editorExtras__": {},
  3728. "node": {
  3729. "__id__": 135
  3730. },
  3731. "_enabled": true,
  3732. "__prefab": {
  3733. "__id__": 167
  3734. },
  3735. "_contentSize": {
  3736. "__type__": "cc.Size",
  3737. "width": 700,
  3738. "height": 260
  3739. },
  3740. "_anchorPoint": {
  3741. "__type__": "cc.Vec2",
  3742. "x": 0.5,
  3743. "y": 0.5
  3744. },
  3745. "_id": ""
  3746. },
  3747. {
  3748. "__type__": "cc.CompPrefabInfo",
  3749. "fileId": "2crfj9jdJE6oFYc9XhVP6B"
  3750. },
  3751. {
  3752. "__type__": "cc.PrefabInfo",
  3753. "root": {
  3754. "__id__": 1
  3755. },
  3756. "asset": {
  3757. "__id__": 0
  3758. },
  3759. "fileId": "6cWcBXDJlFr6zQtvGVXDSy",
  3760. "instance": null,
  3761. "targetOverrides": null,
  3762. "nestedPrefabInstanceRoots": null
  3763. },
  3764. {
  3765. "__type__": "cc.UITransform",
  3766. "_name": "",
  3767. "_objFlags": 0,
  3768. "__editorExtras__": {},
  3769. "node": {
  3770. "__id__": 76
  3771. },
  3772. "_enabled": true,
  3773. "__prefab": {
  3774. "__id__": 170
  3775. },
  3776. "_contentSize": {
  3777. "__type__": "cc.Size",
  3778. "width": 676,
  3779. "height": 254
  3780. },
  3781. "_anchorPoint": {
  3782. "__type__": "cc.Vec2",
  3783. "x": 0.5,
  3784. "y": 0.5
  3785. },
  3786. "_id": ""
  3787. },
  3788. {
  3789. "__type__": "cc.CompPrefabInfo",
  3790. "fileId": "6fhnrN+MhFGrXkTUHIr10N"
  3791. },
  3792. {
  3793. "__type__": "cc.Sprite",
  3794. "_name": "",
  3795. "_objFlags": 0,
  3796. "__editorExtras__": {},
  3797. "node": {
  3798. "__id__": 76
  3799. },
  3800. "_enabled": true,
  3801. "__prefab": {
  3802. "__id__": 172
  3803. },
  3804. "_customMaterial": null,
  3805. "_srcBlendFactor": 2,
  3806. "_dstBlendFactor": 4,
  3807. "_color": {
  3808. "__type__": "cc.Color",
  3809. "r": 255,
  3810. "g": 255,
  3811. "b": 255,
  3812. "a": 255
  3813. },
  3814. "_spriteFrame": {
  3815. "__uuid__": "a4248c06-2c2e-4064-b25e-6dba1a7c8543@f9941",
  3816. "__expectedType__": "cc.SpriteFrame"
  3817. },
  3818. "_type": 1,
  3819. "_fillType": 0,
  3820. "_sizeMode": 2,
  3821. "_fillCenter": {
  3822. "__type__": "cc.Vec2",
  3823. "x": 0,
  3824. "y": 0
  3825. },
  3826. "_fillStart": 0,
  3827. "_fillRange": 0,
  3828. "_isTrimmedMode": true,
  3829. "_useGrayscale": false,
  3830. "_atlas": null,
  3831. "_id": ""
  3832. },
  3833. {
  3834. "__type__": "cc.CompPrefabInfo",
  3835. "fileId": "0fAuzgMQhIeLuZctHiWs+Q"
  3836. },
  3837. {
  3838. "__type__": "cc.PrefabInfo",
  3839. "root": {
  3840. "__id__": 1
  3841. },
  3842. "asset": {
  3843. "__id__": 0
  3844. },
  3845. "fileId": "4eZproHcxECr6gIydFW2Qt",
  3846. "instance": null,
  3847. "targetOverrides": null,
  3848. "nestedPrefabInstanceRoots": null
  3849. },
  3850. {
  3851. "__type__": "cc.Node",
  3852. "_name": "Node",
  3853. "_objFlags": 0,
  3854. "__editorExtras__": {},
  3855. "_parent": {
  3856. "__id__": 1
  3857. },
  3858. "_children": [],
  3859. "_active": true,
  3860. "_components": [
  3861. {
  3862. "__id__": 175
  3863. },
  3864. {
  3865. "__id__": 177
  3866. }
  3867. ],
  3868. "_prefab": {
  3869. "__id__": 179
  3870. },
  3871. "_lpos": {
  3872. "__type__": "cc.Vec3",
  3873. "x": 330.825,
  3874. "y": -318.766,
  3875. "z": 0
  3876. },
  3877. "_lrot": {
  3878. "__type__": "cc.Quat",
  3879. "x": 0,
  3880. "y": 0,
  3881. "z": 0,
  3882. "w": 1
  3883. },
  3884. "_lscale": {
  3885. "__type__": "cc.Vec3",
  3886. "x": 1,
  3887. "y": 1,
  3888. "z": 1
  3889. },
  3890. "_mobility": 0,
  3891. "_layer": 33554432,
  3892. "_euler": {
  3893. "__type__": "cc.Vec3",
  3894. "x": 0,
  3895. "y": 0,
  3896. "z": 0
  3897. },
  3898. "_id": ""
  3899. },
  3900. {
  3901. "__type__": "cc.UITransform",
  3902. "_name": "",
  3903. "_objFlags": 0,
  3904. "__editorExtras__": {},
  3905. "node": {
  3906. "__id__": 174
  3907. },
  3908. "_enabled": true,
  3909. "__prefab": {
  3910. "__id__": 176
  3911. },
  3912. "_contentSize": {
  3913. "__type__": "cc.Size",
  3914. "width": 180,
  3915. "height": 195
  3916. },
  3917. "_anchorPoint": {
  3918. "__type__": "cc.Vec2",
  3919. "x": 0.5,
  3920. "y": 0.5
  3921. },
  3922. "_id": ""
  3923. },
  3924. {
  3925. "__type__": "cc.CompPrefabInfo",
  3926. "fileId": "e1qc/vtY1BiqrfGtFa5etU"
  3927. },
  3928. {
  3929. "__type__": "dragonBones.ArmatureDisplay",
  3930. "_name": "",
  3931. "_objFlags": 0,
  3932. "__editorExtras__": {},
  3933. "node": {
  3934. "__id__": 174
  3935. },
  3936. "_enabled": true,
  3937. "__prefab": {
  3938. "__id__": 178
  3939. },
  3940. "_customMaterial": null,
  3941. "_srcBlendFactor": 2,
  3942. "_dstBlendFactor": 4,
  3943. "_color": {
  3944. "__type__": "cc.Color",
  3945. "r": 255,
  3946. "g": 255,
  3947. "b": 255,
  3948. "a": 255
  3949. },
  3950. "playTimes": -1,
  3951. "premultipliedAlpha": false,
  3952. "_defaultArmatureIndexValue": 0,
  3953. "_dragonAsset": {
  3954. "__uuid__": "3bb38972-7753-4c70-a62a-eef56011c90a",
  3955. "__expectedType__": "dragonBones.DragonBonesAsset"
  3956. },
  3957. "_dragonAtlasAsset": {
  3958. "__uuid__": "bb8091c7-c86b-43aa-a918-7106553e4736",
  3959. "__expectedType__": "dragonBones.DragonBonesAtlasAsset"
  3960. },
  3961. "_armatureName": "Armature",
  3962. "_animationName": "newAnimation",
  3963. "_animationIndexValue": 1,
  3964. "_defaultCacheModeValue": 0,
  3965. "_timeScale": 1,
  3966. "_playTimes": -1,
  3967. "_debugBones": false,
  3968. "_enableBatch": false,
  3969. "_sockets": [],
  3970. "_id": ""
  3971. },
  3972. {
  3973. "__type__": "cc.CompPrefabInfo",
  3974. "fileId": "d0+Bmdn0JH/rIsQBevXgfm"
  3975. },
  3976. {
  3977. "__type__": "cc.PrefabInfo",
  3978. "root": {
  3979. "__id__": 1
  3980. },
  3981. "asset": {
  3982. "__id__": 0
  3983. },
  3984. "fileId": "66l4S/C+hDKJluHd1KpLe4",
  3985. "instance": null,
  3986. "targetOverrides": null,
  3987. "nestedPrefabInstanceRoots": null
  3988. },
  3989. {
  3990. "__type__": "cc.UITransform",
  3991. "_name": "",
  3992. "_objFlags": 0,
  3993. "__editorExtras__": {},
  3994. "node": {
  3995. "__id__": 1
  3996. },
  3997. "_enabled": true,
  3998. "__prefab": {
  3999. "__id__": 181
  4000. },
  4001. "_contentSize": {
  4002. "__type__": "cc.Size",
  4003. "width": 720,
  4004. "height": 1600
  4005. },
  4006. "_anchorPoint": {
  4007. "__type__": "cc.Vec2",
  4008. "x": 0.5,
  4009. "y": 0.5
  4010. },
  4011. "_id": ""
  4012. },
  4013. {
  4014. "__type__": "cc.CompPrefabInfo",
  4015. "fileId": "cbZOvV/aRPeapc5BPoWbIR"
  4016. },
  4017. {
  4018. "__type__": "01a5aplkjtHM5ukHeVpMH4L",
  4019. "_name": "",
  4020. "_objFlags": 0,
  4021. "__editorExtras__": {},
  4022. "node": {
  4023. "__id__": 1
  4024. },
  4025. "_enabled": true,
  4026. "__prefab": {
  4027. "__id__": 183
  4028. },
  4029. "lab_list": [
  4030. {
  4031. "__id__": 184
  4032. },
  4033. {
  4034. "__id__": 202
  4035. },
  4036. {
  4037. "__id__": 220
  4038. }
  4039. ],
  4040. "redBagNode": {
  4041. "__id__": 126
  4042. },
  4043. "iconNode": {
  4044. "__id__": 86
  4045. },
  4046. "progressNode": {
  4047. "__id__": 108
  4048. },
  4049. "tipsLabelNode": {
  4050. "__id__": 92
  4051. },
  4052. "levelListNode": {
  4053. "__id__": 162
  4054. },
  4055. "levelItemPrefab": {
  4056. "__uuid__": "475b3ef7-f24c-4580-a4bd-27b7733bf3f8",
  4057. "__expectedType__": "cc.Prefab"
  4058. },
  4059. "_id": ""
  4060. },
  4061. {
  4062. "__type__": "cc.CompPrefabInfo",
  4063. "fileId": "62orqtjhFNdqxPeYxAokvA"
  4064. },
  4065. {
  4066. "__type__": "cc.Label",
  4067. "_name": "",
  4068. "_objFlags": 0,
  4069. "__editorExtras__": {},
  4070. "node": {
  4071. "__id__": 185
  4072. },
  4073. "_enabled": true,
  4074. "__prefab": {
  4075. "__id__": 201
  4076. },
  4077. "_customMaterial": null,
  4078. "_srcBlendFactor": 2,
  4079. "_dstBlendFactor": 4,
  4080. "_color": {
  4081. "__type__": "cc.Color",
  4082. "r": 88,
  4083. "g": 42,
  4084. "b": 9,
  4085. "a": 255
  4086. },
  4087. "_string": "",
  4088. "_horizontalAlign": 1,
  4089. "_verticalAlign": 1,
  4090. "_actualFontSize": 60,
  4091. "_fontSize": 60,
  4092. "_fontFamily": "Arial",
  4093. "_lineHeight": 60,
  4094. "_overflow": 0,
  4095. "_enableWrapText": true,
  4096. "_font": null,
  4097. "_isSystemFontUsed": true,
  4098. "_spacingX": 0,
  4099. "_isItalic": false,
  4100. "_isBold": false,
  4101. "_isUnderline": false,
  4102. "_underlineHeight": 2,
  4103. "_cacheMode": 0,
  4104. "_enableOutline": false,
  4105. "_outlineColor": {
  4106. "__type__": "cc.Color",
  4107. "r": 0,
  4108. "g": 0,
  4109. "b": 0,
  4110. "a": 255
  4111. },
  4112. "_outlineWidth": 2,
  4113. "_enableShadow": false,
  4114. "_shadowColor": {
  4115. "__type__": "cc.Color",
  4116. "r": 0,
  4117. "g": 0,
  4118. "b": 0,
  4119. "a": 255
  4120. },
  4121. "_shadowOffset": {
  4122. "__type__": "cc.Vec2",
  4123. "x": 2,
  4124. "y": 2
  4125. },
  4126. "_shadowBlur": 2,
  4127. "_id": ""
  4128. },
  4129. {
  4130. "__type__": "cc.Node",
  4131. "_name": "lab_num",
  4132. "_objFlags": 0,
  4133. "__editorExtras__": {},
  4134. "_parent": {
  4135. "__id__": 186
  4136. },
  4137. "_children": [],
  4138. "_active": true,
  4139. "_components": [
  4140. {
  4141. "__id__": 198
  4142. },
  4143. {
  4144. "__id__": 184
  4145. }
  4146. ],
  4147. "_prefab": {
  4148. "__id__": 200
  4149. },
  4150. "_lpos": {
  4151. "__type__": "cc.Vec3",
  4152. "x": -16.5,
  4153. "y": -4.227999999999952,
  4154. "z": 0
  4155. },
  4156. "_lrot": {
  4157. "__type__": "cc.Quat",
  4158. "x": 0,
  4159. "y": 0,
  4160. "z": 0,
  4161. "w": 1
  4162. },
  4163. "_lscale": {
  4164. "__type__": "cc.Vec3",
  4165. "x": 1,
  4166. "y": 1,
  4167. "z": 1
  4168. },
  4169. "_mobility": 0,
  4170. "_layer": 33554432,
  4171. "_euler": {
  4172. "__type__": "cc.Vec3",
  4173. "x": 0,
  4174. "y": 0,
  4175. "z": 0
  4176. },
  4177. "_id": ""
  4178. },
  4179. {
  4180. "__type__": "cc.Node",
  4181. "_name": "Node",
  4182. "_objFlags": 0,
  4183. "__editorExtras__": {},
  4184. "_parent": {
  4185. "__id__": 4
  4186. },
  4187. "_children": [
  4188. {
  4189. "__id__": 185
  4190. },
  4191. {
  4192. "__id__": 187
  4193. }
  4194. ],
  4195. "_active": true,
  4196. "_components": [
  4197. {
  4198. "__id__": 193
  4199. },
  4200. {
  4201. "__id__": 195
  4202. }
  4203. ],
  4204. "_prefab": {
  4205. "__id__": 197
  4206. },
  4207. "_lpos": {
  4208. "__type__": "cc.Vec3",
  4209. "x": 0,
  4210. "y": -23.133,
  4211. "z": 0
  4212. },
  4213. "_lrot": {
  4214. "__type__": "cc.Quat",
  4215. "x": 0,
  4216. "y": 0,
  4217. "z": 0,
  4218. "w": 1
  4219. },
  4220. "_lscale": {
  4221. "__type__": "cc.Vec3",
  4222. "x": 1,
  4223. "y": 1,
  4224. "z": 1
  4225. },
  4226. "_mobility": 0,
  4227. "_layer": 33554432,
  4228. "_euler": {
  4229. "__type__": "cc.Vec3",
  4230. "x": 0,
  4231. "y": 0,
  4232. "z": 0
  4233. },
  4234. "_id": ""
  4235. },
  4236. {
  4237. "__type__": "cc.Node",
  4238. "_name": "lab_num-001",
  4239. "_objFlags": 0,
  4240. "__editorExtras__": {},
  4241. "_parent": {
  4242. "__id__": 186
  4243. },
  4244. "_children": [],
  4245. "_active": true,
  4246. "_components": [
  4247. {
  4248. "__id__": 188
  4249. },
  4250. {
  4251. "__id__": 190
  4252. }
  4253. ],
  4254. "_prefab": {
  4255. "__id__": 192
  4256. },
  4257. "_lpos": {
  4258. "__type__": "cc.Vec3",
  4259. "x": 2.5,
  4260. "y": -4.227999999999952,
  4261. "z": 0
  4262. },
  4263. "_lrot": {
  4264. "__type__": "cc.Quat",
  4265. "x": 0,
  4266. "y": 0,
  4267. "z": 0,
  4268. "w": 1
  4269. },
  4270. "_lscale": {
  4271. "__type__": "cc.Vec3",
  4272. "x": 1,
  4273. "y": 1,
  4274. "z": 1
  4275. },
  4276. "_mobility": 0,
  4277. "_layer": 33554432,
  4278. "_euler": {
  4279. "__type__": "cc.Vec3",
  4280. "x": 0,
  4281. "y": 0,
  4282. "z": 0
  4283. },
  4284. "_id": ""
  4285. },
  4286. {
  4287. "__type__": "cc.UITransform",
  4288. "_name": "",
  4289. "_objFlags": 0,
  4290. "__editorExtras__": {},
  4291. "node": {
  4292. "__id__": 187
  4293. },
  4294. "_enabled": true,
  4295. "__prefab": {
  4296. "__id__": 189
  4297. },
  4298. "_contentSize": {
  4299. "__type__": "cc.Size",
  4300. "width": 28,
  4301. "height": 75.6
  4302. },
  4303. "_anchorPoint": {
  4304. "__type__": "cc.Vec2",
  4305. "x": 0.5,
  4306. "y": 0.6
  4307. },
  4308. "_id": ""
  4309. },
  4310. {
  4311. "__type__": "cc.CompPrefabInfo",
  4312. "fileId": "8e9A0sMpdPTaB9+5rdhbwV"
  4313. },
  4314. {
  4315. "__type__": "cc.Label",
  4316. "_name": "",
  4317. "_objFlags": 0,
  4318. "__editorExtras__": {},
  4319. "node": {
  4320. "__id__": 187
  4321. },
  4322. "_enabled": true,
  4323. "__prefab": {
  4324. "__id__": 191
  4325. },
  4326. "_customMaterial": null,
  4327. "_srcBlendFactor": 2,
  4328. "_dstBlendFactor": 4,
  4329. "_color": {
  4330. "__type__": "cc.Color",
  4331. "r": 88,
  4332. "g": 42,
  4333. "b": 9,
  4334. "a": 255
  4335. },
  4336. "_string": "元",
  4337. "_horizontalAlign": 1,
  4338. "_verticalAlign": 1,
  4339. "_actualFontSize": 28,
  4340. "_fontSize": 28,
  4341. "_fontFamily": "Arial",
  4342. "_lineHeight": 60,
  4343. "_overflow": 0,
  4344. "_enableWrapText": true,
  4345. "_font": null,
  4346. "_isSystemFontUsed": true,
  4347. "_spacingX": 0,
  4348. "_isItalic": false,
  4349. "_isBold": false,
  4350. "_isUnderline": false,
  4351. "_underlineHeight": 2,
  4352. "_cacheMode": 0,
  4353. "_enableOutline": false,
  4354. "_outlineColor": {
  4355. "__type__": "cc.Color",
  4356. "r": 0,
  4357. "g": 0,
  4358. "b": 0,
  4359. "a": 255
  4360. },
  4361. "_outlineWidth": 2,
  4362. "_enableShadow": false,
  4363. "_shadowColor": {
  4364. "__type__": "cc.Color",
  4365. "r": 0,
  4366. "g": 0,
  4367. "b": 0,
  4368. "a": 255
  4369. },
  4370. "_shadowOffset": {
  4371. "__type__": "cc.Vec2",
  4372. "x": 2,
  4373. "y": 2
  4374. },
  4375. "_shadowBlur": 2,
  4376. "_id": ""
  4377. },
  4378. {
  4379. "__type__": "cc.CompPrefabInfo",
  4380. "fileId": "02svMn0HhIGrjeH1W23jYc"
  4381. },
  4382. {
  4383. "__type__": "cc.PrefabInfo",
  4384. "root": {
  4385. "__id__": 1
  4386. },
  4387. "asset": {
  4388. "__id__": 0
  4389. },
  4390. "fileId": "6dMvNO7KBJxZco8cy1i7w5",
  4391. "instance": null,
  4392. "targetOverrides": null,
  4393. "nestedPrefabInstanceRoots": null
  4394. },
  4395. {
  4396. "__type__": "cc.UITransform",
  4397. "_name": "",
  4398. "_objFlags": 0,
  4399. "__editorExtras__": {},
  4400. "node": {
  4401. "__id__": 186
  4402. },
  4403. "_enabled": true,
  4404. "__prefab": {
  4405. "__id__": 194
  4406. },
  4407. "_contentSize": {
  4408. "__type__": "cc.Size",
  4409. "width": 33,
  4410. "height": 60
  4411. },
  4412. "_anchorPoint": {
  4413. "__type__": "cc.Vec2",
  4414. "x": 0.5,
  4415. "y": 0.5
  4416. },
  4417. "_id": ""
  4418. },
  4419. {
  4420. "__type__": "cc.CompPrefabInfo",
  4421. "fileId": "2cqFI7KRtFdZKnyqdpKpRf"
  4422. },
  4423. {
  4424. "__type__": "cc.Layout",
  4425. "_name": "",
  4426. "_objFlags": 0,
  4427. "__editorExtras__": {},
  4428. "node": {
  4429. "__id__": 186
  4430. },
  4431. "_enabled": true,
  4432. "__prefab": {
  4433. "__id__": 196
  4434. },
  4435. "_resizeMode": 1,
  4436. "_layoutType": 1,
  4437. "_cellSize": {
  4438. "__type__": "cc.Size",
  4439. "width": 40,
  4440. "height": 40
  4441. },
  4442. "_startAxis": 0,
  4443. "_paddingLeft": 0,
  4444. "_paddingRight": 0,
  4445. "_paddingTop": 0,
  4446. "_paddingBottom": 0,
  4447. "_spacingX": 5,
  4448. "_spacingY": 0,
  4449. "_verticalDirection": 1,
  4450. "_horizontalDirection": 0,
  4451. "_constraint": 0,
  4452. "_constraintNum": 2,
  4453. "_affectedByScale": false,
  4454. "_isAlign": false,
  4455. "_id": ""
  4456. },
  4457. {
  4458. "__type__": "cc.CompPrefabInfo",
  4459. "fileId": "48QvoniMpDiL9GmLp3DN3n"
  4460. },
  4461. {
  4462. "__type__": "cc.PrefabInfo",
  4463. "root": {
  4464. "__id__": 1
  4465. },
  4466. "asset": {
  4467. "__id__": 0
  4468. },
  4469. "fileId": "02w9XV2RpKY7ixL8/7Ld9P",
  4470. "instance": null,
  4471. "targetOverrides": null,
  4472. "nestedPrefabInstanceRoots": null
  4473. },
  4474. {
  4475. "__type__": "cc.UITransform",
  4476. "_name": "",
  4477. "_objFlags": 0,
  4478. "__editorExtras__": {},
  4479. "node": {
  4480. "__id__": 185
  4481. },
  4482. "_enabled": true,
  4483. "__prefab": {
  4484. "__id__": 199
  4485. },
  4486. "_contentSize": {
  4487. "__type__": "cc.Size",
  4488. "width": 0,
  4489. "height": 75.6
  4490. },
  4491. "_anchorPoint": {
  4492. "__type__": "cc.Vec2",
  4493. "x": 0.5,
  4494. "y": 0.5
  4495. },
  4496. "_id": ""
  4497. },
  4498. {
  4499. "__type__": "cc.CompPrefabInfo",
  4500. "fileId": "f9qjd2d2BLd4WItGKM4SpL"
  4501. },
  4502. {
  4503. "__type__": "cc.PrefabInfo",
  4504. "root": {
  4505. "__id__": 1
  4506. },
  4507. "asset": {
  4508. "__id__": 0
  4509. },
  4510. "fileId": "23CwoP3ARLa5zQnemNrfzc",
  4511. "instance": null,
  4512. "targetOverrides": null,
  4513. "nestedPrefabInstanceRoots": null
  4514. },
  4515. {
  4516. "__type__": "cc.CompPrefabInfo",
  4517. "fileId": "e4LR1oOsBNpr1azicXiYg9"
  4518. },
  4519. {
  4520. "__type__": "cc.Label",
  4521. "_name": "",
  4522. "_objFlags": 0,
  4523. "__editorExtras__": {},
  4524. "node": {
  4525. "__id__": 203
  4526. },
  4527. "_enabled": true,
  4528. "__prefab": {
  4529. "__id__": 219
  4530. },
  4531. "_customMaterial": null,
  4532. "_srcBlendFactor": 2,
  4533. "_dstBlendFactor": 4,
  4534. "_color": {
  4535. "__type__": "cc.Color",
  4536. "r": 88,
  4537. "g": 42,
  4538. "b": 9,
  4539. "a": 255
  4540. },
  4541. "_string": "",
  4542. "_horizontalAlign": 1,
  4543. "_verticalAlign": 1,
  4544. "_actualFontSize": 60,
  4545. "_fontSize": 60,
  4546. "_fontFamily": "Arial",
  4547. "_lineHeight": 60,
  4548. "_overflow": 0,
  4549. "_enableWrapText": true,
  4550. "_font": null,
  4551. "_isSystemFontUsed": true,
  4552. "_spacingX": 0,
  4553. "_isItalic": false,
  4554. "_isBold": false,
  4555. "_isUnderline": false,
  4556. "_underlineHeight": 2,
  4557. "_cacheMode": 0,
  4558. "_enableOutline": false,
  4559. "_outlineColor": {
  4560. "__type__": "cc.Color",
  4561. "r": 0,
  4562. "g": 0,
  4563. "b": 0,
  4564. "a": 255
  4565. },
  4566. "_outlineWidth": 2,
  4567. "_enableShadow": false,
  4568. "_shadowColor": {
  4569. "__type__": "cc.Color",
  4570. "r": 0,
  4571. "g": 0,
  4572. "b": 0,
  4573. "a": 255
  4574. },
  4575. "_shadowOffset": {
  4576. "__type__": "cc.Vec2",
  4577. "x": 2,
  4578. "y": 2
  4579. },
  4580. "_shadowBlur": 2,
  4581. "_id": ""
  4582. },
  4583. {
  4584. "__type__": "cc.Node",
  4585. "_name": "lab_num",
  4586. "_objFlags": 0,
  4587. "__editorExtras__": {},
  4588. "_parent": {
  4589. "__id__": 204
  4590. },
  4591. "_children": [],
  4592. "_active": true,
  4593. "_components": [
  4594. {
  4595. "__id__": 216
  4596. },
  4597. {
  4598. "__id__": 202
  4599. }
  4600. ],
  4601. "_prefab": {
  4602. "__id__": 218
  4603. },
  4604. "_lpos": {
  4605. "__type__": "cc.Vec3",
  4606. "x": -16.5,
  4607. "y": -4.227999999999952,
  4608. "z": 0
  4609. },
  4610. "_lrot": {
  4611. "__type__": "cc.Quat",
  4612. "x": 0,
  4613. "y": 0,
  4614. "z": 0,
  4615. "w": 1
  4616. },
  4617. "_lscale": {
  4618. "__type__": "cc.Vec3",
  4619. "x": 1,
  4620. "y": 1,
  4621. "z": 1
  4622. },
  4623. "_mobility": 0,
  4624. "_layer": 33554432,
  4625. "_euler": {
  4626. "__type__": "cc.Vec3",
  4627. "x": 0,
  4628. "y": 0,
  4629. "z": 0
  4630. },
  4631. "_id": ""
  4632. },
  4633. {
  4634. "__type__": "cc.Node",
  4635. "_name": "Node",
  4636. "_objFlags": 0,
  4637. "__editorExtras__": {},
  4638. "_parent": {
  4639. "__id__": 12
  4640. },
  4641. "_children": [
  4642. {
  4643. "__id__": 203
  4644. },
  4645. {
  4646. "__id__": 205
  4647. }
  4648. ],
  4649. "_active": true,
  4650. "_components": [
  4651. {
  4652. "__id__": 211
  4653. },
  4654. {
  4655. "__id__": 213
  4656. }
  4657. ],
  4658. "_prefab": {
  4659. "__id__": 215
  4660. },
  4661. "_lpos": {
  4662. "__type__": "cc.Vec3",
  4663. "x": 0,
  4664. "y": -23.133,
  4665. "z": 0
  4666. },
  4667. "_lrot": {
  4668. "__type__": "cc.Quat",
  4669. "x": 0,
  4670. "y": 0,
  4671. "z": 0,
  4672. "w": 1
  4673. },
  4674. "_lscale": {
  4675. "__type__": "cc.Vec3",
  4676. "x": 1,
  4677. "y": 1,
  4678. "z": 1
  4679. },
  4680. "_mobility": 0,
  4681. "_layer": 33554432,
  4682. "_euler": {
  4683. "__type__": "cc.Vec3",
  4684. "x": 0,
  4685. "y": 0,
  4686. "z": 0
  4687. },
  4688. "_id": ""
  4689. },
  4690. {
  4691. "__type__": "cc.Node",
  4692. "_name": "lab_num-001",
  4693. "_objFlags": 0,
  4694. "__editorExtras__": {},
  4695. "_parent": {
  4696. "__id__": 204
  4697. },
  4698. "_children": [],
  4699. "_active": true,
  4700. "_components": [
  4701. {
  4702. "__id__": 206
  4703. },
  4704. {
  4705. "__id__": 208
  4706. }
  4707. ],
  4708. "_prefab": {
  4709. "__id__": 210
  4710. },
  4711. "_lpos": {
  4712. "__type__": "cc.Vec3",
  4713. "x": 2.5,
  4714. "y": -4.227999999999952,
  4715. "z": 0
  4716. },
  4717. "_lrot": {
  4718. "__type__": "cc.Quat",
  4719. "x": 0,
  4720. "y": 0,
  4721. "z": 0,
  4722. "w": 1
  4723. },
  4724. "_lscale": {
  4725. "__type__": "cc.Vec3",
  4726. "x": 1,
  4727. "y": 1,
  4728. "z": 1
  4729. },
  4730. "_mobility": 0,
  4731. "_layer": 33554432,
  4732. "_euler": {
  4733. "__type__": "cc.Vec3",
  4734. "x": 0,
  4735. "y": 0,
  4736. "z": 0
  4737. },
  4738. "_id": ""
  4739. },
  4740. {
  4741. "__type__": "cc.UITransform",
  4742. "_name": "",
  4743. "_objFlags": 0,
  4744. "__editorExtras__": {},
  4745. "node": {
  4746. "__id__": 205
  4747. },
  4748. "_enabled": true,
  4749. "__prefab": {
  4750. "__id__": 207
  4751. },
  4752. "_contentSize": {
  4753. "__type__": "cc.Size",
  4754. "width": 28,
  4755. "height": 75.6
  4756. },
  4757. "_anchorPoint": {
  4758. "__type__": "cc.Vec2",
  4759. "x": 0.5,
  4760. "y": 0.6
  4761. },
  4762. "_id": ""
  4763. },
  4764. {
  4765. "__type__": "cc.CompPrefabInfo",
  4766. "fileId": "8e9A0sMpdPTaB9+5rdhbwV"
  4767. },
  4768. {
  4769. "__type__": "cc.Label",
  4770. "_name": "",
  4771. "_objFlags": 0,
  4772. "__editorExtras__": {},
  4773. "node": {
  4774. "__id__": 205
  4775. },
  4776. "_enabled": true,
  4777. "__prefab": {
  4778. "__id__": 209
  4779. },
  4780. "_customMaterial": null,
  4781. "_srcBlendFactor": 2,
  4782. "_dstBlendFactor": 4,
  4783. "_color": {
  4784. "__type__": "cc.Color",
  4785. "r": 88,
  4786. "g": 42,
  4787. "b": 9,
  4788. "a": 255
  4789. },
  4790. "_string": "元",
  4791. "_horizontalAlign": 1,
  4792. "_verticalAlign": 1,
  4793. "_actualFontSize": 28,
  4794. "_fontSize": 28,
  4795. "_fontFamily": "Arial",
  4796. "_lineHeight": 60,
  4797. "_overflow": 0,
  4798. "_enableWrapText": true,
  4799. "_font": null,
  4800. "_isSystemFontUsed": true,
  4801. "_spacingX": 0,
  4802. "_isItalic": false,
  4803. "_isBold": false,
  4804. "_isUnderline": false,
  4805. "_underlineHeight": 2,
  4806. "_cacheMode": 0,
  4807. "_enableOutline": false,
  4808. "_outlineColor": {
  4809. "__type__": "cc.Color",
  4810. "r": 0,
  4811. "g": 0,
  4812. "b": 0,
  4813. "a": 255
  4814. },
  4815. "_outlineWidth": 2,
  4816. "_enableShadow": false,
  4817. "_shadowColor": {
  4818. "__type__": "cc.Color",
  4819. "r": 0,
  4820. "g": 0,
  4821. "b": 0,
  4822. "a": 255
  4823. },
  4824. "_shadowOffset": {
  4825. "__type__": "cc.Vec2",
  4826. "x": 2,
  4827. "y": 2
  4828. },
  4829. "_shadowBlur": 2,
  4830. "_id": ""
  4831. },
  4832. {
  4833. "__type__": "cc.CompPrefabInfo",
  4834. "fileId": "02svMn0HhIGrjeH1W23jYc"
  4835. },
  4836. {
  4837. "__type__": "cc.PrefabInfo",
  4838. "root": {
  4839. "__id__": 1
  4840. },
  4841. "asset": {
  4842. "__id__": 0
  4843. },
  4844. "fileId": "6dMvNO7KBJxZco8cy1i7w5",
  4845. "instance": null,
  4846. "targetOverrides": null,
  4847. "nestedPrefabInstanceRoots": null
  4848. },
  4849. {
  4850. "__type__": "cc.UITransform",
  4851. "_name": "",
  4852. "_objFlags": 0,
  4853. "__editorExtras__": {},
  4854. "node": {
  4855. "__id__": 204
  4856. },
  4857. "_enabled": true,
  4858. "__prefab": {
  4859. "__id__": 212
  4860. },
  4861. "_contentSize": {
  4862. "__type__": "cc.Size",
  4863. "width": 33,
  4864. "height": 60
  4865. },
  4866. "_anchorPoint": {
  4867. "__type__": "cc.Vec2",
  4868. "x": 0.5,
  4869. "y": 0.5
  4870. },
  4871. "_id": ""
  4872. },
  4873. {
  4874. "__type__": "cc.CompPrefabInfo",
  4875. "fileId": "2cqFI7KRtFdZKnyqdpKpRf"
  4876. },
  4877. {
  4878. "__type__": "cc.Layout",
  4879. "_name": "",
  4880. "_objFlags": 0,
  4881. "__editorExtras__": {},
  4882. "node": {
  4883. "__id__": 204
  4884. },
  4885. "_enabled": true,
  4886. "__prefab": {
  4887. "__id__": 214
  4888. },
  4889. "_resizeMode": 1,
  4890. "_layoutType": 1,
  4891. "_cellSize": {
  4892. "__type__": "cc.Size",
  4893. "width": 40,
  4894. "height": 40
  4895. },
  4896. "_startAxis": 0,
  4897. "_paddingLeft": 0,
  4898. "_paddingRight": 0,
  4899. "_paddingTop": 0,
  4900. "_paddingBottom": 0,
  4901. "_spacingX": 5,
  4902. "_spacingY": 0,
  4903. "_verticalDirection": 1,
  4904. "_horizontalDirection": 0,
  4905. "_constraint": 0,
  4906. "_constraintNum": 2,
  4907. "_affectedByScale": false,
  4908. "_isAlign": false,
  4909. "_id": ""
  4910. },
  4911. {
  4912. "__type__": "cc.CompPrefabInfo",
  4913. "fileId": "48QvoniMpDiL9GmLp3DN3n"
  4914. },
  4915. {
  4916. "__type__": "cc.PrefabInfo",
  4917. "root": {
  4918. "__id__": 1
  4919. },
  4920. "asset": {
  4921. "__id__": 0
  4922. },
  4923. "fileId": "02w9XV2RpKY7ixL8/7Ld9P",
  4924. "instance": null,
  4925. "targetOverrides": null,
  4926. "nestedPrefabInstanceRoots": null
  4927. },
  4928. {
  4929. "__type__": "cc.UITransform",
  4930. "_name": "",
  4931. "_objFlags": 0,
  4932. "__editorExtras__": {},
  4933. "node": {
  4934. "__id__": 203
  4935. },
  4936. "_enabled": true,
  4937. "__prefab": {
  4938. "__id__": 217
  4939. },
  4940. "_contentSize": {
  4941. "__type__": "cc.Size",
  4942. "width": 0,
  4943. "height": 75.6
  4944. },
  4945. "_anchorPoint": {
  4946. "__type__": "cc.Vec2",
  4947. "x": 0.5,
  4948. "y": 0.5
  4949. },
  4950. "_id": ""
  4951. },
  4952. {
  4953. "__type__": "cc.CompPrefabInfo",
  4954. "fileId": "f9qjd2d2BLd4WItGKM4SpL"
  4955. },
  4956. {
  4957. "__type__": "cc.PrefabInfo",
  4958. "root": {
  4959. "__id__": 1
  4960. },
  4961. "asset": {
  4962. "__id__": 0
  4963. },
  4964. "fileId": "23CwoP3ARLa5zQnemNrfzc",
  4965. "instance": null,
  4966. "targetOverrides": null,
  4967. "nestedPrefabInstanceRoots": null
  4968. },
  4969. {
  4970. "__type__": "cc.CompPrefabInfo",
  4971. "fileId": "e4LR1oOsBNpr1azicXiYg9"
  4972. },
  4973. {
  4974. "__type__": "cc.Label",
  4975. "_name": "",
  4976. "_objFlags": 0,
  4977. "__editorExtras__": {},
  4978. "node": {
  4979. "__id__": 221
  4980. },
  4981. "_enabled": true,
  4982. "__prefab": {
  4983. "__id__": 237
  4984. },
  4985. "_customMaterial": null,
  4986. "_srcBlendFactor": 2,
  4987. "_dstBlendFactor": 4,
  4988. "_color": {
  4989. "__type__": "cc.Color",
  4990. "r": 88,
  4991. "g": 42,
  4992. "b": 9,
  4993. "a": 255
  4994. },
  4995. "_string": "",
  4996. "_horizontalAlign": 1,
  4997. "_verticalAlign": 1,
  4998. "_actualFontSize": 60,
  4999. "_fontSize": 60,
  5000. "_fontFamily": "Arial",
  5001. "_lineHeight": 60,
  5002. "_overflow": 0,
  5003. "_enableWrapText": true,
  5004. "_font": null,
  5005. "_isSystemFontUsed": true,
  5006. "_spacingX": 0,
  5007. "_isItalic": false,
  5008. "_isBold": false,
  5009. "_isUnderline": false,
  5010. "_underlineHeight": 2,
  5011. "_cacheMode": 0,
  5012. "_enableOutline": false,
  5013. "_outlineColor": {
  5014. "__type__": "cc.Color",
  5015. "r": 0,
  5016. "g": 0,
  5017. "b": 0,
  5018. "a": 255
  5019. },
  5020. "_outlineWidth": 2,
  5021. "_enableShadow": false,
  5022. "_shadowColor": {
  5023. "__type__": "cc.Color",
  5024. "r": 0,
  5025. "g": 0,
  5026. "b": 0,
  5027. "a": 255
  5028. },
  5029. "_shadowOffset": {
  5030. "__type__": "cc.Vec2",
  5031. "x": 2,
  5032. "y": 2
  5033. },
  5034. "_shadowBlur": 2,
  5035. "_id": ""
  5036. },
  5037. {
  5038. "__type__": "cc.Node",
  5039. "_name": "lab_num",
  5040. "_objFlags": 0,
  5041. "__editorExtras__": {},
  5042. "_parent": {
  5043. "__id__": 222
  5044. },
  5045. "_children": [],
  5046. "_active": true,
  5047. "_components": [
  5048. {
  5049. "__id__": 234
  5050. },
  5051. {
  5052. "__id__": 220
  5053. }
  5054. ],
  5055. "_prefab": {
  5056. "__id__": 236
  5057. },
  5058. "_lpos": {
  5059. "__type__": "cc.Vec3",
  5060. "x": -16.5,
  5061. "y": -4.227999999999952,
  5062. "z": 0
  5063. },
  5064. "_lrot": {
  5065. "__type__": "cc.Quat",
  5066. "x": 0,
  5067. "y": 0,
  5068. "z": 0,
  5069. "w": 1
  5070. },
  5071. "_lscale": {
  5072. "__type__": "cc.Vec3",
  5073. "x": 1,
  5074. "y": 1,
  5075. "z": 1
  5076. },
  5077. "_mobility": 0,
  5078. "_layer": 33554432,
  5079. "_euler": {
  5080. "__type__": "cc.Vec3",
  5081. "x": 0,
  5082. "y": 0,
  5083. "z": 0
  5084. },
  5085. "_id": ""
  5086. },
  5087. {
  5088. "__type__": "cc.Node",
  5089. "_name": "Node",
  5090. "_objFlags": 0,
  5091. "__editorExtras__": {},
  5092. "_parent": {
  5093. "__id__": 20
  5094. },
  5095. "_children": [
  5096. {
  5097. "__id__": 221
  5098. },
  5099. {
  5100. "__id__": 223
  5101. }
  5102. ],
  5103. "_active": true,
  5104. "_components": [
  5105. {
  5106. "__id__": 229
  5107. },
  5108. {
  5109. "__id__": 231
  5110. }
  5111. ],
  5112. "_prefab": {
  5113. "__id__": 233
  5114. },
  5115. "_lpos": {
  5116. "__type__": "cc.Vec3",
  5117. "x": 0,
  5118. "y": -23.133,
  5119. "z": 0
  5120. },
  5121. "_lrot": {
  5122. "__type__": "cc.Quat",
  5123. "x": 0,
  5124. "y": 0,
  5125. "z": 0,
  5126. "w": 1
  5127. },
  5128. "_lscale": {
  5129. "__type__": "cc.Vec3",
  5130. "x": 1,
  5131. "y": 1,
  5132. "z": 1
  5133. },
  5134. "_mobility": 0,
  5135. "_layer": 33554432,
  5136. "_euler": {
  5137. "__type__": "cc.Vec3",
  5138. "x": 0,
  5139. "y": 0,
  5140. "z": 0
  5141. },
  5142. "_id": ""
  5143. },
  5144. {
  5145. "__type__": "cc.Node",
  5146. "_name": "lab_num-001",
  5147. "_objFlags": 0,
  5148. "__editorExtras__": {},
  5149. "_parent": {
  5150. "__id__": 222
  5151. },
  5152. "_children": [],
  5153. "_active": true,
  5154. "_components": [
  5155. {
  5156. "__id__": 224
  5157. },
  5158. {
  5159. "__id__": 226
  5160. }
  5161. ],
  5162. "_prefab": {
  5163. "__id__": 228
  5164. },
  5165. "_lpos": {
  5166. "__type__": "cc.Vec3",
  5167. "x": 2.5,
  5168. "y": -4.227999999999952,
  5169. "z": 0
  5170. },
  5171. "_lrot": {
  5172. "__type__": "cc.Quat",
  5173. "x": 0,
  5174. "y": 0,
  5175. "z": 0,
  5176. "w": 1
  5177. },
  5178. "_lscale": {
  5179. "__type__": "cc.Vec3",
  5180. "x": 1,
  5181. "y": 1,
  5182. "z": 1
  5183. },
  5184. "_mobility": 0,
  5185. "_layer": 33554432,
  5186. "_euler": {
  5187. "__type__": "cc.Vec3",
  5188. "x": 0,
  5189. "y": 0,
  5190. "z": 0
  5191. },
  5192. "_id": ""
  5193. },
  5194. {
  5195. "__type__": "cc.UITransform",
  5196. "_name": "",
  5197. "_objFlags": 0,
  5198. "__editorExtras__": {},
  5199. "node": {
  5200. "__id__": 223
  5201. },
  5202. "_enabled": true,
  5203. "__prefab": {
  5204. "__id__": 225
  5205. },
  5206. "_contentSize": {
  5207. "__type__": "cc.Size",
  5208. "width": 28,
  5209. "height": 75.6
  5210. },
  5211. "_anchorPoint": {
  5212. "__type__": "cc.Vec2",
  5213. "x": 0.5,
  5214. "y": 0.6
  5215. },
  5216. "_id": ""
  5217. },
  5218. {
  5219. "__type__": "cc.CompPrefabInfo",
  5220. "fileId": "8e9A0sMpdPTaB9+5rdhbwV"
  5221. },
  5222. {
  5223. "__type__": "cc.Label",
  5224. "_name": "",
  5225. "_objFlags": 0,
  5226. "__editorExtras__": {},
  5227. "node": {
  5228. "__id__": 223
  5229. },
  5230. "_enabled": true,
  5231. "__prefab": {
  5232. "__id__": 227
  5233. },
  5234. "_customMaterial": null,
  5235. "_srcBlendFactor": 2,
  5236. "_dstBlendFactor": 4,
  5237. "_color": {
  5238. "__type__": "cc.Color",
  5239. "r": 88,
  5240. "g": 42,
  5241. "b": 9,
  5242. "a": 255
  5243. },
  5244. "_string": "块",
  5245. "_horizontalAlign": 1,
  5246. "_verticalAlign": 1,
  5247. "_actualFontSize": 28,
  5248. "_fontSize": 28,
  5249. "_fontFamily": "Arial",
  5250. "_lineHeight": 60,
  5251. "_overflow": 0,
  5252. "_enableWrapText": true,
  5253. "_font": null,
  5254. "_isSystemFontUsed": true,
  5255. "_spacingX": 0,
  5256. "_isItalic": false,
  5257. "_isBold": false,
  5258. "_isUnderline": false,
  5259. "_underlineHeight": 2,
  5260. "_cacheMode": 0,
  5261. "_enableOutline": false,
  5262. "_outlineColor": {
  5263. "__type__": "cc.Color",
  5264. "r": 0,
  5265. "g": 0,
  5266. "b": 0,
  5267. "a": 255
  5268. },
  5269. "_outlineWidth": 2,
  5270. "_enableShadow": false,
  5271. "_shadowColor": {
  5272. "__type__": "cc.Color",
  5273. "r": 0,
  5274. "g": 0,
  5275. "b": 0,
  5276. "a": 255
  5277. },
  5278. "_shadowOffset": {
  5279. "__type__": "cc.Vec2",
  5280. "x": 2,
  5281. "y": 2
  5282. },
  5283. "_shadowBlur": 2,
  5284. "_id": ""
  5285. },
  5286. {
  5287. "__type__": "cc.CompPrefabInfo",
  5288. "fileId": "02svMn0HhIGrjeH1W23jYc"
  5289. },
  5290. {
  5291. "__type__": "cc.PrefabInfo",
  5292. "root": {
  5293. "__id__": 1
  5294. },
  5295. "asset": {
  5296. "__id__": 0
  5297. },
  5298. "fileId": "6dMvNO7KBJxZco8cy1i7w5",
  5299. "instance": null,
  5300. "targetOverrides": null,
  5301. "nestedPrefabInstanceRoots": null
  5302. },
  5303. {
  5304. "__type__": "cc.UITransform",
  5305. "_name": "",
  5306. "_objFlags": 0,
  5307. "__editorExtras__": {},
  5308. "node": {
  5309. "__id__": 222
  5310. },
  5311. "_enabled": true,
  5312. "__prefab": {
  5313. "__id__": 230
  5314. },
  5315. "_contentSize": {
  5316. "__type__": "cc.Size",
  5317. "width": 33,
  5318. "height": 60
  5319. },
  5320. "_anchorPoint": {
  5321. "__type__": "cc.Vec2",
  5322. "x": 0.5,
  5323. "y": 0.5
  5324. },
  5325. "_id": ""
  5326. },
  5327. {
  5328. "__type__": "cc.CompPrefabInfo",
  5329. "fileId": "2cqFI7KRtFdZKnyqdpKpRf"
  5330. },
  5331. {
  5332. "__type__": "cc.Layout",
  5333. "_name": "",
  5334. "_objFlags": 0,
  5335. "__editorExtras__": {},
  5336. "node": {
  5337. "__id__": 222
  5338. },
  5339. "_enabled": true,
  5340. "__prefab": {
  5341. "__id__": 232
  5342. },
  5343. "_resizeMode": 1,
  5344. "_layoutType": 1,
  5345. "_cellSize": {
  5346. "__type__": "cc.Size",
  5347. "width": 40,
  5348. "height": 40
  5349. },
  5350. "_startAxis": 0,
  5351. "_paddingLeft": 0,
  5352. "_paddingRight": 0,
  5353. "_paddingTop": 0,
  5354. "_paddingBottom": 0,
  5355. "_spacingX": 5,
  5356. "_spacingY": 0,
  5357. "_verticalDirection": 1,
  5358. "_horizontalDirection": 0,
  5359. "_constraint": 0,
  5360. "_constraintNum": 2,
  5361. "_affectedByScale": false,
  5362. "_isAlign": false,
  5363. "_id": ""
  5364. },
  5365. {
  5366. "__type__": "cc.CompPrefabInfo",
  5367. "fileId": "48QvoniMpDiL9GmLp3DN3n"
  5368. },
  5369. {
  5370. "__type__": "cc.PrefabInfo",
  5371. "root": {
  5372. "__id__": 1
  5373. },
  5374. "asset": {
  5375. "__id__": 0
  5376. },
  5377. "fileId": "02w9XV2RpKY7ixL8/7Ld9P",
  5378. "instance": null,
  5379. "targetOverrides": null,
  5380. "nestedPrefabInstanceRoots": null
  5381. },
  5382. {
  5383. "__type__": "cc.UITransform",
  5384. "_name": "",
  5385. "_objFlags": 0,
  5386. "__editorExtras__": {},
  5387. "node": {
  5388. "__id__": 221
  5389. },
  5390. "_enabled": true,
  5391. "__prefab": {
  5392. "__id__": 235
  5393. },
  5394. "_contentSize": {
  5395. "__type__": "cc.Size",
  5396. "width": 0,
  5397. "height": 75.6
  5398. },
  5399. "_anchorPoint": {
  5400. "__type__": "cc.Vec2",
  5401. "x": 0.5,
  5402. "y": 0.5
  5403. },
  5404. "_id": ""
  5405. },
  5406. {
  5407. "__type__": "cc.CompPrefabInfo",
  5408. "fileId": "f9qjd2d2BLd4WItGKM4SpL"
  5409. },
  5410. {
  5411. "__type__": "cc.PrefabInfo",
  5412. "root": {
  5413. "__id__": 1
  5414. },
  5415. "asset": {
  5416. "__id__": 0
  5417. },
  5418. "fileId": "23CwoP3ARLa5zQnemNrfzc",
  5419. "instance": null,
  5420. "targetOverrides": null,
  5421. "nestedPrefabInstanceRoots": null
  5422. },
  5423. {
  5424. "__type__": "cc.CompPrefabInfo",
  5425. "fileId": "e4LR1oOsBNpr1azicXiYg9"
  5426. },
  5427. {
  5428. "__type__": "cc.Widget",
  5429. "_name": "",
  5430. "_objFlags": 0,
  5431. "__editorExtras__": {},
  5432. "node": {
  5433. "__id__": 1
  5434. },
  5435. "_enabled": true,
  5436. "__prefab": {
  5437. "__id__": 239
  5438. },
  5439. "_alignFlags": 40,
  5440. "_target": null,
  5441. "_left": 0,
  5442. "_right": 0,
  5443. "_top": 0,
  5444. "_bottom": 0,
  5445. "_horizontalCenter": 0,
  5446. "_verticalCenter": 0,
  5447. "_isAbsLeft": true,
  5448. "_isAbsRight": true,
  5449. "_isAbsTop": true,
  5450. "_isAbsBottom": true,
  5451. "_isAbsHorizontalCenter": true,
  5452. "_isAbsVerticalCenter": true,
  5453. "_originalWidth": 720,
  5454. "_originalHeight": 0,
  5455. "_alignMode": 2,
  5456. "_lockFlags": 0,
  5457. "_id": ""
  5458. },
  5459. {
  5460. "__type__": "cc.CompPrefabInfo",
  5461. "fileId": "4eUmgOB+5IKojpxnhP8l36"
  5462. },
  5463. {
  5464. "__type__": "cc.PrefabInfo",
  5465. "root": {
  5466. "__id__": 1
  5467. },
  5468. "asset": {
  5469. "__id__": 0
  5470. },
  5471. "fileId": "0acU74/MFJMJdT/r8jRwpJ",
  5472. "instance": null,
  5473. "targetOverrides": [
  5474. {
  5475. "__id__": 241
  5476. },
  5477. {
  5478. "__id__": 243
  5479. },
  5480. {
  5481. "__id__": 245
  5482. }
  5483. ],
  5484. "nestedPrefabInstanceRoots": [
  5485. {
  5486. "__id__": 20
  5487. },
  5488. {
  5489. "__id__": 12
  5490. },
  5491. {
  5492. "__id__": 4
  5493. }
  5494. ]
  5495. },
  5496. {
  5497. "__type__": "cc.TargetOverrideInfo",
  5498. "source": {
  5499. "__id__": 182
  5500. },
  5501. "sourceInfo": null,
  5502. "propertyPath": [
  5503. "lab_list",
  5504. "0"
  5505. ],
  5506. "target": {
  5507. "__id__": 4
  5508. },
  5509. "targetInfo": {
  5510. "__id__": 242
  5511. }
  5512. },
  5513. {
  5514. "__type__": "cc.TargetInfo",
  5515. "localID": [
  5516. "e4LR1oOsBNpr1azicXiYg9"
  5517. ]
  5518. },
  5519. {
  5520. "__type__": "cc.TargetOverrideInfo",
  5521. "source": {
  5522. "__id__": 182
  5523. },
  5524. "sourceInfo": null,
  5525. "propertyPath": [
  5526. "lab_list",
  5527. "1"
  5528. ],
  5529. "target": {
  5530. "__id__": 12
  5531. },
  5532. "targetInfo": {
  5533. "__id__": 244
  5534. }
  5535. },
  5536. {
  5537. "__type__": "cc.TargetInfo",
  5538. "localID": [
  5539. "e4LR1oOsBNpr1azicXiYg9"
  5540. ]
  5541. },
  5542. {
  5543. "__type__": "cc.TargetOverrideInfo",
  5544. "source": {
  5545. "__id__": 182
  5546. },
  5547. "sourceInfo": null,
  5548. "propertyPath": [
  5549. "lab_list",
  5550. "2"
  5551. ],
  5552. "target": {
  5553. "__id__": 20
  5554. },
  5555. "targetInfo": {
  5556. "__id__": 246
  5557. }
  5558. },
  5559. {
  5560. "__type__": "cc.TargetInfo",
  5561. "localID": [
  5562. "e4LR1oOsBNpr1azicXiYg9"
  5563. ]
  5564. }
  5565. ]