doubleRewards.prefab 99 KB

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