doubleRewards.prefab 97 KB

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