eliminate.prefab 107 KB

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