Main.scene 181 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. },
  10. "asyncLoadAssets": false
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "",
  15. "_objFlags": 0,
  16. "_parent": null,
  17. "_children": [
  18. {
  19. "__id__": 2
  20. },
  21. {
  22. "__id__": 357
  23. },
  24. {
  25. "__id__": 109
  26. },
  27. {
  28. "__id__": 658
  29. },
  30. {
  31. "__id__": 548
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [],
  36. "_prefab": {
  37. "__id__": 660
  38. },
  39. "autoReleaseAssets": false,
  40. "_globals": {
  41. "__id__": 699
  42. },
  43. "_id": "dd0c8000-28b0-4d4b-9baa-d0d2bd475350"
  44. },
  45. {
  46. "__type__": "cc.Node",
  47. "_name": "Canvas",
  48. "_objFlags": 512,
  49. "_parent": {
  50. "__id__": 1
  51. },
  52. "_children": [
  53. {
  54. "__id__": 3
  55. },
  56. {
  57. "__id__": 5
  58. },
  59. {
  60. "__id__": 15
  61. },
  62. {
  63. "__id__": 137
  64. }
  65. ],
  66. "_active": true,
  67. "_components": [
  68. {
  69. "__id__": 652
  70. },
  71. {
  72. "__id__": 654
  73. },
  74. {
  75. "__id__": 656
  76. }
  77. ],
  78. "_prefab": null,
  79. "_lpos": {
  80. "__type__": "cc.Vec3",
  81. "x": 375,
  82. "y": 667,
  83. "z": 0
  84. },
  85. "_lrot": {
  86. "__type__": "cc.Quat",
  87. "x": 0,
  88. "y": 0,
  89. "z": 0,
  90. "w": 1
  91. },
  92. "_lscale": {
  93. "__type__": "cc.Vec3",
  94. "x": 1,
  95. "y": 1,
  96. "z": 1
  97. },
  98. "_layer": 33554432,
  99. "_euler": {
  100. "__type__": "cc.Vec3",
  101. "x": 0,
  102. "y": 0,
  103. "z": 0
  104. },
  105. "_id": "ebDmDnwLZGlbFioWIdu6nd"
  106. },
  107. {
  108. "__type__": "cc.Node",
  109. "_name": "Camera",
  110. "_objFlags": 0,
  111. "_parent": {
  112. "__id__": 2
  113. },
  114. "_children": [],
  115. "_active": true,
  116. "_components": [
  117. {
  118. "__id__": 4
  119. }
  120. ],
  121. "_prefab": null,
  122. "_lpos": {
  123. "__type__": "cc.Vec3",
  124. "x": 0,
  125. "y": 0,
  126. "z": 1000
  127. },
  128. "_lrot": {
  129. "__type__": "cc.Quat",
  130. "x": 0,
  131. "y": 0,
  132. "z": 0,
  133. "w": 1
  134. },
  135. "_lscale": {
  136. "__type__": "cc.Vec3",
  137. "x": 1,
  138. "y": 1,
  139. "z": 1
  140. },
  141. "_layer": 1073741824,
  142. "_euler": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_id": "b7KXGAi3ZI86tsk9PKHO6p"
  149. },
  150. {
  151. "__type__": "cc.Camera",
  152. "_name": "",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 3
  156. },
  157. "_enabled": true,
  158. "__prefab": null,
  159. "_projection": 0,
  160. "_priority": 1073741824,
  161. "_fov": 45,
  162. "_fovAxis": 0,
  163. "_orthoHeight": 667,
  164. "_near": 1,
  165. "_far": 2000,
  166. "_color": {
  167. "__type__": "cc.Color",
  168. "r": 0,
  169. "g": 0,
  170. "b": 0,
  171. "a": 255
  172. },
  173. "_depth": 1,
  174. "_stencil": 0,
  175. "_clearFlags": 6,
  176. "_rect": {
  177. "__type__": "cc.Rect",
  178. "x": 0,
  179. "y": 0,
  180. "width": 1,
  181. "height": 1
  182. },
  183. "_aperture": 19,
  184. "_shutter": 7,
  185. "_iso": 0,
  186. "_screenScale": 1,
  187. "_visibility": 1115684864,
  188. "_targetTexture": null,
  189. "_id": "485G0O0x1DVaDU+9axoK1D"
  190. },
  191. {
  192. "__type__": "cc.Node",
  193. "_name": "背景",
  194. "_objFlags": 512,
  195. "_parent": {
  196. "__id__": 2
  197. },
  198. "_children": [
  199. {
  200. "__id__": 6
  201. }
  202. ],
  203. "_active": true,
  204. "_components": [
  205. {
  206. "__id__": 12
  207. },
  208. {
  209. "__id__": 14
  210. }
  211. ],
  212. "_prefab": null,
  213. "_lpos": {
  214. "__type__": "cc.Vec3",
  215. "x": 0,
  216. "y": 0,
  217. "z": 0
  218. },
  219. "_lrot": {
  220. "__type__": "cc.Quat",
  221. "x": 0,
  222. "y": 0,
  223. "z": 0,
  224. "w": 1
  225. },
  226. "_lscale": {
  227. "__type__": "cc.Vec3",
  228. "x": 1,
  229. "y": 1,
  230. "z": 1
  231. },
  232. "_layer": 33554432,
  233. "_euler": {
  234. "__type__": "cc.Vec3",
  235. "x": 0,
  236. "y": 0,
  237. "z": 0
  238. },
  239. "_id": "cep9dZS01MJp6wDB+do8U3"
  240. },
  241. {
  242. "__type__": "cc.Node",
  243. "_name": "背景图片",
  244. "_objFlags": 0,
  245. "_parent": {
  246. "__id__": 5
  247. },
  248. "_children": [],
  249. "_active": true,
  250. "_components": [
  251. {
  252. "__id__": 7
  253. },
  254. {
  255. "__id__": 9
  256. },
  257. {
  258. "__id__": 11
  259. }
  260. ],
  261. "_prefab": null,
  262. "_lpos": {
  263. "__type__": "cc.Vec3",
  264. "x": 0,
  265. "y": 0,
  266. "z": 0
  267. },
  268. "_lrot": {
  269. "__type__": "cc.Quat",
  270. "x": 0,
  271. "y": 0,
  272. "z": 0,
  273. "w": 1
  274. },
  275. "_lscale": {
  276. "__type__": "cc.Vec3",
  277. "x": 1,
  278. "y": 1,
  279. "z": 1
  280. },
  281. "_layer": 33554432,
  282. "_euler": {
  283. "__type__": "cc.Vec3",
  284. "x": 0,
  285. "y": 0,
  286. "z": 0
  287. },
  288. "_id": "faEIq/VUpGoZeGboOUIiQm"
  289. },
  290. {
  291. "__type__": "cc.UITransform",
  292. "_name": "",
  293. "_objFlags": 0,
  294. "node": {
  295. "__id__": 6
  296. },
  297. "_enabled": true,
  298. "__prefab": {
  299. "__id__": 8
  300. },
  301. "_priority": 0,
  302. "_contentSize": {
  303. "__type__": "cc.Size",
  304. "width": 750,
  305. "height": 1334
  306. },
  307. "_anchorPoint": {
  308. "__type__": "cc.Vec2",
  309. "x": 0.5,
  310. "y": 0.5
  311. },
  312. "_id": "76eCirv4lG75woBmHskCvU"
  313. },
  314. {
  315. "__type__": "cc.CompPrefabInfo",
  316. "fileId": "f7NISe7HdAD68SLfhnddy8"
  317. },
  318. {
  319. "__type__": "cc.Sprite",
  320. "_name": "",
  321. "_objFlags": 0,
  322. "node": {
  323. "__id__": 6
  324. },
  325. "_enabled": true,
  326. "__prefab": {
  327. "__id__": 10
  328. },
  329. "_visFlags": 0,
  330. "_customMaterial": null,
  331. "_srcBlendFactor": 2,
  332. "_dstBlendFactor": 4,
  333. "_color": {
  334. "__type__": "cc.Color",
  335. "r": 255,
  336. "g": 255,
  337. "b": 255,
  338. "a": 255
  339. },
  340. "_spriteFrame": {
  341. "__uuid__": "7931af4a-ffa6-4afc-8525-84d28a92df0d@f9941"
  342. },
  343. "_type": 1,
  344. "_fillType": 0,
  345. "_sizeMode": 0,
  346. "_fillCenter": {
  347. "__type__": "cc.Vec2",
  348. "x": 0,
  349. "y": 0
  350. },
  351. "_fillStart": 0,
  352. "_fillRange": 0,
  353. "_isTrimmedMode": true,
  354. "_useGrayscale": false,
  355. "_atlas": null,
  356. "_id": "9ey/7Iu75C8qP3RbzegeXf"
  357. },
  358. {
  359. "__type__": "cc.CompPrefabInfo",
  360. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  361. },
  362. {
  363. "__type__": "cc.Widget",
  364. "_name": "",
  365. "_objFlags": 0,
  366. "node": {
  367. "__id__": 6
  368. },
  369. "_enabled": true,
  370. "__prefab": null,
  371. "_alignFlags": 45,
  372. "_target": null,
  373. "_left": 0,
  374. "_right": 0,
  375. "_top": 0,
  376. "_bottom": 0,
  377. "_horizontalCenter": 0,
  378. "_verticalCenter": 0,
  379. "_isAbsLeft": true,
  380. "_isAbsRight": true,
  381. "_isAbsTop": true,
  382. "_isAbsBottom": true,
  383. "_isAbsHorizontalCenter": true,
  384. "_isAbsVerticalCenter": true,
  385. "_originalWidth": 722,
  386. "_originalHeight": 769,
  387. "_alignMode": 2,
  388. "_lockFlags": 0,
  389. "_id": "d2IJZOrypHr6XtR1gsf2yh"
  390. },
  391. {
  392. "__type__": "cc.UITransform",
  393. "_name": "",
  394. "_objFlags": 0,
  395. "node": {
  396. "__id__": 5
  397. },
  398. "_enabled": true,
  399. "__prefab": {
  400. "__id__": 13
  401. },
  402. "_priority": 0,
  403. "_contentSize": {
  404. "__type__": "cc.Size",
  405. "width": 750,
  406. "height": 1334
  407. },
  408. "_anchorPoint": {
  409. "__type__": "cc.Vec2",
  410. "x": 0.5,
  411. "y": 0.5
  412. },
  413. "_id": "f93CX6o/1BeaHqNjsYgrls"
  414. },
  415. {
  416. "__type__": "cc.CompPrefabInfo",
  417. "fileId": "f7NISe7HdAD68SLfhnddy8"
  418. },
  419. {
  420. "__type__": "cc.Widget",
  421. "_name": "",
  422. "_objFlags": 0,
  423. "node": {
  424. "__id__": 5
  425. },
  426. "_enabled": true,
  427. "__prefab": null,
  428. "_alignFlags": 45,
  429. "_target": null,
  430. "_left": 0,
  431. "_right": 0,
  432. "_top": 0,
  433. "_bottom": 0,
  434. "_horizontalCenter": 0,
  435. "_verticalCenter": 0,
  436. "_isAbsLeft": true,
  437. "_isAbsRight": true,
  438. "_isAbsTop": true,
  439. "_isAbsBottom": true,
  440. "_isAbsHorizontalCenter": true,
  441. "_isAbsVerticalCenter": true,
  442. "_originalWidth": 722,
  443. "_originalHeight": 769,
  444. "_alignMode": 2,
  445. "_lockFlags": 0,
  446. "_id": "f0FoTu2lpBg7kFHGF5S/aE"
  447. },
  448. {
  449. "__type__": "cc.Node",
  450. "_name": "游戏",
  451. "_objFlags": 0,
  452. "_parent": {
  453. "__id__": 2
  454. },
  455. "_children": [
  456. {
  457. "__id__": 16
  458. },
  459. {
  460. "__id__": 364
  461. },
  462. {
  463. "__id__": 360
  464. }
  465. ],
  466. "_active": true,
  467. "_components": [
  468. {
  469. "__id__": 650
  470. },
  471. {
  472. "__id__": 651
  473. }
  474. ],
  475. "_prefab": null,
  476. "_lpos": {
  477. "__type__": "cc.Vec3",
  478. "x": 0,
  479. "y": 0,
  480. "z": 0
  481. },
  482. "_lrot": {
  483. "__type__": "cc.Quat",
  484. "x": 0,
  485. "y": 0,
  486. "z": 0,
  487. "w": 1
  488. },
  489. "_lscale": {
  490. "__type__": "cc.Vec3",
  491. "x": 1,
  492. "y": 1,
  493. "z": 1
  494. },
  495. "_layer": 33554432,
  496. "_euler": {
  497. "__type__": "cc.Vec3",
  498. "x": 0,
  499. "y": 0,
  500. "z": 0
  501. },
  502. "_id": "e9O3RfbFNC77KyJY6XzHPF"
  503. },
  504. {
  505. "__type__": "cc.Node",
  506. "_name": "购买出售组",
  507. "_objFlags": 0,
  508. "_parent": {
  509. "__id__": 15
  510. },
  511. "_children": [
  512. {
  513. "__id__": 17
  514. },
  515. {
  516. "__id__": 112
  517. }
  518. ],
  519. "_active": true,
  520. "_components": [
  521. {
  522. "__id__": 648
  523. },
  524. {
  525. "__id__": 649
  526. }
  527. ],
  528. "_prefab": null,
  529. "_lpos": {
  530. "__type__": "cc.Vec3",
  531. "x": 0,
  532. "y": -573,
  533. "z": 0
  534. },
  535. "_lrot": {
  536. "__type__": "cc.Quat",
  537. "x": 0,
  538. "y": 0,
  539. "z": 0,
  540. "w": 1
  541. },
  542. "_lscale": {
  543. "__type__": "cc.Vec3",
  544. "x": 1,
  545. "y": 1,
  546. "z": 1
  547. },
  548. "_layer": 1073741824,
  549. "_euler": {
  550. "__type__": "cc.Vec3",
  551. "x": 0,
  552. "y": 0,
  553. "z": 0
  554. },
  555. "_id": "cfJ9FxYi5AxokeIYpYrqGD"
  556. },
  557. {
  558. "__type__": "cc.Node",
  559. "_name": "购买",
  560. "_objFlags": 0,
  561. "_parent": {
  562. "__id__": 16
  563. },
  564. "_children": [
  565. {
  566. "__id__": 18
  567. },
  568. {
  569. "__id__": 21
  570. },
  571. {
  572. "__id__": 24
  573. }
  574. ],
  575. "_active": true,
  576. "_components": [
  577. {
  578. "__id__": 106
  579. },
  580. {
  581. "__id__": 107
  582. },
  583. {
  584. "__id__": 645
  585. },
  586. {
  587. "__id__": 646
  588. },
  589. {
  590. "__id__": 647
  591. }
  592. ],
  593. "_prefab": null,
  594. "_lpos": {
  595. "__type__": "cc.Vec3",
  596. "x": 0,
  597. "y": 0,
  598. "z": 0
  599. },
  600. "_lrot": {
  601. "__type__": "cc.Quat",
  602. "x": 0,
  603. "y": 0,
  604. "z": 0,
  605. "w": 1
  606. },
  607. "_lscale": {
  608. "__type__": "cc.Vec3",
  609. "x": 1,
  610. "y": 1,
  611. "z": 1
  612. },
  613. "_layer": 33554432,
  614. "_euler": {
  615. "__type__": "cc.Vec3",
  616. "x": 0,
  617. "y": 0,
  618. "z": 0
  619. },
  620. "_id": "bcND6J60ZEcpdh4EWIKTjW"
  621. },
  622. {
  623. "__type__": "cc.Node",
  624. "_name": "左边云",
  625. "_objFlags": 0,
  626. "_parent": {
  627. "__id__": 17
  628. },
  629. "_children": [],
  630. "_active": true,
  631. "_components": [
  632. {
  633. "__id__": 19
  634. },
  635. {
  636. "__id__": 20
  637. }
  638. ],
  639. "_prefab": null,
  640. "_lpos": {
  641. "__type__": "cc.Vec3",
  642. "x": -165.361,
  643. "y": 61.99799999999999,
  644. "z": 0
  645. },
  646. "_lrot": {
  647. "__type__": "cc.Quat",
  648. "x": 0,
  649. "y": 0,
  650. "z": 0,
  651. "w": 1
  652. },
  653. "_lscale": {
  654. "__type__": "cc.Vec3",
  655. "x": 1,
  656. "y": 1,
  657. "z": 1
  658. },
  659. "_layer": 33554432,
  660. "_euler": {
  661. "__type__": "cc.Vec3",
  662. "x": 0,
  663. "y": 0,
  664. "z": 0
  665. },
  666. "_id": "9d3BOFwcVEU4lEB7WUkjDF"
  667. },
  668. {
  669. "__type__": "cc.UITransform",
  670. "_name": "",
  671. "_objFlags": 0,
  672. "node": {
  673. "__id__": 18
  674. },
  675. "_enabled": true,
  676. "__prefab": null,
  677. "_priority": 0,
  678. "_contentSize": {
  679. "__type__": "cc.Size",
  680. "width": 103,
  681. "height": 77
  682. },
  683. "_anchorPoint": {
  684. "__type__": "cc.Vec2",
  685. "x": 0.5,
  686. "y": 0.5
  687. },
  688. "_id": "b4QGRGHAtAv6UfHCY2QUYc"
  689. },
  690. {
  691. "__type__": "cc.Sprite",
  692. "_name": "",
  693. "_objFlags": 0,
  694. "node": {
  695. "__id__": 18
  696. },
  697. "_enabled": true,
  698. "__prefab": null,
  699. "_visFlags": 0,
  700. "_customMaterial": null,
  701. "_srcBlendFactor": 2,
  702. "_dstBlendFactor": 4,
  703. "_color": {
  704. "__type__": "cc.Color",
  705. "r": 255,
  706. "g": 255,
  707. "b": 255,
  708. "a": 255
  709. },
  710. "_spriteFrame": {
  711. "__uuid__": "1bd91cd8-a145-4876-8df0-fc43d6142ac5@f9941"
  712. },
  713. "_type": 0,
  714. "_fillType": 0,
  715. "_sizeMode": 1,
  716. "_fillCenter": {
  717. "__type__": "cc.Vec2",
  718. "x": 0,
  719. "y": 0
  720. },
  721. "_fillStart": 0,
  722. "_fillRange": 0,
  723. "_isTrimmedMode": true,
  724. "_useGrayscale": false,
  725. "_atlas": null,
  726. "_id": "25BxGTWrFFr4vpsCgDpP9y"
  727. },
  728. {
  729. "__type__": "cc.Node",
  730. "_name": "右边云",
  731. "_objFlags": 0,
  732. "_parent": {
  733. "__id__": 17
  734. },
  735. "_children": [],
  736. "_active": true,
  737. "_components": [
  738. {
  739. "__id__": 22
  740. },
  741. {
  742. "__id__": 23
  743. }
  744. ],
  745. "_prefab": null,
  746. "_lpos": {
  747. "__type__": "cc.Vec3",
  748. "x": 191.93,
  749. "y": -58.333,
  750. "z": 0
  751. },
  752. "_lrot": {
  753. "__type__": "cc.Quat",
  754. "x": 0,
  755. "y": 0,
  756. "z": 0,
  757. "w": 1
  758. },
  759. "_lscale": {
  760. "__type__": "cc.Vec3",
  761. "x": 1,
  762. "y": 1,
  763. "z": 1
  764. },
  765. "_layer": 33554432,
  766. "_euler": {
  767. "__type__": "cc.Vec3",
  768. "x": 0,
  769. "y": 0,
  770. "z": 0
  771. },
  772. "_id": "d03sCuk+JIC46RZ5Fs+nk3"
  773. },
  774. {
  775. "__type__": "cc.UITransform",
  776. "_name": "",
  777. "_objFlags": 0,
  778. "node": {
  779. "__id__": 21
  780. },
  781. "_enabled": true,
  782. "__prefab": null,
  783. "_priority": 0,
  784. "_contentSize": {
  785. "__type__": "cc.Size",
  786. "width": 121,
  787. "height": 49
  788. },
  789. "_anchorPoint": {
  790. "__type__": "cc.Vec2",
  791. "x": 0.5,
  792. "y": 0.5
  793. },
  794. "_id": "2ag+TDdtJJn6q3rQNLFbsg"
  795. },
  796. {
  797. "__type__": "cc.Sprite",
  798. "_name": "",
  799. "_objFlags": 0,
  800. "node": {
  801. "__id__": 21
  802. },
  803. "_enabled": true,
  804. "__prefab": null,
  805. "_visFlags": 0,
  806. "_customMaterial": null,
  807. "_srcBlendFactor": 2,
  808. "_dstBlendFactor": 4,
  809. "_color": {
  810. "__type__": "cc.Color",
  811. "r": 255,
  812. "g": 255,
  813. "b": 255,
  814. "a": 255
  815. },
  816. "_spriteFrame": {
  817. "__uuid__": "0fde2077-70a9-4d10-ba10-73fd7b4ad7d1@f9941"
  818. },
  819. "_type": 0,
  820. "_fillType": 0,
  821. "_sizeMode": 1,
  822. "_fillCenter": {
  823. "__type__": "cc.Vec2",
  824. "x": 0,
  825. "y": 0
  826. },
  827. "_fillStart": 0,
  828. "_fillRange": 0,
  829. "_isTrimmedMode": true,
  830. "_useGrayscale": false,
  831. "_atlas": null,
  832. "_id": "b9eGYMBhVOI5KH3NN3cRgg"
  833. },
  834. {
  835. "__type__": "cc.Node",
  836. "_name": "购买预览",
  837. "_objFlags": 0,
  838. "_parent": {
  839. "__id__": 17
  840. },
  841. "_children": [
  842. {
  843. "__id__": 25
  844. },
  845. {
  846. "__id__": 99
  847. }
  848. ],
  849. "_active": true,
  850. "_components": [
  851. {
  852. "__id__": 103
  853. },
  854. {
  855. "__id__": 104
  856. },
  857. {
  858. "__id__": 105
  859. }
  860. ],
  861. "_prefab": null,
  862. "_lpos": {
  863. "__type__": "cc.Vec3",
  864. "x": 0,
  865. "y": 0,
  866. "z": 0
  867. },
  868. "_lrot": {
  869. "__type__": "cc.Quat",
  870. "x": 0,
  871. "y": 0,
  872. "z": 0,
  873. "w": 1
  874. },
  875. "_lscale": {
  876. "__type__": "cc.Vec3",
  877. "x": 1,
  878. "y": 1,
  879. "z": 1
  880. },
  881. "_layer": 33554432,
  882. "_euler": {
  883. "__type__": "cc.Vec3",
  884. "x": 0,
  885. "y": 0,
  886. "z": 0
  887. },
  888. "_id": "2bGYV+TfxAI5ecbgkZP+Pl"
  889. },
  890. {
  891. "__type__": "cc.Node",
  892. "_name": "价格信息",
  893. "_objFlags": 0,
  894. "_parent": {
  895. "__id__": 24
  896. },
  897. "_children": [
  898. {
  899. "__id__": 26
  900. },
  901. {
  902. "__id__": 29
  903. },
  904. {
  905. "__id__": 32
  906. }
  907. ],
  908. "_active": true,
  909. "_components": [
  910. {
  911. "__id__": 98
  912. }
  913. ],
  914. "_prefab": null,
  915. "_lpos": {
  916. "__type__": "cc.Vec3",
  917. "x": 0,
  918. "y": 28.68,
  919. "z": 0
  920. },
  921. "_lrot": {
  922. "__type__": "cc.Quat",
  923. "x": 0,
  924. "y": 0,
  925. "z": 0,
  926. "w": 1
  927. },
  928. "_lscale": {
  929. "__type__": "cc.Vec3",
  930. "x": 1,
  931. "y": 1,
  932. "z": 1
  933. },
  934. "_layer": 33554432,
  935. "_euler": {
  936. "__type__": "cc.Vec3",
  937. "x": 0,
  938. "y": 0,
  939. "z": 0
  940. },
  941. "_id": "f4zgg4QwBDGJdGb16xXlq+"
  942. },
  943. {
  944. "__type__": "cc.Node",
  945. "_name": "背景",
  946. "_objFlags": 0,
  947. "_parent": {
  948. "__id__": 25
  949. },
  950. "_children": [],
  951. "_active": true,
  952. "_components": [
  953. {
  954. "__id__": 27
  955. },
  956. {
  957. "__id__": 28
  958. }
  959. ],
  960. "_prefab": null,
  961. "_lpos": {
  962. "__type__": "cc.Vec3",
  963. "x": 15,
  964. "y": 0,
  965. "z": 0
  966. },
  967. "_lrot": {
  968. "__type__": "cc.Quat",
  969. "x": 0,
  970. "y": 0,
  971. "z": 0,
  972. "w": 1
  973. },
  974. "_lscale": {
  975. "__type__": "cc.Vec3",
  976. "x": 1,
  977. "y": 1,
  978. "z": 1
  979. },
  980. "_layer": 33554432,
  981. "_euler": {
  982. "__type__": "cc.Vec3",
  983. "x": 0,
  984. "y": 0,
  985. "z": 0
  986. },
  987. "_id": "183TfRNmJJnrsN5pHEI6SJ"
  988. },
  989. {
  990. "__type__": "cc.UITransform",
  991. "_name": "",
  992. "_objFlags": 0,
  993. "node": {
  994. "__id__": 26
  995. },
  996. "_enabled": true,
  997. "__prefab": null,
  998. "_priority": 0,
  999. "_contentSize": {
  1000. "__type__": "cc.Size",
  1001. "width": 199,
  1002. "height": 40
  1003. },
  1004. "_anchorPoint": {
  1005. "__type__": "cc.Vec2",
  1006. "x": 0.5,
  1007. "y": 0.5
  1008. },
  1009. "_id": "b9M7dYCjVBIZ5JqanIvPTy"
  1010. },
  1011. {
  1012. "__type__": "cc.Sprite",
  1013. "_name": "",
  1014. "_objFlags": 0,
  1015. "node": {
  1016. "__id__": 26
  1017. },
  1018. "_enabled": true,
  1019. "__prefab": null,
  1020. "_visFlags": 0,
  1021. "_customMaterial": null,
  1022. "_srcBlendFactor": 2,
  1023. "_dstBlendFactor": 4,
  1024. "_color": {
  1025. "__type__": "cc.Color",
  1026. "r": 255,
  1027. "g": 255,
  1028. "b": 255,
  1029. "a": 255
  1030. },
  1031. "_spriteFrame": {
  1032. "__uuid__": "7054e935-1656-4459-aa50-705a896f0078@f9941"
  1033. },
  1034. "_type": 0,
  1035. "_fillType": 0,
  1036. "_sizeMode": 1,
  1037. "_fillCenter": {
  1038. "__type__": "cc.Vec2",
  1039. "x": 0,
  1040. "y": 0
  1041. },
  1042. "_fillStart": 0,
  1043. "_fillRange": 0,
  1044. "_isTrimmedMode": true,
  1045. "_useGrayscale": false,
  1046. "_atlas": null,
  1047. "_id": "a9jq/8vHdAXLmRRrXQjIfU"
  1048. },
  1049. {
  1050. "__type__": "cc.Node",
  1051. "_name": "金币",
  1052. "_objFlags": 0,
  1053. "_parent": {
  1054. "__id__": 25
  1055. },
  1056. "_children": [],
  1057. "_active": true,
  1058. "_components": [
  1059. {
  1060. "__id__": 30
  1061. },
  1062. {
  1063. "__id__": 31
  1064. }
  1065. ],
  1066. "_prefab": null,
  1067. "_lpos": {
  1068. "__type__": "cc.Vec3",
  1069. "x": -85,
  1070. "y": 0,
  1071. "z": 0
  1072. },
  1073. "_lrot": {
  1074. "__type__": "cc.Quat",
  1075. "x": 0,
  1076. "y": 0,
  1077. "z": 0,
  1078. "w": 1
  1079. },
  1080. "_lscale": {
  1081. "__type__": "cc.Vec3",
  1082. "x": 1,
  1083. "y": 1,
  1084. "z": 1
  1085. },
  1086. "_layer": 33554432,
  1087. "_euler": {
  1088. "__type__": "cc.Vec3",
  1089. "x": 0,
  1090. "y": 0,
  1091. "z": 0
  1092. },
  1093. "_id": "a46q1kSEJOmZOzjeOjrNKF"
  1094. },
  1095. {
  1096. "__type__": "cc.UITransform",
  1097. "_name": "",
  1098. "_objFlags": 0,
  1099. "node": {
  1100. "__id__": 29
  1101. },
  1102. "_enabled": true,
  1103. "__prefab": null,
  1104. "_priority": 0,
  1105. "_contentSize": {
  1106. "__type__": "cc.Size",
  1107. "width": 58,
  1108. "height": 58
  1109. },
  1110. "_anchorPoint": {
  1111. "__type__": "cc.Vec2",
  1112. "x": 0.5,
  1113. "y": 0.5
  1114. },
  1115. "_id": "40QrZkJ1hHy7NTvZV5SJXS"
  1116. },
  1117. {
  1118. "__type__": "cc.Sprite",
  1119. "_name": "",
  1120. "_objFlags": 0,
  1121. "node": {
  1122. "__id__": 29
  1123. },
  1124. "_enabled": true,
  1125. "__prefab": null,
  1126. "_visFlags": 0,
  1127. "_customMaterial": null,
  1128. "_srcBlendFactor": 2,
  1129. "_dstBlendFactor": 4,
  1130. "_color": {
  1131. "__type__": "cc.Color",
  1132. "r": 255,
  1133. "g": 255,
  1134. "b": 255,
  1135. "a": 255
  1136. },
  1137. "_spriteFrame": {
  1138. "__uuid__": "c325f5dd-f0f1-46db-a693-86691b4930df@f9941"
  1139. },
  1140. "_type": 0,
  1141. "_fillType": 0,
  1142. "_sizeMode": 1,
  1143. "_fillCenter": {
  1144. "__type__": "cc.Vec2",
  1145. "x": 0,
  1146. "y": 0
  1147. },
  1148. "_fillStart": 0,
  1149. "_fillRange": 0,
  1150. "_isTrimmedMode": true,
  1151. "_useGrayscale": false,
  1152. "_atlas": null,
  1153. "_id": "c1j/vlmyZBraABKWiZuRQ8"
  1154. },
  1155. {
  1156. "__type__": "cc.Node",
  1157. "_name": "价格",
  1158. "_objFlags": 0,
  1159. "_parent": {
  1160. "__id__": 25
  1161. },
  1162. "_children": [
  1163. {
  1164. "__id__": 33
  1165. },
  1166. {
  1167. "__id__": 36
  1168. },
  1169. {
  1170. "__id__": 39
  1171. },
  1172. {
  1173. "__id__": 42
  1174. },
  1175. {
  1176. "__id__": 45
  1177. },
  1178. {
  1179. "__id__": 48
  1180. },
  1181. {
  1182. "__id__": 51
  1183. }
  1184. ],
  1185. "_active": true,
  1186. "_components": [
  1187. {
  1188. "__id__": 54
  1189. },
  1190. {
  1191. "__id__": 55
  1192. },
  1193. {
  1194. "__id__": 97
  1195. }
  1196. ],
  1197. "_prefab": null,
  1198. "_lpos": {
  1199. "__type__": "cc.Vec3",
  1200. "x": 20,
  1201. "y": 0,
  1202. "z": 0
  1203. },
  1204. "_lrot": {
  1205. "__type__": "cc.Quat",
  1206. "x": 0,
  1207. "y": 0,
  1208. "z": 0,
  1209. "w": 1
  1210. },
  1211. "_lscale": {
  1212. "__type__": "cc.Vec3",
  1213. "x": 1,
  1214. "y": 1,
  1215. "z": 1
  1216. },
  1217. "_layer": 33554432,
  1218. "_euler": {
  1219. "__type__": "cc.Vec3",
  1220. "x": 0,
  1221. "y": 0,
  1222. "z": 0
  1223. },
  1224. "_id": "94qr/wQ55FqKRVAdJIxINR"
  1225. },
  1226. {
  1227. "__type__": "cc.Node",
  1228. "_name": "1",
  1229. "_objFlags": 0,
  1230. "_parent": {
  1231. "__id__": 32
  1232. },
  1233. "_children": [],
  1234. "_active": true,
  1235. "_components": [
  1236. {
  1237. "__id__": 34
  1238. },
  1239. {
  1240. "__id__": 35
  1241. }
  1242. ],
  1243. "_prefab": null,
  1244. "_lpos": {
  1245. "__type__": "cc.Vec3",
  1246. "x": -58,
  1247. "y": 0,
  1248. "z": 0
  1249. },
  1250. "_lrot": {
  1251. "__type__": "cc.Quat",
  1252. "x": 0,
  1253. "y": 0,
  1254. "z": 0,
  1255. "w": 1
  1256. },
  1257. "_lscale": {
  1258. "__type__": "cc.Vec3",
  1259. "x": 1,
  1260. "y": 1,
  1261. "z": 1
  1262. },
  1263. "_layer": 33554432,
  1264. "_euler": {
  1265. "__type__": "cc.Vec3",
  1266. "x": 0,
  1267. "y": 0,
  1268. "z": 0
  1269. },
  1270. "_id": "59WERBNgFPdqWnH7MlyZeo"
  1271. },
  1272. {
  1273. "__type__": "cc.UITransform",
  1274. "_name": "",
  1275. "_objFlags": 0,
  1276. "node": {
  1277. "__id__": 33
  1278. },
  1279. "_enabled": true,
  1280. "__prefab": null,
  1281. "_priority": 0,
  1282. "_contentSize": {
  1283. "__type__": "cc.Size",
  1284. "width": 26,
  1285. "height": 36
  1286. },
  1287. "_anchorPoint": {
  1288. "__type__": "cc.Vec2",
  1289. "x": 0.5,
  1290. "y": 0.5
  1291. },
  1292. "_id": "a5m7Rw19ZD/IKaExAC9HBS"
  1293. },
  1294. {
  1295. "__type__": "cc.Sprite",
  1296. "_name": "",
  1297. "_objFlags": 0,
  1298. "node": {
  1299. "__id__": 33
  1300. },
  1301. "_enabled": true,
  1302. "__prefab": null,
  1303. "_visFlags": 0,
  1304. "_customMaterial": null,
  1305. "_srcBlendFactor": 2,
  1306. "_dstBlendFactor": 4,
  1307. "_color": {
  1308. "__type__": "cc.Color",
  1309. "r": 255,
  1310. "g": 255,
  1311. "b": 255,
  1312. "a": 255
  1313. },
  1314. "_spriteFrame": {
  1315. "__uuid__": "87f04f4b-5067-40f3-b6d5-e234a2e54485@f9941"
  1316. },
  1317. "_type": 0,
  1318. "_fillType": 0,
  1319. "_sizeMode": 1,
  1320. "_fillCenter": {
  1321. "__type__": "cc.Vec2",
  1322. "x": 0,
  1323. "y": 0
  1324. },
  1325. "_fillStart": 0,
  1326. "_fillRange": 0,
  1327. "_isTrimmedMode": true,
  1328. "_useGrayscale": false,
  1329. "_atlas": null,
  1330. "_id": "aftiXTwCRBr4LTLfW8uFDL"
  1331. },
  1332. {
  1333. "__type__": "cc.Node",
  1334. "_name": "7",
  1335. "_objFlags": 0,
  1336. "_parent": {
  1337. "__id__": 32
  1338. },
  1339. "_children": [],
  1340. "_active": true,
  1341. "_components": [
  1342. {
  1343. "__id__": 37
  1344. },
  1345. {
  1346. "__id__": 38
  1347. }
  1348. ],
  1349. "_prefab": null,
  1350. "_lpos": {
  1351. "__type__": "cc.Vec3",
  1352. "x": -38,
  1353. "y": 0,
  1354. "z": 0
  1355. },
  1356. "_lrot": {
  1357. "__type__": "cc.Quat",
  1358. "x": 0,
  1359. "y": 0,
  1360. "z": 0,
  1361. "w": 1
  1362. },
  1363. "_lscale": {
  1364. "__type__": "cc.Vec3",
  1365. "x": 1,
  1366. "y": 1,
  1367. "z": 1
  1368. },
  1369. "_layer": 33554432,
  1370. "_euler": {
  1371. "__type__": "cc.Vec3",
  1372. "x": 0,
  1373. "y": 0,
  1374. "z": 0
  1375. },
  1376. "_id": "14fL0yBGxPO4NKMoY/waRl"
  1377. },
  1378. {
  1379. "__type__": "cc.UITransform",
  1380. "_name": "",
  1381. "_objFlags": 0,
  1382. "node": {
  1383. "__id__": 36
  1384. },
  1385. "_enabled": true,
  1386. "__prefab": null,
  1387. "_priority": 0,
  1388. "_contentSize": {
  1389. "__type__": "cc.Size",
  1390. "width": 24,
  1391. "height": 36
  1392. },
  1393. "_anchorPoint": {
  1394. "__type__": "cc.Vec2",
  1395. "x": 0.5,
  1396. "y": 0.5
  1397. },
  1398. "_id": "72r7a2e8JFLaMRYnc6IZvL"
  1399. },
  1400. {
  1401. "__type__": "cc.Sprite",
  1402. "_name": "",
  1403. "_objFlags": 0,
  1404. "node": {
  1405. "__id__": 36
  1406. },
  1407. "_enabled": true,
  1408. "__prefab": null,
  1409. "_visFlags": 0,
  1410. "_customMaterial": null,
  1411. "_srcBlendFactor": 2,
  1412. "_dstBlendFactor": 4,
  1413. "_color": {
  1414. "__type__": "cc.Color",
  1415. "r": 255,
  1416. "g": 255,
  1417. "b": 255,
  1418. "a": 255
  1419. },
  1420. "_spriteFrame": {
  1421. "__uuid__": "d968b07a-8a63-4df2-a28f-a832dbb3cd03@f9941"
  1422. },
  1423. "_type": 0,
  1424. "_fillType": 0,
  1425. "_sizeMode": 1,
  1426. "_fillCenter": {
  1427. "__type__": "cc.Vec2",
  1428. "x": 0,
  1429. "y": 0
  1430. },
  1431. "_fillStart": 0,
  1432. "_fillRange": 0,
  1433. "_isTrimmedMode": true,
  1434. "_useGrayscale": false,
  1435. "_atlas": null,
  1436. "_id": "5ccPb+mbBI2oj/8dlghk8O"
  1437. },
  1438. {
  1439. "__type__": "cc.Node",
  1440. "_name": "2",
  1441. "_objFlags": 0,
  1442. "_parent": {
  1443. "__id__": 32
  1444. },
  1445. "_children": [],
  1446. "_active": true,
  1447. "_components": [
  1448. {
  1449. "__id__": 40
  1450. },
  1451. {
  1452. "__id__": 41
  1453. }
  1454. ],
  1455. "_prefab": null,
  1456. "_lpos": {
  1457. "__type__": "cc.Vec3",
  1458. "x": -18,
  1459. "y": 0,
  1460. "z": 0
  1461. },
  1462. "_lrot": {
  1463. "__type__": "cc.Quat",
  1464. "x": 0,
  1465. "y": 0,
  1466. "z": 0,
  1467. "w": 1
  1468. },
  1469. "_lscale": {
  1470. "__type__": "cc.Vec3",
  1471. "x": 1,
  1472. "y": 1,
  1473. "z": 1
  1474. },
  1475. "_layer": 33554432,
  1476. "_euler": {
  1477. "__type__": "cc.Vec3",
  1478. "x": 0,
  1479. "y": 0,
  1480. "z": 0
  1481. },
  1482. "_id": "693tXIS2RHD6mJhC5RxpyU"
  1483. },
  1484. {
  1485. "__type__": "cc.UITransform",
  1486. "_name": "",
  1487. "_objFlags": 0,
  1488. "node": {
  1489. "__id__": 39
  1490. },
  1491. "_enabled": true,
  1492. "__prefab": null,
  1493. "_priority": 0,
  1494. "_contentSize": {
  1495. "__type__": "cc.Size",
  1496. "width": 26,
  1497. "height": 36
  1498. },
  1499. "_anchorPoint": {
  1500. "__type__": "cc.Vec2",
  1501. "x": 0.5,
  1502. "y": 0.5
  1503. },
  1504. "_id": "58nDibUd5HnbkG5lSFeRwM"
  1505. },
  1506. {
  1507. "__type__": "cc.Sprite",
  1508. "_name": "",
  1509. "_objFlags": 0,
  1510. "node": {
  1511. "__id__": 39
  1512. },
  1513. "_enabled": true,
  1514. "__prefab": null,
  1515. "_visFlags": 0,
  1516. "_customMaterial": null,
  1517. "_srcBlendFactor": 2,
  1518. "_dstBlendFactor": 4,
  1519. "_color": {
  1520. "__type__": "cc.Color",
  1521. "r": 255,
  1522. "g": 255,
  1523. "b": 255,
  1524. "a": 255
  1525. },
  1526. "_spriteFrame": {
  1527. "__uuid__": "e9c2b431-e6a5-4cd3-8ea3-a07df8888771@f9941"
  1528. },
  1529. "_type": 0,
  1530. "_fillType": 0,
  1531. "_sizeMode": 1,
  1532. "_fillCenter": {
  1533. "__type__": "cc.Vec2",
  1534. "x": 0,
  1535. "y": 0
  1536. },
  1537. "_fillStart": 0,
  1538. "_fillRange": 0,
  1539. "_isTrimmedMode": true,
  1540. "_useGrayscale": false,
  1541. "_atlas": null,
  1542. "_id": "43/smY2cJAFLvoxYSiae5w"
  1543. },
  1544. {
  1545. "__type__": "cc.Node",
  1546. "_name": ".",
  1547. "_objFlags": 0,
  1548. "_parent": {
  1549. "__id__": 32
  1550. },
  1551. "_children": [],
  1552. "_active": true,
  1553. "_components": [
  1554. {
  1555. "__id__": 43
  1556. },
  1557. {
  1558. "__id__": 44
  1559. }
  1560. ],
  1561. "_prefab": null,
  1562. "_lpos": {
  1563. "__type__": "cc.Vec3",
  1564. "x": 2,
  1565. "y": 0,
  1566. "z": 0
  1567. },
  1568. "_lrot": {
  1569. "__type__": "cc.Quat",
  1570. "x": 0,
  1571. "y": 0,
  1572. "z": 0,
  1573. "w": 1
  1574. },
  1575. "_lscale": {
  1576. "__type__": "cc.Vec3",
  1577. "x": 1,
  1578. "y": 1,
  1579. "z": 1
  1580. },
  1581. "_layer": 33554432,
  1582. "_euler": {
  1583. "__type__": "cc.Vec3",
  1584. "x": 0,
  1585. "y": 0,
  1586. "z": 0
  1587. },
  1588. "_id": "2eegdS1ZdAB64I663ma09F"
  1589. },
  1590. {
  1591. "__type__": "cc.UITransform",
  1592. "_name": "",
  1593. "_objFlags": 0,
  1594. "node": {
  1595. "__id__": 42
  1596. },
  1597. "_enabled": true,
  1598. "__prefab": null,
  1599. "_priority": 0,
  1600. "_contentSize": {
  1601. "__type__": "cc.Size",
  1602. "width": 24,
  1603. "height": 36
  1604. },
  1605. "_anchorPoint": {
  1606. "__type__": "cc.Vec2",
  1607. "x": 0.5,
  1608. "y": 0.5
  1609. },
  1610. "_id": "e4R33Qi9xHSIZVOKbosL3F"
  1611. },
  1612. {
  1613. "__type__": "cc.Sprite",
  1614. "_name": "",
  1615. "_objFlags": 0,
  1616. "node": {
  1617. "__id__": 42
  1618. },
  1619. "_enabled": true,
  1620. "__prefab": null,
  1621. "_visFlags": 0,
  1622. "_customMaterial": null,
  1623. "_srcBlendFactor": 2,
  1624. "_dstBlendFactor": 4,
  1625. "_color": {
  1626. "__type__": "cc.Color",
  1627. "r": 255,
  1628. "g": 255,
  1629. "b": 255,
  1630. "a": 255
  1631. },
  1632. "_spriteFrame": {
  1633. "__uuid__": "3ee9dd63-8bc1-416a-82f6-a9e60a262ec4@f9941"
  1634. },
  1635. "_type": 0,
  1636. "_fillType": 0,
  1637. "_sizeMode": 1,
  1638. "_fillCenter": {
  1639. "__type__": "cc.Vec2",
  1640. "x": 0,
  1641. "y": 0
  1642. },
  1643. "_fillStart": 0,
  1644. "_fillRange": 0,
  1645. "_isTrimmedMode": true,
  1646. "_useGrayscale": false,
  1647. "_atlas": null,
  1648. "_id": "2aiWTMgE9JpaBfMPcSBhnB"
  1649. },
  1650. {
  1651. "__type__": "cc.Node",
  1652. "_name": "6",
  1653. "_objFlags": 0,
  1654. "_parent": {
  1655. "__id__": 32
  1656. },
  1657. "_children": [],
  1658. "_active": true,
  1659. "_components": [
  1660. {
  1661. "__id__": 46
  1662. },
  1663. {
  1664. "__id__": 47
  1665. }
  1666. ],
  1667. "_prefab": null,
  1668. "_lpos": {
  1669. "__type__": "cc.Vec3",
  1670. "x": 21,
  1671. "y": 0,
  1672. "z": 0
  1673. },
  1674. "_lrot": {
  1675. "__type__": "cc.Quat",
  1676. "x": 0,
  1677. "y": 0,
  1678. "z": 0,
  1679. "w": 1
  1680. },
  1681. "_lscale": {
  1682. "__type__": "cc.Vec3",
  1683. "x": 1,
  1684. "y": 1,
  1685. "z": 1
  1686. },
  1687. "_layer": 33554432,
  1688. "_euler": {
  1689. "__type__": "cc.Vec3",
  1690. "x": 0,
  1691. "y": 0,
  1692. "z": 0
  1693. },
  1694. "_id": "59R8Yx8A5HFrUpEXceWfIt"
  1695. },
  1696. {
  1697. "__type__": "cc.UITransform",
  1698. "_name": "",
  1699. "_objFlags": 0,
  1700. "node": {
  1701. "__id__": 45
  1702. },
  1703. "_enabled": true,
  1704. "__prefab": null,
  1705. "_priority": 0,
  1706. "_contentSize": {
  1707. "__type__": "cc.Size",
  1708. "width": 24,
  1709. "height": 36
  1710. },
  1711. "_anchorPoint": {
  1712. "__type__": "cc.Vec2",
  1713. "x": 0.5,
  1714. "y": 0.5
  1715. },
  1716. "_id": "ddfV76AkNFNILEMCr18cJW"
  1717. },
  1718. {
  1719. "__type__": "cc.Sprite",
  1720. "_name": "",
  1721. "_objFlags": 0,
  1722. "node": {
  1723. "__id__": 45
  1724. },
  1725. "_enabled": true,
  1726. "__prefab": null,
  1727. "_visFlags": 0,
  1728. "_customMaterial": null,
  1729. "_srcBlendFactor": 2,
  1730. "_dstBlendFactor": 4,
  1731. "_color": {
  1732. "__type__": "cc.Color",
  1733. "r": 255,
  1734. "g": 255,
  1735. "b": 255,
  1736. "a": 255
  1737. },
  1738. "_spriteFrame": {
  1739. "__uuid__": "00696600-b3b0-4b93-b59d-7c329a37c983@f9941"
  1740. },
  1741. "_type": 0,
  1742. "_fillType": 0,
  1743. "_sizeMode": 1,
  1744. "_fillCenter": {
  1745. "__type__": "cc.Vec2",
  1746. "x": 0,
  1747. "y": 0
  1748. },
  1749. "_fillStart": 0,
  1750. "_fillRange": 0,
  1751. "_isTrimmedMode": true,
  1752. "_useGrayscale": false,
  1753. "_atlas": null,
  1754. "_id": "2bcMuQlfRPI5xoDcVlzJXB"
  1755. },
  1756. {
  1757. "__type__": "cc.Node",
  1758. "_name": "2",
  1759. "_objFlags": 0,
  1760. "_parent": {
  1761. "__id__": 32
  1762. },
  1763. "_children": [],
  1764. "_active": true,
  1765. "_components": [
  1766. {
  1767. "__id__": 49
  1768. },
  1769. {
  1770. "__id__": 50
  1771. }
  1772. ],
  1773. "_prefab": null,
  1774. "_lpos": {
  1775. "__type__": "cc.Vec3",
  1776. "x": 40,
  1777. "y": 0,
  1778. "z": 0
  1779. },
  1780. "_lrot": {
  1781. "__type__": "cc.Quat",
  1782. "x": 0,
  1783. "y": 0,
  1784. "z": 0,
  1785. "w": 1
  1786. },
  1787. "_lscale": {
  1788. "__type__": "cc.Vec3",
  1789. "x": 1,
  1790. "y": 1,
  1791. "z": 1
  1792. },
  1793. "_layer": 33554432,
  1794. "_euler": {
  1795. "__type__": "cc.Vec3",
  1796. "x": 0,
  1797. "y": 0,
  1798. "z": 0
  1799. },
  1800. "_id": "b1898pEJFBbIJvlcwx2tuu"
  1801. },
  1802. {
  1803. "__type__": "cc.UITransform",
  1804. "_name": "",
  1805. "_objFlags": 0,
  1806. "node": {
  1807. "__id__": 48
  1808. },
  1809. "_enabled": true,
  1810. "__prefab": null,
  1811. "_priority": 0,
  1812. "_contentSize": {
  1813. "__type__": "cc.Size",
  1814. "width": 24,
  1815. "height": 36
  1816. },
  1817. "_anchorPoint": {
  1818. "__type__": "cc.Vec2",
  1819. "x": 0.5,
  1820. "y": 0.5
  1821. },
  1822. "_id": "89deb6m/NGoYc9aisWlGa2"
  1823. },
  1824. {
  1825. "__type__": "cc.Sprite",
  1826. "_name": "",
  1827. "_objFlags": 0,
  1828. "node": {
  1829. "__id__": 48
  1830. },
  1831. "_enabled": true,
  1832. "__prefab": null,
  1833. "_visFlags": 0,
  1834. "_customMaterial": null,
  1835. "_srcBlendFactor": 2,
  1836. "_dstBlendFactor": 4,
  1837. "_color": {
  1838. "__type__": "cc.Color",
  1839. "r": 255,
  1840. "g": 255,
  1841. "b": 255,
  1842. "a": 255
  1843. },
  1844. "_spriteFrame": {
  1845. "__uuid__": "020a5397-2711-40fb-b22f-1abc522c9284@f9941"
  1846. },
  1847. "_type": 0,
  1848. "_fillType": 0,
  1849. "_sizeMode": 1,
  1850. "_fillCenter": {
  1851. "__type__": "cc.Vec2",
  1852. "x": 0,
  1853. "y": 0
  1854. },
  1855. "_fillStart": 0,
  1856. "_fillRange": 0,
  1857. "_isTrimmedMode": true,
  1858. "_useGrayscale": false,
  1859. "_atlas": null,
  1860. "_id": "caBVMgtNdJAbeZ/q+0KDPh"
  1861. },
  1862. {
  1863. "__type__": "cc.Node",
  1864. "_name": "a",
  1865. "_objFlags": 0,
  1866. "_parent": {
  1867. "__id__": 32
  1868. },
  1869. "_children": [],
  1870. "_active": true,
  1871. "_components": [
  1872. {
  1873. "__id__": 52
  1874. },
  1875. {
  1876. "__id__": 53
  1877. }
  1878. ],
  1879. "_prefab": null,
  1880. "_lpos": {
  1881. "__type__": "cc.Vec3",
  1882. "x": 59,
  1883. "y": 0,
  1884. "z": 0
  1885. },
  1886. "_lrot": {
  1887. "__type__": "cc.Quat",
  1888. "x": 0,
  1889. "y": 0,
  1890. "z": 0,
  1891. "w": 1
  1892. },
  1893. "_lscale": {
  1894. "__type__": "cc.Vec3",
  1895. "x": 1,
  1896. "y": 1,
  1897. "z": 1
  1898. },
  1899. "_layer": 33554432,
  1900. "_euler": {
  1901. "__type__": "cc.Vec3",
  1902. "x": 0,
  1903. "y": 0,
  1904. "z": 0
  1905. },
  1906. "_id": "dc1fd5Gw5DJZ9To2OAPyKp"
  1907. },
  1908. {
  1909. "__type__": "cc.UITransform",
  1910. "_name": "",
  1911. "_objFlags": 0,
  1912. "node": {
  1913. "__id__": 51
  1914. },
  1915. "_enabled": true,
  1916. "__prefab": null,
  1917. "_priority": 0,
  1918. "_contentSize": {
  1919. "__type__": "cc.Size",
  1920. "width": 24,
  1921. "height": 29
  1922. },
  1923. "_anchorPoint": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0.5,
  1926. "y": 0.5
  1927. },
  1928. "_id": "d0mn8KPZBDK4pvoHXRp3cv"
  1929. },
  1930. {
  1931. "__type__": "cc.Sprite",
  1932. "_name": "",
  1933. "_objFlags": 0,
  1934. "node": {
  1935. "__id__": 51
  1936. },
  1937. "_enabled": true,
  1938. "__prefab": null,
  1939. "_visFlags": 0,
  1940. "_customMaterial": null,
  1941. "_srcBlendFactor": 2,
  1942. "_dstBlendFactor": 4,
  1943. "_color": {
  1944. "__type__": "cc.Color",
  1945. "r": 255,
  1946. "g": 255,
  1947. "b": 255,
  1948. "a": 255
  1949. },
  1950. "_spriteFrame": {
  1951. "__uuid__": "d251c826-d49b-4e9c-b135-8a7333037890@f9941"
  1952. },
  1953. "_type": 0,
  1954. "_fillType": 0,
  1955. "_sizeMode": 1,
  1956. "_fillCenter": {
  1957. "__type__": "cc.Vec2",
  1958. "x": 0,
  1959. "y": 0
  1960. },
  1961. "_fillStart": 0,
  1962. "_fillRange": 0,
  1963. "_isTrimmedMode": true,
  1964. "_useGrayscale": false,
  1965. "_atlas": null,
  1966. "_id": "0dmATZHkFBfJaDdkJnUaQg"
  1967. },
  1968. {
  1969. "__type__": "cc.UITransform",
  1970. "_name": "",
  1971. "_objFlags": 0,
  1972. "node": {
  1973. "__id__": 32
  1974. },
  1975. "_enabled": true,
  1976. "__prefab": null,
  1977. "_priority": 0,
  1978. "_contentSize": {
  1979. "__type__": "cc.Size",
  1980. "width": 142,
  1981. "height": 40
  1982. },
  1983. "_anchorPoint": {
  1984. "__type__": "cc.Vec2",
  1985. "x": 0.5,
  1986. "y": 0.5
  1987. },
  1988. "_id": "32XCOaBsdHC7IBNly/VkcY"
  1989. },
  1990. {
  1991. "__type__": "0399a2QOElBv7Vrq+PQeKPi",
  1992. "_name": "",
  1993. "_objFlags": 0,
  1994. "node": {
  1995. "__id__": 32
  1996. },
  1997. "_enabled": true,
  1998. "__prefab": null,
  1999. "dataList": [
  2000. {
  2001. "__id__": 56
  2002. },
  2003. {
  2004. "__id__": 57
  2005. },
  2006. {
  2007. "__id__": 58
  2008. },
  2009. {
  2010. "__id__": 59
  2011. },
  2012. {
  2013. "__id__": 60
  2014. },
  2015. {
  2016. "__id__": 61
  2017. },
  2018. {
  2019. "__id__": 62
  2020. },
  2021. {
  2022. "__id__": 63
  2023. },
  2024. {
  2025. "__id__": 64
  2026. },
  2027. {
  2028. "__id__": 65
  2029. },
  2030. {
  2031. "__id__": 66
  2032. },
  2033. {
  2034. "__id__": 67
  2035. },
  2036. {
  2037. "__id__": 68
  2038. },
  2039. {
  2040. "__id__": 69
  2041. },
  2042. {
  2043. "__id__": 70
  2044. },
  2045. {
  2046. "__id__": 71
  2047. },
  2048. {
  2049. "__id__": 72
  2050. },
  2051. {
  2052. "__id__": 73
  2053. },
  2054. {
  2055. "__id__": 74
  2056. },
  2057. {
  2058. "__id__": 75
  2059. },
  2060. {
  2061. "__id__": 76
  2062. },
  2063. {
  2064. "__id__": 77
  2065. },
  2066. {
  2067. "__id__": 78
  2068. },
  2069. {
  2070. "__id__": 79
  2071. },
  2072. {
  2073. "__id__": 80
  2074. },
  2075. {
  2076. "__id__": 81
  2077. },
  2078. {
  2079. "__id__": 82
  2080. },
  2081. {
  2082. "__id__": 83
  2083. },
  2084. {
  2085. "__id__": 84
  2086. },
  2087. {
  2088. "__id__": 85
  2089. },
  2090. {
  2091. "__id__": 86
  2092. },
  2093. {
  2094. "__id__": 87
  2095. },
  2096. {
  2097. "__id__": 88
  2098. },
  2099. {
  2100. "__id__": 89
  2101. },
  2102. {
  2103. "__id__": 90
  2104. },
  2105. {
  2106. "__id__": 91
  2107. },
  2108. {
  2109. "__id__": 92
  2110. },
  2111. {
  2112. "__id__": 93
  2113. },
  2114. {
  2115. "__id__": 94
  2116. },
  2117. {
  2118. "__id__": 95
  2119. },
  2120. {
  2121. "__id__": 96
  2122. }
  2123. ],
  2124. "_string": "172.68K",
  2125. "_id": "caWm/4LwJCCZKN0JmvtPQ0"
  2126. },
  2127. {
  2128. "__type__": "BitmapFontData",
  2129. "chair": "0",
  2130. "spriteFrame": {
  2131. "__uuid__": "f0a8257d-cbae-404f-989d-7a6858159b68@f9941"
  2132. }
  2133. },
  2134. {
  2135. "__type__": "BitmapFontData",
  2136. "chair": "1",
  2137. "spriteFrame": {
  2138. "__uuid__": "87f04f4b-5067-40f3-b6d5-e234a2e54485@f9941"
  2139. }
  2140. },
  2141. {
  2142. "__type__": "BitmapFontData",
  2143. "chair": "2",
  2144. "spriteFrame": {
  2145. "__uuid__": "e9c2b431-e6a5-4cd3-8ea3-a07df8888771@f9941"
  2146. }
  2147. },
  2148. {
  2149. "__type__": "BitmapFontData",
  2150. "chair": "3",
  2151. "spriteFrame": {
  2152. "__uuid__": "ff66fded-e758-448b-a36d-490f13cfe0bd@f9941"
  2153. }
  2154. },
  2155. {
  2156. "__type__": "BitmapFontData",
  2157. "chair": "4",
  2158. "spriteFrame": {
  2159. "__uuid__": "e9c2d8a4-2361-4ba3-a62b-abb8717f2aa5@f9941"
  2160. }
  2161. },
  2162. {
  2163. "__type__": "BitmapFontData",
  2164. "chair": "5",
  2165. "spriteFrame": {
  2166. "__uuid__": "ca6bf3cd-9688-44ed-b25b-e2f76b81d05b@f9941"
  2167. }
  2168. },
  2169. {
  2170. "__type__": "BitmapFontData",
  2171. "chair": "6",
  2172. "spriteFrame": {
  2173. "__uuid__": "00696600-b3b0-4b93-b59d-7c329a37c983@f9941"
  2174. }
  2175. },
  2176. {
  2177. "__type__": "BitmapFontData",
  2178. "chair": "7",
  2179. "spriteFrame": {
  2180. "__uuid__": "d968b07a-8a63-4df2-a28f-a832dbb3cd03@f9941"
  2181. }
  2182. },
  2183. {
  2184. "__type__": "BitmapFontData",
  2185. "chair": "8",
  2186. "spriteFrame": {
  2187. "__uuid__": "020a5397-2711-40fb-b22f-1abc522c9284@f9941"
  2188. }
  2189. },
  2190. {
  2191. "__type__": "BitmapFontData",
  2192. "chair": "9",
  2193. "spriteFrame": {
  2194. "__uuid__": "e97e9129-3e68-43e2-8688-f361a0b6e9a5@f9941"
  2195. }
  2196. },
  2197. {
  2198. "__type__": "BitmapFontData",
  2199. "chair": ".",
  2200. "spriteFrame": {
  2201. "__uuid__": "3ee9dd63-8bc1-416a-82f6-a9e60a262ec4@f9941"
  2202. }
  2203. },
  2204. {
  2205. "__type__": "BitmapFontData",
  2206. "chair": "a",
  2207. "spriteFrame": {
  2208. "__uuid__": "b716aab4-3c0f-4a9e-96d8-adaab294de37@f9941"
  2209. }
  2210. },
  2211. {
  2212. "__type__": "BitmapFontData",
  2213. "chair": "b",
  2214. "spriteFrame": {
  2215. "__uuid__": "8fbcf002-2eed-4b30-86b0-8a4eadb52337@f9941"
  2216. }
  2217. },
  2218. {
  2219. "__type__": "BitmapFontData",
  2220. "chair": "c",
  2221. "spriteFrame": {
  2222. "__uuid__": "4579b31a-5e4f-4bd7-af88-bdcd0e659d00@f9941"
  2223. }
  2224. },
  2225. {
  2226. "__type__": "BitmapFontData",
  2227. "chair": "d",
  2228. "spriteFrame": {
  2229. "__uuid__": "6e120e5c-abae-443b-ba24-d0551366ac64@f9941"
  2230. }
  2231. },
  2232. {
  2233. "__type__": "BitmapFontData",
  2234. "chair": "e",
  2235. "spriteFrame": {
  2236. "__uuid__": "12b46670-c537-45d1-bcc6-574d20c92223@f9941"
  2237. }
  2238. },
  2239. {
  2240. "__type__": "BitmapFontData",
  2241. "chair": "f",
  2242. "spriteFrame": {
  2243. "__uuid__": "08106a64-eb90-407e-a8d0-902718acd9bf@f9941"
  2244. }
  2245. },
  2246. {
  2247. "__type__": "BitmapFontData",
  2248. "chair": "g",
  2249. "spriteFrame": {
  2250. "__uuid__": "38d923c8-26b3-4224-a923-04e1f1ac13a7@f9941"
  2251. }
  2252. },
  2253. {
  2254. "__type__": "BitmapFontData",
  2255. "chair": "h",
  2256. "spriteFrame": {
  2257. "__uuid__": "9c7357d8-a2d4-4f3d-9749-90efe9bfc45d@f9941"
  2258. }
  2259. },
  2260. {
  2261. "__type__": "BitmapFontData",
  2262. "chair": "i",
  2263. "spriteFrame": {
  2264. "__uuid__": "d15be225-6c8b-4dd2-9ea7-384a3f94d881@f9941"
  2265. }
  2266. },
  2267. {
  2268. "__type__": "BitmapFontData",
  2269. "chair": "j",
  2270. "spriteFrame": {
  2271. "__uuid__": "2013a12d-1cdb-4020-a535-0e43a58e74ea@f9941"
  2272. }
  2273. },
  2274. {
  2275. "__type__": "BitmapFontData",
  2276. "chair": "k",
  2277. "spriteFrame": {
  2278. "__uuid__": "3afa9b2f-51b8-4514-ade1-77a65cf299eb@f9941"
  2279. }
  2280. },
  2281. {
  2282. "__type__": "BitmapFontData",
  2283. "chair": "l",
  2284. "spriteFrame": {
  2285. "__uuid__": "63e6b195-d481-442a-a8fb-b2f61b3b0036@f9941"
  2286. }
  2287. },
  2288. {
  2289. "__type__": "BitmapFontData",
  2290. "chair": "m",
  2291. "spriteFrame": {
  2292. "__uuid__": "288535ab-729a-4df0-a5a9-19d4493160b9@f9941"
  2293. }
  2294. },
  2295. {
  2296. "__type__": "BitmapFontData",
  2297. "chair": "n",
  2298. "spriteFrame": {
  2299. "__uuid__": "0da1a05b-ac54-4099-8363-f7774e61f608@f9941"
  2300. }
  2301. },
  2302. {
  2303. "__type__": "BitmapFontData",
  2304. "chair": "o",
  2305. "spriteFrame": {
  2306. "__uuid__": "0409cff6-38a4-4c63-b7d2-21ad6a25cfae@f9941"
  2307. }
  2308. },
  2309. {
  2310. "__type__": "BitmapFontData",
  2311. "chair": "p",
  2312. "spriteFrame": {
  2313. "__uuid__": "5c2e8ae7-ec36-417c-baf2-398a58550a94@f9941"
  2314. }
  2315. },
  2316. {
  2317. "__type__": "BitmapFontData",
  2318. "chair": "q",
  2319. "spriteFrame": {
  2320. "__uuid__": "da51980e-992f-4fde-943b-f7462b4c3a67@f9941"
  2321. }
  2322. },
  2323. {
  2324. "__type__": "BitmapFontData",
  2325. "chair": "r",
  2326. "spriteFrame": {
  2327. "__uuid__": "a426e159-1b43-40f1-8950-ef4892233625@f9941"
  2328. }
  2329. },
  2330. {
  2331. "__type__": "BitmapFontData",
  2332. "chair": "s",
  2333. "spriteFrame": {
  2334. "__uuid__": "9a2d56ff-0cea-439f-8cdb-6117aa26ff5b@f9941"
  2335. }
  2336. },
  2337. {
  2338. "__type__": "BitmapFontData",
  2339. "chair": "t",
  2340. "spriteFrame": {
  2341. "__uuid__": "c96b9f16-5b42-405a-98fd-00dc2a4f0a0b@f9941"
  2342. }
  2343. },
  2344. {
  2345. "__type__": "BitmapFontData",
  2346. "chair": "u",
  2347. "spriteFrame": {
  2348. "__uuid__": "b54af17d-dcab-411b-bbb0-65c0f8a461c6@f9941"
  2349. }
  2350. },
  2351. {
  2352. "__type__": "BitmapFontData",
  2353. "chair": "v",
  2354. "spriteFrame": {
  2355. "__uuid__": "cf65f928-1600-44a1-a3be-73e0308ef30d@f9941"
  2356. }
  2357. },
  2358. {
  2359. "__type__": "BitmapFontData",
  2360. "chair": "w",
  2361. "spriteFrame": {
  2362. "__uuid__": "b8543383-e1e0-4536-b39c-1d2fe56c2967@f9941"
  2363. }
  2364. },
  2365. {
  2366. "__type__": "BitmapFontData",
  2367. "chair": "x",
  2368. "spriteFrame": {
  2369. "__uuid__": "da2914d1-40eb-414b-bcb9-11ca6422f72e@f9941"
  2370. }
  2371. },
  2372. {
  2373. "__type__": "BitmapFontData",
  2374. "chair": "y",
  2375. "spriteFrame": {
  2376. "__uuid__": "ff9145ec-f066-4ab4-879c-e0fb805cf9e0@f9941"
  2377. }
  2378. },
  2379. {
  2380. "__type__": "BitmapFontData",
  2381. "chair": "z",
  2382. "spriteFrame": {
  2383. "__uuid__": "e39f382e-a1ed-4728-b871-fe04fe33d452@f9941"
  2384. }
  2385. },
  2386. {
  2387. "__type__": "BitmapFontData",
  2388. "chair": "K",
  2389. "spriteFrame": {
  2390. "__uuid__": "d251c826-d49b-4e9c-b135-8a7333037890@f9941"
  2391. }
  2392. },
  2393. {
  2394. "__type__": "BitmapFontData",
  2395. "chair": "T",
  2396. "spriteFrame": {
  2397. "__uuid__": "b0d30cea-59aa-4d45-8b42-862f98674664@f9941"
  2398. }
  2399. },
  2400. {
  2401. "__type__": "BitmapFontData",
  2402. "chair": "B",
  2403. "spriteFrame": {
  2404. "__uuid__": "233d2246-8aca-4c3b-8a0d-5ce498129796@f9941"
  2405. }
  2406. },
  2407. {
  2408. "__type__": "BitmapFontData",
  2409. "chair": "M",
  2410. "spriteFrame": {
  2411. "__uuid__": "5e37c69c-95c2-41d9-9c80-be34e471facf@f9941"
  2412. }
  2413. },
  2414. {
  2415. "__type__": "cc.Layout",
  2416. "_name": "",
  2417. "_objFlags": 0,
  2418. "node": {
  2419. "__id__": 32
  2420. },
  2421. "_enabled": true,
  2422. "__prefab": null,
  2423. "_resizeMode": 1,
  2424. "_layoutType": 1,
  2425. "_cellSize": {
  2426. "__type__": "cc.Size",
  2427. "width": 40,
  2428. "height": 40
  2429. },
  2430. "_startAxis": 0,
  2431. "_paddingLeft": 0,
  2432. "_paddingRight": 0,
  2433. "_paddingTop": 0,
  2434. "_paddingBottom": 0,
  2435. "_spacingX": -5,
  2436. "_spacingY": 0,
  2437. "_verticalDirection": 1,
  2438. "_horizontalDirection": 0,
  2439. "_constraint": 0,
  2440. "_constraintNum": 2,
  2441. "_affectedByScale": false,
  2442. "_isAlign": true,
  2443. "_id": "ca6E3lHVZEl6ucqYFZWBgk"
  2444. },
  2445. {
  2446. "__type__": "cc.UITransform",
  2447. "_name": "",
  2448. "_objFlags": 0,
  2449. "node": {
  2450. "__id__": 25
  2451. },
  2452. "_enabled": true,
  2453. "__prefab": null,
  2454. "_priority": 0,
  2455. "_contentSize": {
  2456. "__type__": "cc.Size",
  2457. "width": 230,
  2458. "height": 40
  2459. },
  2460. "_anchorPoint": {
  2461. "__type__": "cc.Vec2",
  2462. "x": 0.5,
  2463. "y": 0.5
  2464. },
  2465. "_id": "67DLxEUhhCELzMQ8wRoKTi"
  2466. },
  2467. {
  2468. "__type__": "cc.Node",
  2469. "_name": "等级信息",
  2470. "_objFlags": 0,
  2471. "_parent": {
  2472. "__id__": 24
  2473. },
  2474. "_children": [],
  2475. "_active": true,
  2476. "_components": [
  2477. {
  2478. "__id__": 100
  2479. },
  2480. {
  2481. "__id__": 101
  2482. },
  2483. {
  2484. "__id__": 102
  2485. }
  2486. ],
  2487. "_prefab": null,
  2488. "_lpos": {
  2489. "__type__": "cc.Vec3",
  2490. "x": 0,
  2491. "y": -25,
  2492. "z": 0
  2493. },
  2494. "_lrot": {
  2495. "__type__": "cc.Quat",
  2496. "x": 0,
  2497. "y": 0,
  2498. "z": 0,
  2499. "w": 1
  2500. },
  2501. "_lscale": {
  2502. "__type__": "cc.Vec3",
  2503. "x": 1,
  2504. "y": 1,
  2505. "z": 1
  2506. },
  2507. "_layer": 33554432,
  2508. "_euler": {
  2509. "__type__": "cc.Vec3",
  2510. "x": 0,
  2511. "y": 0,
  2512. "z": 0
  2513. },
  2514. "_id": "93S2LcxTdCrZj6sQV3eC9Y"
  2515. },
  2516. {
  2517. "__type__": "cc.UITransform",
  2518. "_name": "",
  2519. "_objFlags": 0,
  2520. "node": {
  2521. "__id__": 99
  2522. },
  2523. "_enabled": true,
  2524. "__prefab": null,
  2525. "_priority": 0,
  2526. "_contentSize": {
  2527. "__type__": "cc.Size",
  2528. "width": 330,
  2529. "height": 47.36
  2530. },
  2531. "_anchorPoint": {
  2532. "__type__": "cc.Vec2",
  2533. "x": 0.5,
  2534. "y": 0.5
  2535. },
  2536. "_id": "6b3v2Y6o9Gl7Cly/pFKYsz"
  2537. },
  2538. {
  2539. "__type__": "cc.Label",
  2540. "_name": "",
  2541. "_objFlags": 0,
  2542. "node": {
  2543. "__id__": 99
  2544. },
  2545. "_enabled": true,
  2546. "__prefab": null,
  2547. "_visFlags": 0,
  2548. "_customMaterial": null,
  2549. "_srcBlendFactor": 2,
  2550. "_dstBlendFactor": 4,
  2551. "_color": {
  2552. "__type__": "cc.Color",
  2553. "r": 172,
  2554. "g": 27,
  2555. "b": 22,
  2556. "a": 255
  2557. },
  2558. "_string": "Lv.33文殊广法天尊",
  2559. "_horizontalAlign": 1,
  2560. "_verticalAlign": 1,
  2561. "_actualFontSize": 36,
  2562. "_fontSize": 36,
  2563. "_fontFamily": "Arial",
  2564. "_lineHeight": 36,
  2565. "_overflow": 3,
  2566. "_enableWrapText": true,
  2567. "_font": null,
  2568. "_isSystemFontUsed": true,
  2569. "_isItalic": false,
  2570. "_isBold": true,
  2571. "_isUnderline": false,
  2572. "_underlineHeight": 2,
  2573. "_cacheMode": 0,
  2574. "_id": "cchd8cKytOMolEKOq0Gucm"
  2575. },
  2576. {
  2577. "__type__": "cc.LabelOutline",
  2578. "_name": "",
  2579. "_objFlags": 0,
  2580. "node": {
  2581. "__id__": 99
  2582. },
  2583. "_enabled": true,
  2584. "__prefab": null,
  2585. "_color": {
  2586. "__type__": "cc.Color",
  2587. "r": 254,
  2588. "g": 235,
  2589. "b": 200,
  2590. "a": 255
  2591. },
  2592. "_width": 1,
  2593. "_id": "0c7p2BGZBBQb9PgmGQRfVs"
  2594. },
  2595. {
  2596. "__type__": "cc.UITransform",
  2597. "_name": "",
  2598. "_objFlags": 0,
  2599. "node": {
  2600. "__id__": 24
  2601. },
  2602. "_enabled": true,
  2603. "__prefab": null,
  2604. "_priority": 0,
  2605. "_contentSize": {
  2606. "__type__": "cc.Size",
  2607. "width": 330,
  2608. "height": 97.36
  2609. },
  2610. "_anchorPoint": {
  2611. "__type__": "cc.Vec2",
  2612. "x": 0.5,
  2613. "y": 0.5
  2614. },
  2615. "_id": "4cpJlFc31D25/RwhSMl+Fx"
  2616. },
  2617. {
  2618. "__type__": "cc.Widget",
  2619. "_name": "",
  2620. "_objFlags": 0,
  2621. "node": {
  2622. "__id__": 24
  2623. },
  2624. "_enabled": true,
  2625. "__prefab": null,
  2626. "_alignFlags": 18,
  2627. "_target": null,
  2628. "_left": 0,
  2629. "_right": 0,
  2630. "_top": 18.75,
  2631. "_bottom": 0,
  2632. "_horizontalCenter": 0,
  2633. "_verticalCenter": 0,
  2634. "_isAbsLeft": true,
  2635. "_isAbsRight": true,
  2636. "_isAbsTop": true,
  2637. "_isAbsBottom": true,
  2638. "_isAbsHorizontalCenter": true,
  2639. "_isAbsVerticalCenter": true,
  2640. "_originalWidth": 0,
  2641. "_originalHeight": 0,
  2642. "_alignMode": 2,
  2643. "_lockFlags": 0,
  2644. "_id": "83szAR/qxACa8RCXBJ7Oly"
  2645. },
  2646. {
  2647. "__type__": "cc.Layout",
  2648. "_name": "",
  2649. "_objFlags": 0,
  2650. "node": {
  2651. "__id__": 24
  2652. },
  2653. "_enabled": true,
  2654. "__prefab": null,
  2655. "_resizeMode": 1,
  2656. "_layoutType": 2,
  2657. "_cellSize": {
  2658. "__type__": "cc.Size",
  2659. "width": 40,
  2660. "height": 40
  2661. },
  2662. "_startAxis": 0,
  2663. "_paddingLeft": 0,
  2664. "_paddingRight": 0,
  2665. "_paddingTop": 0,
  2666. "_paddingBottom": 0,
  2667. "_spacingX": 0,
  2668. "_spacingY": 10,
  2669. "_verticalDirection": 1,
  2670. "_horizontalDirection": 0,
  2671. "_constraint": 0,
  2672. "_constraintNum": 2,
  2673. "_affectedByScale": false,
  2674. "_isAlign": true,
  2675. "_id": "c8DDeA6d1GQ4qfETiO4X9t"
  2676. },
  2677. {
  2678. "__type__": "cc.UITransform",
  2679. "_name": "",
  2680. "_objFlags": 0,
  2681. "node": {
  2682. "__id__": 17
  2683. },
  2684. "_enabled": true,
  2685. "__prefab": null,
  2686. "_priority": 0,
  2687. "_contentSize": {
  2688. "__type__": "cc.Size",
  2689. "width": 391,
  2690. "height": 152
  2691. },
  2692. "_anchorPoint": {
  2693. "__type__": "cc.Vec2",
  2694. "x": 0.5,
  2695. "y": 0.5
  2696. },
  2697. "_id": "8bqNtWK79LFpPDQB8IFejf"
  2698. },
  2699. {
  2700. "__type__": "cc.Button",
  2701. "_name": "",
  2702. "_objFlags": 0,
  2703. "node": {
  2704. "__id__": 17
  2705. },
  2706. "_enabled": true,
  2707. "__prefab": null,
  2708. "clickEvents": [
  2709. {
  2710. "__id__": 108
  2711. }
  2712. ],
  2713. "_interactable": true,
  2714. "_transition": 3,
  2715. "_normalColor": {
  2716. "__type__": "cc.Color",
  2717. "r": 255,
  2718. "g": 255,
  2719. "b": 255,
  2720. "a": 255
  2721. },
  2722. "_hoverColor": {
  2723. "__type__": "cc.Color",
  2724. "r": 211,
  2725. "g": 211,
  2726. "b": 211,
  2727. "a": 255
  2728. },
  2729. "_pressedColor": {
  2730. "__type__": "cc.Color",
  2731. "r": 255,
  2732. "g": 255,
  2733. "b": 255,
  2734. "a": 255
  2735. },
  2736. "_disabledColor": {
  2737. "__type__": "cc.Color",
  2738. "r": 124,
  2739. "g": 124,
  2740. "b": 124,
  2741. "a": 255
  2742. },
  2743. "_normalSprite": {
  2744. "__uuid__": "a392fffb-2dab-4182-a579-db9d47f50f8e@f9941"
  2745. },
  2746. "_hoverSprite": null,
  2747. "_pressedSprite": null,
  2748. "_disabledSprite": null,
  2749. "_duration": 0.1,
  2750. "_zoomScale": 1.1,
  2751. "_target": null,
  2752. "_id": "ebVlG0+K5GkY0nBYGhl006"
  2753. },
  2754. {
  2755. "__type__": "cc.ClickEvent",
  2756. "target": {
  2757. "__id__": 109
  2758. },
  2759. "component": "",
  2760. "_componentId": "743afyRlb5BuYh9IVScJnCr",
  2761. "handler": "onBuyRole",
  2762. "customEventData": ""
  2763. },
  2764. {
  2765. "__type__": "cc.Node",
  2766. "_name": "界面控制器",
  2767. "_objFlags": 0,
  2768. "_parent": {
  2769. "__id__": 1
  2770. },
  2771. "_children": [],
  2772. "_active": true,
  2773. "_components": [
  2774. {
  2775. "__id__": 110
  2776. },
  2777. {
  2778. "__id__": 111
  2779. }
  2780. ],
  2781. "_prefab": null,
  2782. "_lpos": {
  2783. "__type__": "cc.Vec3",
  2784. "x": 0,
  2785. "y": 0,
  2786. "z": 0
  2787. },
  2788. "_lrot": {
  2789. "__type__": "cc.Quat",
  2790. "x": 0,
  2791. "y": 0,
  2792. "z": 0,
  2793. "w": 1
  2794. },
  2795. "_lscale": {
  2796. "__type__": "cc.Vec3",
  2797. "x": 1,
  2798. "y": 1,
  2799. "z": 1
  2800. },
  2801. "_layer": 1073741824,
  2802. "_euler": {
  2803. "__type__": "cc.Vec3",
  2804. "x": 0,
  2805. "y": 0,
  2806. "z": 0
  2807. },
  2808. "_id": "ccmlW1V91AX7u1XBL7JsPg"
  2809. },
  2810. {
  2811. "__type__": "cc.UITransform",
  2812. "_name": "",
  2813. "_objFlags": 0,
  2814. "node": {
  2815. "__id__": 109
  2816. },
  2817. "_enabled": true,
  2818. "__prefab": null,
  2819. "_priority": 0,
  2820. "_contentSize": {
  2821. "__type__": "cc.Size",
  2822. "width": 0,
  2823. "height": 0
  2824. },
  2825. "_anchorPoint": {
  2826. "__type__": "cc.Vec2",
  2827. "x": 0.5,
  2828. "y": 0.5
  2829. },
  2830. "_id": "cbcZfNRKNEzIqdzICwMxXR"
  2831. },
  2832. {
  2833. "__type__": "743afyRlb5BuYh9IVScJnCr",
  2834. "_name": "",
  2835. "_objFlags": 0,
  2836. "node": {
  2837. "__id__": 109
  2838. },
  2839. "_enabled": true,
  2840. "__prefab": null,
  2841. "bonusDayBitmapFont": null,
  2842. "moneyLabel": null,
  2843. "gelenalOutPutLabel": null,
  2844. "diamondLabel": null,
  2845. "cashLabel": null,
  2846. "sellButton": {
  2847. "__id__": 112
  2848. },
  2849. "buyButton": {
  2850. "__id__": 17
  2851. },
  2852. "buyLvLabel": {
  2853. "__id__": 101
  2854. },
  2855. "buyPriceBitmapFont": {
  2856. "__id__": 55
  2857. },
  2858. "shenTaiLvLabel": null,
  2859. "battleLvLabel": null,
  2860. "lvRedPacketMemoLabel": null,
  2861. "shenTaiRedPointNode": {
  2862. "__id__": 133
  2863. },
  2864. "qieCuoRedPointNode": {
  2865. "__id__": 629
  2866. },
  2867. "qianHongBaoRedPointNode": {
  2868. "__id__": 637
  2869. },
  2870. "buyHander": {
  2871. "__id__": 643
  2872. },
  2873. "attackLossHander": {
  2874. "__id__": 644
  2875. },
  2876. "http": {
  2877. "__id__": 547
  2878. },
  2879. "lvRedRedPacket": null,
  2880. "lvRedRedPacketBtn": null,
  2881. "eachBtnNode": null,
  2882. "_id": "17o5SMoJFIgb9EG9D0jI3I"
  2883. },
  2884. {
  2885. "__type__": "cc.Node",
  2886. "_name": "出售",
  2887. "_objFlags": 0,
  2888. "_parent": {
  2889. "__id__": 16
  2890. },
  2891. "_children": [
  2892. {
  2893. "__id__": 113
  2894. },
  2895. {
  2896. "__id__": 123
  2897. },
  2898. {
  2899. "__id__": 126
  2900. }
  2901. ],
  2902. "_active": false,
  2903. "_components": [
  2904. {
  2905. "__id__": 129
  2906. },
  2907. {
  2908. "__id__": 130
  2909. },
  2910. {
  2911. "__id__": 131
  2912. },
  2913. {
  2914. "__id__": 132
  2915. }
  2916. ],
  2917. "_prefab": null,
  2918. "_lpos": {
  2919. "__type__": "cc.Vec3",
  2920. "x": 0,
  2921. "y": 0,
  2922. "z": 0
  2923. },
  2924. "_lrot": {
  2925. "__type__": "cc.Quat",
  2926. "x": 0,
  2927. "y": 0,
  2928. "z": 0,
  2929. "w": 1
  2930. },
  2931. "_lscale": {
  2932. "__type__": "cc.Vec3",
  2933. "x": 1,
  2934. "y": 1,
  2935. "z": 1
  2936. },
  2937. "_layer": 33554432,
  2938. "_euler": {
  2939. "__type__": "cc.Vec3",
  2940. "x": 0,
  2941. "y": 0,
  2942. "z": 0
  2943. },
  2944. "_id": "e1/0H4Y51Mm7n9C4AJE7vA"
  2945. },
  2946. {
  2947. "__type__": "cc.Node",
  2948. "_name": "出售预览",
  2949. "_objFlags": 0,
  2950. "_parent": {
  2951. "__id__": 112
  2952. },
  2953. "_children": [
  2954. {
  2955. "__id__": 114
  2956. },
  2957. {
  2958. "__id__": 117
  2959. }
  2960. ],
  2961. "_active": true,
  2962. "_components": [
  2963. {
  2964. "__id__": 120
  2965. },
  2966. {
  2967. "__id__": 121
  2968. },
  2969. {
  2970. "__id__": 122
  2971. }
  2972. ],
  2973. "_prefab": null,
  2974. "_lpos": {
  2975. "__type__": "cc.Vec3",
  2976. "x": 0,
  2977. "y": 0,
  2978. "z": 0
  2979. },
  2980. "_lrot": {
  2981. "__type__": "cc.Quat",
  2982. "x": 0,
  2983. "y": 0,
  2984. "z": 0,
  2985. "w": 1
  2986. },
  2987. "_lscale": {
  2988. "__type__": "cc.Vec3",
  2989. "x": 1,
  2990. "y": 1,
  2991. "z": 1
  2992. },
  2993. "_layer": 33554432,
  2994. "_euler": {
  2995. "__type__": "cc.Vec3",
  2996. "x": 0,
  2997. "y": 0,
  2998. "z": 0
  2999. },
  3000. "_id": "7da/s2/RNN7b9ydebZgOZM"
  3001. },
  3002. {
  3003. "__type__": "cc.Node",
  3004. "_name": "回收图标",
  3005. "_objFlags": 0,
  3006. "_parent": {
  3007. "__id__": 113
  3008. },
  3009. "_children": [],
  3010. "_active": true,
  3011. "_components": [
  3012. {
  3013. "__id__": 115
  3014. },
  3015. {
  3016. "__id__": 116
  3017. }
  3018. ],
  3019. "_prefab": null,
  3020. "_lpos": {
  3021. "__type__": "cc.Vec3",
  3022. "x": 0,
  3023. "y": 19,
  3024. "z": 0
  3025. },
  3026. "_lrot": {
  3027. "__type__": "cc.Quat",
  3028. "x": 0,
  3029. "y": 0,
  3030. "z": 0,
  3031. "w": 1
  3032. },
  3033. "_lscale": {
  3034. "__type__": "cc.Vec3",
  3035. "x": 1,
  3036. "y": 1,
  3037. "z": 1
  3038. },
  3039. "_layer": 33554432,
  3040. "_euler": {
  3041. "__type__": "cc.Vec3",
  3042. "x": 0,
  3043. "y": 0,
  3044. "z": 0
  3045. },
  3046. "_id": "e5JsFnsgtBN4OfPoaX73un"
  3047. },
  3048. {
  3049. "__type__": "cc.UITransform",
  3050. "_name": "",
  3051. "_objFlags": 0,
  3052. "node": {
  3053. "__id__": 114
  3054. },
  3055. "_enabled": true,
  3056. "__prefab": null,
  3057. "_priority": 0,
  3058. "_contentSize": {
  3059. "__type__": "cc.Size",
  3060. "width": 49,
  3061. "height": 64
  3062. },
  3063. "_anchorPoint": {
  3064. "__type__": "cc.Vec2",
  3065. "x": 0.5,
  3066. "y": 0.5
  3067. },
  3068. "_id": "d32w+RSRJDiJfHvmgtRaN/"
  3069. },
  3070. {
  3071. "__type__": "cc.Sprite",
  3072. "_name": "",
  3073. "_objFlags": 0,
  3074. "node": {
  3075. "__id__": 114
  3076. },
  3077. "_enabled": true,
  3078. "__prefab": null,
  3079. "_visFlags": 0,
  3080. "_customMaterial": null,
  3081. "_srcBlendFactor": 2,
  3082. "_dstBlendFactor": 4,
  3083. "_color": {
  3084. "__type__": "cc.Color",
  3085. "r": 255,
  3086. "g": 255,
  3087. "b": 255,
  3088. "a": 255
  3089. },
  3090. "_spriteFrame": {
  3091. "__uuid__": "3a654554-89de-4b6b-87a1-3c4c6be0087a@f9941"
  3092. },
  3093. "_type": 0,
  3094. "_fillType": 0,
  3095. "_sizeMode": 1,
  3096. "_fillCenter": {
  3097. "__type__": "cc.Vec2",
  3098. "x": 0,
  3099. "y": 0
  3100. },
  3101. "_fillStart": 0,
  3102. "_fillRange": 0,
  3103. "_isTrimmedMode": true,
  3104. "_useGrayscale": false,
  3105. "_atlas": null,
  3106. "_id": "62qmFCMPBFkKeJyavMG+Pt"
  3107. },
  3108. {
  3109. "__type__": "cc.Node",
  3110. "_name": "回收说明",
  3111. "_objFlags": 0,
  3112. "_parent": {
  3113. "__id__": 113
  3114. },
  3115. "_children": [],
  3116. "_active": true,
  3117. "_components": [
  3118. {
  3119. "__id__": 118
  3120. },
  3121. {
  3122. "__id__": 119
  3123. }
  3124. ],
  3125. "_prefab": null,
  3126. "_lpos": {
  3127. "__type__": "cc.Vec3",
  3128. "x": 0,
  3129. "y": -34,
  3130. "z": 0
  3131. },
  3132. "_lrot": {
  3133. "__type__": "cc.Quat",
  3134. "x": 0,
  3135. "y": 0,
  3136. "z": 0,
  3137. "w": 1
  3138. },
  3139. "_lscale": {
  3140. "__type__": "cc.Vec3",
  3141. "x": 1,
  3142. "y": 1,
  3143. "z": 1
  3144. },
  3145. "_layer": 33554432,
  3146. "_euler": {
  3147. "__type__": "cc.Vec3",
  3148. "x": 0,
  3149. "y": 0,
  3150. "z": 0
  3151. },
  3152. "_id": "a9Nww5ATpKGYQmPBsnNXMx"
  3153. },
  3154. {
  3155. "__type__": "cc.UITransform",
  3156. "_name": "",
  3157. "_objFlags": 0,
  3158. "node": {
  3159. "__id__": 117
  3160. },
  3161. "_enabled": true,
  3162. "__prefab": null,
  3163. "_priority": 0,
  3164. "_contentSize": {
  3165. "__type__": "cc.Size",
  3166. "width": 216,
  3167. "height": 34
  3168. },
  3169. "_anchorPoint": {
  3170. "__type__": "cc.Vec2",
  3171. "x": 0.5,
  3172. "y": 0.5
  3173. },
  3174. "_id": "148YZiLApFoZ6pihioi0XG"
  3175. },
  3176. {
  3177. "__type__": "cc.Sprite",
  3178. "_name": "",
  3179. "_objFlags": 0,
  3180. "node": {
  3181. "__id__": 117
  3182. },
  3183. "_enabled": true,
  3184. "__prefab": null,
  3185. "_visFlags": 0,
  3186. "_customMaterial": null,
  3187. "_srcBlendFactor": 2,
  3188. "_dstBlendFactor": 4,
  3189. "_color": {
  3190. "__type__": "cc.Color",
  3191. "r": 255,
  3192. "g": 255,
  3193. "b": 255,
  3194. "a": 255
  3195. },
  3196. "_spriteFrame": {
  3197. "__uuid__": "e5d89ac3-e9d7-4324-be38-6281ffa7a769@f9941"
  3198. },
  3199. "_type": 0,
  3200. "_fillType": 0,
  3201. "_sizeMode": 1,
  3202. "_fillCenter": {
  3203. "__type__": "cc.Vec2",
  3204. "x": 0,
  3205. "y": 0
  3206. },
  3207. "_fillStart": 0,
  3208. "_fillRange": 0,
  3209. "_isTrimmedMode": true,
  3210. "_useGrayscale": false,
  3211. "_atlas": null,
  3212. "_id": "feb06kChVKtYWG2ulYGBwI"
  3213. },
  3214. {
  3215. "__type__": "cc.UITransform",
  3216. "_name": "",
  3217. "_objFlags": 0,
  3218. "node": {
  3219. "__id__": 113
  3220. },
  3221. "_enabled": true,
  3222. "__prefab": null,
  3223. "_priority": 0,
  3224. "_contentSize": {
  3225. "__type__": "cc.Size",
  3226. "width": 265,
  3227. "height": 102
  3228. },
  3229. "_anchorPoint": {
  3230. "__type__": "cc.Vec2",
  3231. "x": 0.5,
  3232. "y": 0.5
  3233. },
  3234. "_id": "c6ZpuimTpHXZOvz76TRBi1"
  3235. },
  3236. {
  3237. "__type__": "cc.Widget",
  3238. "_name": "",
  3239. "_objFlags": 0,
  3240. "node": {
  3241. "__id__": 113
  3242. },
  3243. "_enabled": true,
  3244. "__prefab": null,
  3245. "_alignFlags": 18,
  3246. "_target": null,
  3247. "_left": 0,
  3248. "_right": 0,
  3249. "_top": 18.75,
  3250. "_bottom": 0,
  3251. "_horizontalCenter": 0,
  3252. "_verticalCenter": 0,
  3253. "_isAbsLeft": true,
  3254. "_isAbsRight": true,
  3255. "_isAbsTop": true,
  3256. "_isAbsBottom": true,
  3257. "_isAbsHorizontalCenter": true,
  3258. "_isAbsVerticalCenter": true,
  3259. "_originalWidth": 0,
  3260. "_originalHeight": 0,
  3261. "_alignMode": 2,
  3262. "_lockFlags": 0,
  3263. "_id": "febeGwVwBJK5ipokHcaQ7A"
  3264. },
  3265. {
  3266. "__type__": "cc.Layout",
  3267. "_name": "",
  3268. "_objFlags": 0,
  3269. "node": {
  3270. "__id__": 113
  3271. },
  3272. "_enabled": true,
  3273. "__prefab": null,
  3274. "_resizeMode": 1,
  3275. "_layoutType": 2,
  3276. "_cellSize": {
  3277. "__type__": "cc.Size",
  3278. "width": 40,
  3279. "height": 40
  3280. },
  3281. "_startAxis": 0,
  3282. "_paddingLeft": 0,
  3283. "_paddingRight": 0,
  3284. "_paddingTop": 0,
  3285. "_paddingBottom": 0,
  3286. "_spacingX": 0,
  3287. "_spacingY": 4,
  3288. "_verticalDirection": 1,
  3289. "_horizontalDirection": 0,
  3290. "_constraint": 0,
  3291. "_constraintNum": 2,
  3292. "_affectedByScale": false,
  3293. "_isAlign": true,
  3294. "_id": "34/mymSy5MWIvBCVRE6kSU"
  3295. },
  3296. {
  3297. "__type__": "cc.Node",
  3298. "_name": "右边云",
  3299. "_objFlags": 0,
  3300. "_parent": {
  3301. "__id__": 112
  3302. },
  3303. "_children": [],
  3304. "_active": true,
  3305. "_components": [
  3306. {
  3307. "__id__": 124
  3308. },
  3309. {
  3310. "__id__": 125
  3311. }
  3312. ],
  3313. "_prefab": null,
  3314. "_lpos": {
  3315. "__type__": "cc.Vec3",
  3316. "x": 191.93000000000006,
  3317. "y": -58.333,
  3318. "z": 0
  3319. },
  3320. "_lrot": {
  3321. "__type__": "cc.Quat",
  3322. "x": 0,
  3323. "y": 0,
  3324. "z": 0,
  3325. "w": 1
  3326. },
  3327. "_lscale": {
  3328. "__type__": "cc.Vec3",
  3329. "x": 1,
  3330. "y": 1,
  3331. "z": 1
  3332. },
  3333. "_layer": 33554432,
  3334. "_euler": {
  3335. "__type__": "cc.Vec3",
  3336. "x": 0,
  3337. "y": 0,
  3338. "z": 0
  3339. },
  3340. "_id": "5aOryLzY1DIad/gkkHCEds"
  3341. },
  3342. {
  3343. "__type__": "cc.UITransform",
  3344. "_name": "",
  3345. "_objFlags": 0,
  3346. "node": {
  3347. "__id__": 123
  3348. },
  3349. "_enabled": true,
  3350. "__prefab": null,
  3351. "_priority": 0,
  3352. "_contentSize": {
  3353. "__type__": "cc.Size",
  3354. "width": 121,
  3355. "height": 49
  3356. },
  3357. "_anchorPoint": {
  3358. "__type__": "cc.Vec2",
  3359. "x": 0.5,
  3360. "y": 0.5
  3361. },
  3362. "_id": "eaxBv3NfdEkY6uvkXx4vLj"
  3363. },
  3364. {
  3365. "__type__": "cc.Sprite",
  3366. "_name": "",
  3367. "_objFlags": 0,
  3368. "node": {
  3369. "__id__": 123
  3370. },
  3371. "_enabled": true,
  3372. "__prefab": null,
  3373. "_visFlags": 0,
  3374. "_customMaterial": null,
  3375. "_srcBlendFactor": 2,
  3376. "_dstBlendFactor": 4,
  3377. "_color": {
  3378. "__type__": "cc.Color",
  3379. "r": 255,
  3380. "g": 255,
  3381. "b": 255,
  3382. "a": 255
  3383. },
  3384. "_spriteFrame": {
  3385. "__uuid__": "0fde2077-70a9-4d10-ba10-73fd7b4ad7d1@f9941"
  3386. },
  3387. "_type": 0,
  3388. "_fillType": 0,
  3389. "_sizeMode": 1,
  3390. "_fillCenter": {
  3391. "__type__": "cc.Vec2",
  3392. "x": 0,
  3393. "y": 0
  3394. },
  3395. "_fillStart": 0,
  3396. "_fillRange": 0,
  3397. "_isTrimmedMode": true,
  3398. "_useGrayscale": false,
  3399. "_atlas": null,
  3400. "_id": "e7Oz1oKy9LrL4qhUKTE3rc"
  3401. },
  3402. {
  3403. "__type__": "cc.Node",
  3404. "_name": "左边云",
  3405. "_objFlags": 0,
  3406. "_parent": {
  3407. "__id__": 112
  3408. },
  3409. "_children": [],
  3410. "_active": true,
  3411. "_components": [
  3412. {
  3413. "__id__": 127
  3414. },
  3415. {
  3416. "__id__": 128
  3417. }
  3418. ],
  3419. "_prefab": null,
  3420. "_lpos": {
  3421. "__type__": "cc.Vec3",
  3422. "x": -165.361,
  3423. "y": 61.99799999999999,
  3424. "z": 0
  3425. },
  3426. "_lrot": {
  3427. "__type__": "cc.Quat",
  3428. "x": 0,
  3429. "y": 0,
  3430. "z": 0,
  3431. "w": 1
  3432. },
  3433. "_lscale": {
  3434. "__type__": "cc.Vec3",
  3435. "x": 1,
  3436. "y": 1,
  3437. "z": 1
  3438. },
  3439. "_layer": 33554432,
  3440. "_euler": {
  3441. "__type__": "cc.Vec3",
  3442. "x": 0,
  3443. "y": 0,
  3444. "z": 0
  3445. },
  3446. "_id": "babu0t/0FP4KN5m5OaLSVG"
  3447. },
  3448. {
  3449. "__type__": "cc.UITransform",
  3450. "_name": "",
  3451. "_objFlags": 0,
  3452. "node": {
  3453. "__id__": 126
  3454. },
  3455. "_enabled": true,
  3456. "__prefab": null,
  3457. "_priority": 0,
  3458. "_contentSize": {
  3459. "__type__": "cc.Size",
  3460. "width": 103,
  3461. "height": 77
  3462. },
  3463. "_anchorPoint": {
  3464. "__type__": "cc.Vec2",
  3465. "x": 0.5,
  3466. "y": 0.5
  3467. },
  3468. "_id": "1f5xwFc5RMPZ+9znNiOk9i"
  3469. },
  3470. {
  3471. "__type__": "cc.Sprite",
  3472. "_name": "",
  3473. "_objFlags": 0,
  3474. "node": {
  3475. "__id__": 126
  3476. },
  3477. "_enabled": true,
  3478. "__prefab": null,
  3479. "_visFlags": 0,
  3480. "_customMaterial": null,
  3481. "_srcBlendFactor": 2,
  3482. "_dstBlendFactor": 4,
  3483. "_color": {
  3484. "__type__": "cc.Color",
  3485. "r": 255,
  3486. "g": 255,
  3487. "b": 255,
  3488. "a": 255
  3489. },
  3490. "_spriteFrame": {
  3491. "__uuid__": "1bd91cd8-a145-4876-8df0-fc43d6142ac5@f9941"
  3492. },
  3493. "_type": 0,
  3494. "_fillType": 0,
  3495. "_sizeMode": 1,
  3496. "_fillCenter": {
  3497. "__type__": "cc.Vec2",
  3498. "x": 0,
  3499. "y": 0
  3500. },
  3501. "_fillStart": 0,
  3502. "_fillRange": 0,
  3503. "_isTrimmedMode": true,
  3504. "_useGrayscale": false,
  3505. "_atlas": null,
  3506. "_id": "05j0EKqWxHN4CBYInZqVvT"
  3507. },
  3508. {
  3509. "__type__": "cc.UITransform",
  3510. "_name": "",
  3511. "_objFlags": 0,
  3512. "node": {
  3513. "__id__": 112
  3514. },
  3515. "_enabled": true,
  3516. "__prefab": null,
  3517. "_priority": 0,
  3518. "_contentSize": {
  3519. "__type__": "cc.Size",
  3520. "width": 391,
  3521. "height": 152
  3522. },
  3523. "_anchorPoint": {
  3524. "__type__": "cc.Vec2",
  3525. "x": 0.5,
  3526. "y": 0.5
  3527. },
  3528. "_id": "f2gDRok0VN+JYNPRugMx3n"
  3529. },
  3530. {
  3531. "__type__": "cc.Button",
  3532. "_name": "",
  3533. "_objFlags": 0,
  3534. "node": {
  3535. "__id__": 112
  3536. },
  3537. "_enabled": true,
  3538. "__prefab": null,
  3539. "clickEvents": [],
  3540. "_interactable": true,
  3541. "_transition": 0,
  3542. "_normalColor": {
  3543. "__type__": "cc.Color",
  3544. "r": 255,
  3545. "g": 255,
  3546. "b": 255,
  3547. "a": 255
  3548. },
  3549. "_hoverColor": {
  3550. "__type__": "cc.Color",
  3551. "r": 211,
  3552. "g": 211,
  3553. "b": 211,
  3554. "a": 255
  3555. },
  3556. "_pressedColor": {
  3557. "__type__": "cc.Color",
  3558. "r": 255,
  3559. "g": 255,
  3560. "b": 255,
  3561. "a": 255
  3562. },
  3563. "_disabledColor": {
  3564. "__type__": "cc.Color",
  3565. "r": 124,
  3566. "g": 124,
  3567. "b": 124,
  3568. "a": 255
  3569. },
  3570. "_normalSprite": {
  3571. "__uuid__": "a392fffb-2dab-4182-a579-db9d47f50f8e@f9941"
  3572. },
  3573. "_hoverSprite": null,
  3574. "_pressedSprite": null,
  3575. "_disabledSprite": null,
  3576. "_duration": 0.1,
  3577. "_zoomScale": 0.9,
  3578. "_target": null,
  3579. "_id": "3daHLxF5lMu6JcuUzsdFQf"
  3580. },
  3581. {
  3582. "__type__": "cc.Widget",
  3583. "_name": "",
  3584. "_objFlags": 0,
  3585. "node": {
  3586. "__id__": 112
  3587. },
  3588. "_enabled": true,
  3589. "__prefab": null,
  3590. "_alignFlags": 18,
  3591. "_target": null,
  3592. "_left": 0,
  3593. "_right": 0,
  3594. "_top": 0,
  3595. "_bottom": 30,
  3596. "_horizontalCenter": 0,
  3597. "_verticalCenter": 0,
  3598. "_isAbsLeft": true,
  3599. "_isAbsRight": true,
  3600. "_isAbsTop": true,
  3601. "_isAbsBottom": true,
  3602. "_isAbsHorizontalCenter": true,
  3603. "_isAbsVerticalCenter": true,
  3604. "_originalWidth": 0,
  3605. "_originalHeight": 0,
  3606. "_alignMode": 2,
  3607. "_lockFlags": 0,
  3608. "_id": "415gegOKxMQp1jifM1GEY9"
  3609. },
  3610. {
  3611. "__type__": "cc.Sprite",
  3612. "_name": "",
  3613. "_objFlags": 0,
  3614. "node": {
  3615. "__id__": 112
  3616. },
  3617. "_enabled": true,
  3618. "__prefab": null,
  3619. "_visFlags": 0,
  3620. "_customMaterial": null,
  3621. "_srcBlendFactor": 2,
  3622. "_dstBlendFactor": 4,
  3623. "_color": {
  3624. "__type__": "cc.Color",
  3625. "r": 255,
  3626. "g": 255,
  3627. "b": 255,
  3628. "a": 255
  3629. },
  3630. "_spriteFrame": {
  3631. "__uuid__": "a392fffb-2dab-4182-a579-db9d47f50f8e@f9941"
  3632. },
  3633. "_type": 0,
  3634. "_fillType": 0,
  3635. "_sizeMode": 1,
  3636. "_fillCenter": {
  3637. "__type__": "cc.Vec2",
  3638. "x": 0,
  3639. "y": 0
  3640. },
  3641. "_fillStart": 0,
  3642. "_fillRange": 0,
  3643. "_isTrimmedMode": true,
  3644. "_useGrayscale": false,
  3645. "_atlas": null,
  3646. "_id": "02B46XmRxHLaoHk9aLcYPM"
  3647. },
  3648. {
  3649. "__type__": "cc.Node",
  3650. "_objFlags": 0,
  3651. "_parent": null,
  3652. "_prefab": {
  3653. "__id__": 134
  3654. },
  3655. "_id": "34P9UrLwlM+YAeCwx0W3BA"
  3656. },
  3657. {
  3658. "__type__": "cc.PrefabInfo",
  3659. "root": {
  3660. "__id__": 133
  3661. },
  3662. "asset": {
  3663. "__uuid__": "11230ff3-3fff-4359-be9c-0416ffa1af7b"
  3664. },
  3665. "fileId": "9b0Si+bIpEGrWfN8qWWYXJ",
  3666. "instance": {
  3667. "__id__": 135
  3668. }
  3669. },
  3670. {
  3671. "__type__": "cc.PrefabInstance",
  3672. "fileId": "03tJ2Mg/hHYK8PiW2oMJPR",
  3673. "prefabRootNode": {
  3674. "__id__": 136
  3675. },
  3676. "mountedChildren": [],
  3677. "propertyOverrides": [
  3678. {
  3679. "__id__": 620
  3680. },
  3681. {
  3682. "__id__": 622
  3683. },
  3684. {
  3685. "__id__": 623
  3686. },
  3687. {
  3688. "__id__": 624
  3689. },
  3690. {
  3691. "__id__": 626
  3692. },
  3693. {
  3694. "__id__": 627
  3695. },
  3696. {
  3697. "__id__": 628
  3698. }
  3699. ],
  3700. "removedComponents": []
  3701. },
  3702. {
  3703. "__type__": "cc.Node",
  3704. "_objFlags": 0,
  3705. "_parent": {
  3706. "__id__": 137
  3707. },
  3708. "_prefab": {
  3709. "__id__": 194
  3710. },
  3711. "_id": "35r9A2E65J9qqoWtuIUkgX"
  3712. },
  3713. {
  3714. "__type__": "cc.Node",
  3715. "_name": "UI",
  3716. "_objFlags": 0,
  3717. "_parent": {
  3718. "__id__": 2
  3719. },
  3720. "_children": [
  3721. {
  3722. "__id__": 136
  3723. },
  3724. {
  3725. "__id__": 138
  3726. },
  3727. {
  3728. "__id__": 142
  3729. }
  3730. ],
  3731. "_active": true,
  3732. "_components": [
  3733. {
  3734. "__id__": 192
  3735. },
  3736. {
  3737. "__id__": 193
  3738. }
  3739. ],
  3740. "_prefab": null,
  3741. "_lpos": {
  3742. "__type__": "cc.Vec3",
  3743. "x": 0,
  3744. "y": 0,
  3745. "z": 0
  3746. },
  3747. "_lrot": {
  3748. "__type__": "cc.Quat",
  3749. "x": 0,
  3750. "y": 0,
  3751. "z": 0,
  3752. "w": 1
  3753. },
  3754. "_lscale": {
  3755. "__type__": "cc.Vec3",
  3756. "x": 1,
  3757. "y": 1,
  3758. "z": 1
  3759. },
  3760. "_layer": 1073741824,
  3761. "_euler": {
  3762. "__type__": "cc.Vec3",
  3763. "x": 0,
  3764. "y": 0,
  3765. "z": 0
  3766. },
  3767. "_id": "cfx4yKVYxNE6on4FTHaCyW"
  3768. },
  3769. {
  3770. "__type__": "cc.Node",
  3771. "_name": "飞行宝箱控制器",
  3772. "_objFlags": 0,
  3773. "_parent": {
  3774. "__id__": 137
  3775. },
  3776. "_children": [],
  3777. "_active": true,
  3778. "_components": [
  3779. {
  3780. "__id__": 139
  3781. },
  3782. {
  3783. "__id__": 140
  3784. },
  3785. {
  3786. "__id__": 141
  3787. }
  3788. ],
  3789. "_prefab": null,
  3790. "_lpos": {
  3791. "__type__": "cc.Vec3",
  3792. "x": 0,
  3793. "y": 0,
  3794. "z": 0
  3795. },
  3796. "_lrot": {
  3797. "__type__": "cc.Quat",
  3798. "x": 0,
  3799. "y": 0,
  3800. "z": 0,
  3801. "w": 1
  3802. },
  3803. "_lscale": {
  3804. "__type__": "cc.Vec3",
  3805. "x": 1,
  3806. "y": 1,
  3807. "z": 1
  3808. },
  3809. "_layer": 1073741824,
  3810. "_euler": {
  3811. "__type__": "cc.Vec3",
  3812. "x": 0,
  3813. "y": 0,
  3814. "z": 0
  3815. },
  3816. "_id": "7aWjWGY45FY4YR4gIeHByt"
  3817. },
  3818. {
  3819. "__type__": "cc.UITransform",
  3820. "_name": "",
  3821. "_objFlags": 0,
  3822. "node": {
  3823. "__id__": 138
  3824. },
  3825. "_enabled": true,
  3826. "__prefab": null,
  3827. "_priority": 0,
  3828. "_contentSize": {
  3829. "__type__": "cc.Size",
  3830. "width": 750,
  3831. "height": 1334
  3832. },
  3833. "_anchorPoint": {
  3834. "__type__": "cc.Vec2",
  3835. "x": 0.5,
  3836. "y": 0.5
  3837. },
  3838. "_id": "ebOLDCi5JPNJOrZx2r11lO"
  3839. },
  3840. {
  3841. "__type__": "cc.Widget",
  3842. "_name": "",
  3843. "_objFlags": 0,
  3844. "node": {
  3845. "__id__": 138
  3846. },
  3847. "_enabled": true,
  3848. "__prefab": null,
  3849. "_alignFlags": 45,
  3850. "_target": null,
  3851. "_left": 0,
  3852. "_right": 0,
  3853. "_top": 0,
  3854. "_bottom": 0,
  3855. "_horizontalCenter": 0,
  3856. "_verticalCenter": 0,
  3857. "_isAbsLeft": true,
  3858. "_isAbsRight": true,
  3859. "_isAbsTop": true,
  3860. "_isAbsBottom": true,
  3861. "_isAbsHorizontalCenter": true,
  3862. "_isAbsVerticalCenter": true,
  3863. "_originalWidth": 100,
  3864. "_originalHeight": 100,
  3865. "_alignMode": 2,
  3866. "_lockFlags": 0,
  3867. "_id": "1dOaSrhIdEbYonb28HXmzr"
  3868. },
  3869. {
  3870. "__type__": "a1e83mZwS1BCa1fyKxW4D46",
  3871. "_name": "",
  3872. "_objFlags": 0,
  3873. "node": {
  3874. "__id__": 138
  3875. },
  3876. "_enabled": true,
  3877. "__prefab": null,
  3878. "bg": {
  3879. "__id__": 138
  3880. },
  3881. "_id": "f0yJ+cuQpN9LlUKQE/6ipR"
  3882. },
  3883. {
  3884. "__type__": "cc.Node",
  3885. "_objFlags": 0,
  3886. "_parent": {
  3887. "__id__": 137
  3888. },
  3889. "_prefab": {
  3890. "__id__": 143
  3891. },
  3892. "_id": "2bZ/ZAxtxKML1DTwEhaqxo"
  3893. },
  3894. {
  3895. "__type__": "cc.PrefabInfo",
  3896. "root": {
  3897. "__id__": 142
  3898. },
  3899. "asset": {
  3900. "__uuid__": "234c1d7f-ffc6-4080-bb03-0d7825986763"
  3901. },
  3902. "fileId": "50vMJ3E1xGrKWh/56EbA1r",
  3903. "instance": {
  3904. "__id__": 144
  3905. }
  3906. },
  3907. {
  3908. "__type__": "cc.PrefabInstance",
  3909. "fileId": "e3eoUZqWpA64x7SrLkulwQ",
  3910. "mountedChildren": [],
  3911. "propertyOverrides": [
  3912. {
  3913. "__id__": 145
  3914. },
  3915. {
  3916. "__id__": 147
  3917. },
  3918. {
  3919. "__id__": 148
  3920. },
  3921. {
  3922. "__id__": 149
  3923. },
  3924. {
  3925. "__id__": 151
  3926. },
  3927. {
  3928. "__id__": 153
  3929. },
  3930. {
  3931. "__id__": 155
  3932. },
  3933. {
  3934. "__id__": 157
  3935. },
  3936. {
  3937. "__id__": 159
  3938. },
  3939. {
  3940. "__id__": 160
  3941. },
  3942. {
  3943. "__id__": 162
  3944. },
  3945. {
  3946. "__id__": 164
  3947. },
  3948. {
  3949. "__id__": 166
  3950. },
  3951. {
  3952. "__id__": 168
  3953. },
  3954. {
  3955. "__id__": 170
  3956. },
  3957. {
  3958. "__id__": 172
  3959. },
  3960. {
  3961. "__id__": 174
  3962. },
  3963. {
  3964. "__id__": 176
  3965. },
  3966. {
  3967. "__id__": 178
  3968. },
  3969. {
  3970. "__id__": 180
  3971. },
  3972. {
  3973. "__id__": 182
  3974. },
  3975. {
  3976. "__id__": 184
  3977. },
  3978. {
  3979. "__id__": 186
  3980. },
  3981. {
  3982. "__id__": 187
  3983. },
  3984. {
  3985. "__id__": 188
  3986. },
  3987. {
  3988. "__id__": 190
  3989. }
  3990. ],
  3991. "removedComponents": []
  3992. },
  3993. {
  3994. "__type__": "CCPropertyOverrideInfo",
  3995. "targetInfo": {
  3996. "__id__": 146
  3997. },
  3998. "propertyPath": [
  3999. "name"
  4000. ],
  4001. "value": "设置界面"
  4002. },
  4003. {
  4004. "__type__": "cc.TargetInfo",
  4005. "localID": [
  4006. "50vMJ3E1xGrKWh/56EbA1r"
  4007. ]
  4008. },
  4009. {
  4010. "__type__": "CCPropertyOverrideInfo",
  4011. "targetInfo": {
  4012. "__id__": 146
  4013. },
  4014. "propertyPath": [
  4015. "position"
  4016. ],
  4017. "value": {
  4018. "__type__": "cc.Vec3",
  4019. "x": 0,
  4020. "y": 0,
  4021. "z": 0
  4022. }
  4023. },
  4024. {
  4025. "__type__": "CCPropertyOverrideInfo",
  4026. "targetInfo": {
  4027. "__id__": 146
  4028. },
  4029. "propertyPath": [
  4030. "rotation"
  4031. ],
  4032. "value": {
  4033. "__type__": "cc.Quat",
  4034. "x": 0,
  4035. "y": 0,
  4036. "z": 0,
  4037. "w": 1
  4038. }
  4039. },
  4040. {
  4041. "__type__": "CCPropertyOverrideInfo",
  4042. "targetInfo": {
  4043. "__id__": 150
  4044. },
  4045. "propertyPath": [
  4046. "scale"
  4047. ],
  4048. "value": {
  4049. "__type__": "cc.Vec3",
  4050. "x": 1,
  4051. "y": 1,
  4052. "z": 1
  4053. }
  4054. },
  4055. {
  4056. "__type__": "cc.TargetInfo",
  4057. "localID": [
  4058. "72P6u4XvNJcqyUI1r91KNb"
  4059. ]
  4060. },
  4061. {
  4062. "__type__": "CCPropertyOverrideInfo",
  4063. "targetInfo": {
  4064. "__id__": 152
  4065. },
  4066. "propertyPath": [
  4067. "scale"
  4068. ],
  4069. "value": {
  4070. "__type__": "cc.Vec3",
  4071. "x": 1,
  4072. "y": 1,
  4073. "z": 1
  4074. }
  4075. },
  4076. {
  4077. "__type__": "cc.TargetInfo",
  4078. "localID": [
  4079. "c5yM+SwINJubAZNzyP2jrp"
  4080. ]
  4081. },
  4082. {
  4083. "__type__": "CCPropertyOverrideInfo",
  4084. "targetInfo": {
  4085. "__id__": 154
  4086. },
  4087. "propertyPath": [
  4088. "scale"
  4089. ],
  4090. "value": {
  4091. "__type__": "cc.Vec3",
  4092. "x": 1,
  4093. "y": 1,
  4094. "z": 1
  4095. }
  4096. },
  4097. {
  4098. "__type__": "cc.TargetInfo",
  4099. "localID": [
  4100. "f4jfKT0C1PRouwgjtIRnIJ"
  4101. ]
  4102. },
  4103. {
  4104. "__type__": "CCPropertyOverrideInfo",
  4105. "targetInfo": {
  4106. "__id__": 156
  4107. },
  4108. "propertyPath": [
  4109. "position"
  4110. ],
  4111. "value": {
  4112. "__type__": "cc.Vec3",
  4113. "x": -560,
  4114. "y": 0,
  4115. "z": 0
  4116. }
  4117. },
  4118. {
  4119. "__type__": "cc.TargetInfo",
  4120. "localID": [
  4121. "59QK7d6t9CDIec3wzAGYEx"
  4122. ]
  4123. },
  4124. {
  4125. "__type__": "CCPropertyOverrideInfo",
  4126. "targetInfo": {
  4127. "__id__": 158
  4128. },
  4129. "propertyPath": [
  4130. "position"
  4131. ],
  4132. "value": {
  4133. "__type__": "cc.Vec3",
  4134. "x": 226.5,
  4135. "y": 200.656,
  4136. "z": 0
  4137. }
  4138. },
  4139. {
  4140. "__type__": "cc.TargetInfo",
  4141. "localID": [
  4142. "99iln+/79FFI4iOiU2Nqcq"
  4143. ]
  4144. },
  4145. {
  4146. "__type__": "CCPropertyOverrideInfo",
  4147. "targetInfo": {
  4148. "__id__": 150
  4149. },
  4150. "propertyPath": [
  4151. "position"
  4152. ],
  4153. "value": {
  4154. "__type__": "cc.Vec3",
  4155. "x": 0,
  4156. "y": 0,
  4157. "z": 0
  4158. }
  4159. },
  4160. {
  4161. "__type__": "CCPropertyOverrideInfo",
  4162. "targetInfo": {
  4163. "__id__": 161
  4164. },
  4165. "propertyPath": [
  4166. "position"
  4167. ],
  4168. "value": {
  4169. "__type__": "cc.Vec3",
  4170. "x": 0,
  4171. "y": 0,
  4172. "z": 0
  4173. }
  4174. },
  4175. {
  4176. "__type__": "cc.TargetInfo",
  4177. "localID": [
  4178. "83BRc+4VtA25Bn0jnsJRRw"
  4179. ]
  4180. },
  4181. {
  4182. "__type__": "CCPropertyOverrideInfo",
  4183. "targetInfo": {
  4184. "__id__": 163
  4185. },
  4186. "propertyPath": [
  4187. "position"
  4188. ],
  4189. "value": {
  4190. "__type__": "cc.Vec3",
  4191. "x": -1.75,
  4192. "y": 8.25,
  4193. "z": 0
  4194. }
  4195. },
  4196. {
  4197. "__type__": "cc.TargetInfo",
  4198. "localID": [
  4199. "b7vAmoauNLZZutzuN8t1h3"
  4200. ]
  4201. },
  4202. {
  4203. "__type__": "CCPropertyOverrideInfo",
  4204. "targetInfo": {
  4205. "__id__": 165
  4206. },
  4207. "propertyPath": [
  4208. "position"
  4209. ],
  4210. "value": {
  4211. "__type__": "cc.Vec3",
  4212. "x": 0,
  4213. "y": 0,
  4214. "z": 0
  4215. }
  4216. },
  4217. {
  4218. "__type__": "cc.TargetInfo",
  4219. "localID": [
  4220. "49ESzUrQlLW72jVbZQWd/V"
  4221. ]
  4222. },
  4223. {
  4224. "__type__": "CCPropertyOverrideInfo",
  4225. "targetInfo": {
  4226. "__id__": 167
  4227. },
  4228. "propertyPath": [
  4229. "position"
  4230. ],
  4231. "value": {
  4232. "__type__": "cc.Vec3",
  4233. "x": 0,
  4234. "y": -0.040000000000034674,
  4235. "z": 0
  4236. }
  4237. },
  4238. {
  4239. "__type__": "cc.TargetInfo",
  4240. "localID": [
  4241. "11+35t7WBJU4C1M6hrhfco"
  4242. ]
  4243. },
  4244. {
  4245. "__type__": "CCPropertyOverrideInfo",
  4246. "targetInfo": {
  4247. "__id__": 169
  4248. },
  4249. "propertyPath": [
  4250. "position"
  4251. ],
  4252. "value": {
  4253. "__type__": "cc.Vec3",
  4254. "x": 0,
  4255. "y": -188.04000000000002,
  4256. "z": 0
  4257. }
  4258. },
  4259. {
  4260. "__type__": "cc.TargetInfo",
  4261. "localID": [
  4262. "1a2cuCly1OUovN8Capxh7Y"
  4263. ]
  4264. },
  4265. {
  4266. "__type__": "CCPropertyOverrideInfo",
  4267. "targetInfo": {
  4268. "__id__": 171
  4269. },
  4270. "propertyPath": [
  4271. "position"
  4272. ],
  4273. "value": {
  4274. "__type__": "cc.Vec3",
  4275. "x": 0,
  4276. "y": -245.04000000000002,
  4277. "z": 0
  4278. }
  4279. },
  4280. {
  4281. "__type__": "cc.TargetInfo",
  4282. "localID": [
  4283. "67IONTr/5G9Lz0ldaBvGsa"
  4284. ]
  4285. },
  4286. {
  4287. "__type__": "CCPropertyOverrideInfo",
  4288. "targetInfo": {
  4289. "__id__": 173
  4290. },
  4291. "propertyPath": [
  4292. "position"
  4293. ],
  4294. "value": {
  4295. "__type__": "cc.Vec3",
  4296. "x": -110,
  4297. "y": 0,
  4298. "z": 0
  4299. }
  4300. },
  4301. {
  4302. "__type__": "cc.TargetInfo",
  4303. "localID": [
  4304. "6c9veoTAFOSJEaYoe5620X"
  4305. ]
  4306. },
  4307. {
  4308. "__type__": "CCPropertyOverrideInfo",
  4309. "targetInfo": {
  4310. "__id__": 175
  4311. },
  4312. "propertyPath": [
  4313. "position"
  4314. ],
  4315. "value": {
  4316. "__type__": "cc.Vec3",
  4317. "x": 0,
  4318. "y": 0,
  4319. "z": 0
  4320. }
  4321. },
  4322. {
  4323. "__type__": "cc.TargetInfo",
  4324. "localID": [
  4325. "f6sSLLjcFK25U6eGi070L+"
  4326. ]
  4327. },
  4328. {
  4329. "__type__": "CCPropertyOverrideInfo",
  4330. "targetInfo": {
  4331. "__id__": 177
  4332. },
  4333. "propertyPath": [
  4334. "position"
  4335. ],
  4336. "value": {
  4337. "__type__": "cc.Vec3",
  4338. "x": 110,
  4339. "y": 0,
  4340. "z": 0
  4341. }
  4342. },
  4343. {
  4344. "__type__": "cc.TargetInfo",
  4345. "localID": [
  4346. "9bWoTZkfBPeIpz+/go1mE5"
  4347. ]
  4348. },
  4349. {
  4350. "__type__": "CCPropertyOverrideInfo",
  4351. "targetInfo": {
  4352. "__id__": 179
  4353. },
  4354. "propertyPath": [
  4355. "position"
  4356. ],
  4357. "value": {
  4358. "__type__": "cc.Vec3",
  4359. "x": 0,
  4360. "y": 226.53999999999996,
  4361. "z": 0
  4362. }
  4363. },
  4364. {
  4365. "__type__": "cc.TargetInfo",
  4366. "localID": [
  4367. "2eTChDBMtG94ZhvHPIY9fv"
  4368. ]
  4369. },
  4370. {
  4371. "__type__": "CCPropertyOverrideInfo",
  4372. "targetInfo": {
  4373. "__id__": 181
  4374. },
  4375. "propertyPath": [
  4376. "position"
  4377. ],
  4378. "value": {
  4379. "__type__": "cc.Vec3",
  4380. "x": 0,
  4381. "y": 127.83999999999996,
  4382. "z": 0
  4383. }
  4384. },
  4385. {
  4386. "__type__": "cc.TargetInfo",
  4387. "localID": [
  4388. "a7A770DHhP3bL35w/JbQYH"
  4389. ]
  4390. },
  4391. {
  4392. "__type__": "CCPropertyOverrideInfo",
  4393. "targetInfo": {
  4394. "__id__": 183
  4395. },
  4396. "propertyPath": [
  4397. "position"
  4398. ],
  4399. "value": {
  4400. "__type__": "cc.Vec3",
  4401. "x": 0,
  4402. "y": 25.859999999999964,
  4403. "z": 0
  4404. }
  4405. },
  4406. {
  4407. "__type__": "cc.TargetInfo",
  4408. "localID": [
  4409. "2ceKp9+UFLI6Q9dSU70aLJ"
  4410. ]
  4411. },
  4412. {
  4413. "__type__": "CCPropertyOverrideInfo",
  4414. "targetInfo": {
  4415. "__id__": 185
  4416. },
  4417. "propertyPath": [
  4418. "position"
  4419. ],
  4420. "value": {
  4421. "__type__": "cc.Vec3",
  4422. "x": 0,
  4423. "y": -94.04000000000003,
  4424. "z": 0
  4425. }
  4426. },
  4427. {
  4428. "__type__": "cc.TargetInfo",
  4429. "localID": [
  4430. "9eYJrQhtRC3r79VPWfTeN8"
  4431. ]
  4432. },
  4433. {
  4434. "__type__": "CCPropertyOverrideInfo",
  4435. "targetInfo": {
  4436. "__id__": 152
  4437. },
  4438. "propertyPath": [
  4439. "position"
  4440. ],
  4441. "value": {
  4442. "__type__": "cc.Vec3",
  4443. "x": 0,
  4444. "y": 46,
  4445. "z": 0
  4446. }
  4447. },
  4448. {
  4449. "__type__": "CCPropertyOverrideInfo",
  4450. "targetInfo": {
  4451. "__id__": 154
  4452. },
  4453. "propertyPath": [
  4454. "position"
  4455. ],
  4456. "value": {
  4457. "__type__": "cc.Vec3",
  4458. "x": 0,
  4459. "y": -46,
  4460. "z": 0
  4461. }
  4462. },
  4463. {
  4464. "__type__": "CCPropertyOverrideInfo",
  4465. "targetInfo": {
  4466. "__id__": 189
  4467. },
  4468. "propertyPath": [
  4469. "position"
  4470. ],
  4471. "value": {
  4472. "__type__": "cc.Vec3",
  4473. "x": 0,
  4474. "y": 73.69999999999996,
  4475. "z": 0
  4476. }
  4477. },
  4478. {
  4479. "__type__": "cc.TargetInfo",
  4480. "localID": [
  4481. "4cJr91dxRJcr91NprCkf1u"
  4482. ]
  4483. },
  4484. {
  4485. "__type__": "CCPropertyOverrideInfo",
  4486. "targetInfo": {
  4487. "__id__": 191
  4488. },
  4489. "propertyPath": [
  4490. "string"
  4491. ],
  4492. "value": "UID:"
  4493. },
  4494. {
  4495. "__type__": "cc.TargetInfo",
  4496. "localID": [
  4497. "326NQmFPlOerq7I+IJ7B+C"
  4498. ]
  4499. },
  4500. {
  4501. "__type__": "cc.UITransform",
  4502. "_name": "",
  4503. "_objFlags": 0,
  4504. "node": {
  4505. "__id__": 137
  4506. },
  4507. "_enabled": true,
  4508. "__prefab": null,
  4509. "_priority": 0,
  4510. "_contentSize": {
  4511. "__type__": "cc.Size",
  4512. "width": 750,
  4513. "height": 1334
  4514. },
  4515. "_anchorPoint": {
  4516. "__type__": "cc.Vec2",
  4517. "x": 0.5,
  4518. "y": 0.5
  4519. },
  4520. "_id": "074TGxRkFKS7Jx0raLue1A"
  4521. },
  4522. {
  4523. "__type__": "cc.Widget",
  4524. "_name": "",
  4525. "_objFlags": 0,
  4526. "node": {
  4527. "__id__": 137
  4528. },
  4529. "_enabled": true,
  4530. "__prefab": null,
  4531. "_alignFlags": 45,
  4532. "_target": null,
  4533. "_left": 0,
  4534. "_right": 0,
  4535. "_top": 0,
  4536. "_bottom": 0,
  4537. "_horizontalCenter": 0,
  4538. "_verticalCenter": 0,
  4539. "_isAbsLeft": true,
  4540. "_isAbsRight": true,
  4541. "_isAbsTop": true,
  4542. "_isAbsBottom": true,
  4543. "_isAbsHorizontalCenter": true,
  4544. "_isAbsVerticalCenter": true,
  4545. "_originalWidth": 100,
  4546. "_originalHeight": 100,
  4547. "_alignMode": 2,
  4548. "_lockFlags": 0,
  4549. "_id": "f9Frm/Cw5JCLdueoiXilsM"
  4550. },
  4551. {
  4552. "__type__": "cc.PrefabInfo",
  4553. "root": {
  4554. "__id__": 136
  4555. },
  4556. "asset": {
  4557. "__uuid__": "c58bf9a6-877a-49d5-9618-47b3c6310b74"
  4558. },
  4559. "fileId": "49ogKOcWFDpp7uOe4Y9pYv",
  4560. "instance": {
  4561. "__id__": 195
  4562. }
  4563. },
  4564. {
  4565. "__type__": "cc.PrefabInstance",
  4566. "fileId": "33rRJe3oxKyJ+lbtbSOkH2",
  4567. "mountedChildren": [],
  4568. "propertyOverrides": [
  4569. {
  4570. "__id__": 196
  4571. },
  4572. {
  4573. "__id__": 198
  4574. },
  4575. {
  4576. "__id__": 200
  4577. },
  4578. {
  4579. "__id__": 202
  4580. },
  4581. {
  4582. "__id__": 204
  4583. },
  4584. {
  4585. "__id__": 206
  4586. },
  4587. {
  4588. "__id__": 208
  4589. },
  4590. {
  4591. "__id__": 210
  4592. },
  4593. {
  4594. "__id__": 212
  4595. },
  4596. {
  4597. "__id__": 214
  4598. },
  4599. {
  4600. "__id__": 216
  4601. },
  4602. {
  4603. "__id__": 218
  4604. },
  4605. {
  4606. "__id__": 220
  4607. },
  4608. {
  4609. "__id__": 222
  4610. },
  4611. {
  4612. "__id__": 224
  4613. },
  4614. {
  4615. "__id__": 226
  4616. },
  4617. {
  4618. "__id__": 228
  4619. },
  4620. {
  4621. "__id__": 230
  4622. },
  4623. {
  4624. "__id__": 232
  4625. },
  4626. {
  4627. "__id__": 234
  4628. },
  4629. {
  4630. "__id__": 236
  4631. },
  4632. {
  4633. "__id__": 238
  4634. },
  4635. {
  4636. "__id__": 240
  4637. },
  4638. {
  4639. "__id__": 242
  4640. },
  4641. {
  4642. "__id__": 244
  4643. },
  4644. {
  4645. "__id__": 246
  4646. },
  4647. {
  4648. "__id__": 248
  4649. },
  4650. {
  4651. "__id__": 250
  4652. },
  4653. {
  4654. "__id__": 252
  4655. },
  4656. {
  4657. "__id__": 254
  4658. },
  4659. {
  4660. "__id__": 256
  4661. },
  4662. {
  4663. "__id__": 258
  4664. },
  4665. {
  4666. "__id__": 260
  4667. },
  4668. {
  4669. "__id__": 262
  4670. },
  4671. {
  4672. "__id__": 264
  4673. },
  4674. {
  4675. "__id__": 266
  4676. },
  4677. {
  4678. "__id__": 268
  4679. },
  4680. {
  4681. "__id__": 270
  4682. },
  4683. {
  4684. "__id__": 272
  4685. },
  4686. {
  4687. "__id__": 274
  4688. },
  4689. {
  4690. "__id__": 276
  4691. },
  4692. {
  4693. "__id__": 278
  4694. },
  4695. {
  4696. "__id__": 280
  4697. },
  4698. {
  4699. "__id__": 282
  4700. },
  4701. {
  4702. "__id__": 284
  4703. },
  4704. {
  4705. "__id__": 286
  4706. },
  4707. {
  4708. "__id__": 288
  4709. },
  4710. {
  4711. "__id__": 290
  4712. },
  4713. {
  4714. "__id__": 292
  4715. },
  4716. {
  4717. "__id__": 294
  4718. },
  4719. {
  4720. "__id__": 296
  4721. },
  4722. {
  4723. "__id__": 298
  4724. },
  4725. {
  4726. "__id__": 300
  4727. },
  4728. {
  4729. "__id__": 302
  4730. },
  4731. {
  4732. "__id__": 304
  4733. },
  4734. {
  4735. "__id__": 306
  4736. },
  4737. {
  4738. "__id__": 308
  4739. },
  4740. {
  4741. "__id__": 310
  4742. },
  4743. {
  4744. "__id__": 312
  4745. },
  4746. {
  4747. "__id__": 314
  4748. },
  4749. {
  4750. "__id__": 316
  4751. },
  4752. {
  4753. "__id__": 318
  4754. },
  4755. {
  4756. "__id__": 320
  4757. },
  4758. {
  4759. "__id__": 322
  4760. },
  4761. {
  4762. "__id__": 324
  4763. },
  4764. {
  4765. "__id__": 326
  4766. },
  4767. {
  4768. "__id__": 328
  4769. },
  4770. {
  4771. "__id__": 330
  4772. },
  4773. {
  4774. "__id__": 332
  4775. },
  4776. {
  4777. "__id__": 334
  4778. },
  4779. {
  4780. "__id__": 336
  4781. },
  4782. {
  4783. "__id__": 338
  4784. },
  4785. {
  4786. "__id__": 340
  4787. },
  4788. {
  4789. "__id__": 342
  4790. },
  4791. {
  4792. "__id__": 344
  4793. },
  4794. {
  4795. "__id__": 346
  4796. },
  4797. {
  4798. "__id__": 348
  4799. },
  4800. {
  4801. "__id__": 350
  4802. },
  4803. {
  4804. "__id__": 352
  4805. },
  4806. {
  4807. "__id__": 354
  4808. },
  4809. {
  4810. "__id__": 549
  4811. },
  4812. {
  4813. "__id__": 551
  4814. },
  4815. {
  4816. "__id__": 552
  4817. },
  4818. {
  4819. "__id__": 553
  4820. },
  4821. {
  4822. "__id__": 555
  4823. },
  4824. {
  4825. "__id__": 557
  4826. },
  4827. {
  4828. "__id__": 559
  4829. },
  4830. {
  4831. "__id__": 561
  4832. },
  4833. {
  4834. "__id__": 563
  4835. },
  4836. {
  4837. "__id__": 565
  4838. },
  4839. {
  4840. "__id__": 567
  4841. },
  4842. {
  4843. "__id__": 569
  4844. },
  4845. {
  4846. "__id__": 571
  4847. },
  4848. {
  4849. "__id__": 573
  4850. },
  4851. {
  4852. "__id__": 575
  4853. },
  4854. {
  4855. "__id__": 577
  4856. },
  4857. {
  4858. "__id__": 578
  4859. },
  4860. {
  4861. "__id__": 579
  4862. },
  4863. {
  4864. "__id__": 580
  4865. },
  4866. {
  4867. "__id__": 582
  4868. },
  4869. {
  4870. "__id__": 583
  4871. },
  4872. {
  4873. "__id__": 585
  4874. },
  4875. {
  4876. "__id__": 587
  4877. },
  4878. {
  4879. "__id__": 589
  4880. },
  4881. {
  4882. "__id__": 590
  4883. },
  4884. {
  4885. "__id__": 591
  4886. },
  4887. {
  4888. "__id__": 593
  4889. },
  4890. {
  4891. "__id__": 594
  4892. },
  4893. {
  4894. "__id__": 596
  4895. },
  4896. {
  4897. "__id__": 597
  4898. },
  4899. {
  4900. "__id__": 598
  4901. },
  4902. {
  4903. "__id__": 600
  4904. },
  4905. {
  4906. "__id__": 602
  4907. },
  4908. {
  4909. "__id__": 604
  4910. },
  4911. {
  4912. "__id__": 606
  4913. },
  4914. {
  4915. "__id__": 608
  4916. },
  4917. {
  4918. "__id__": 610
  4919. },
  4920. {
  4921. "__id__": 612
  4922. },
  4923. {
  4924. "__id__": 614
  4925. },
  4926. {
  4927. "__id__": 617
  4928. },
  4929. {
  4930. "__id__": 618
  4931. },
  4932. {
  4933. "__id__": 619
  4934. }
  4935. ],
  4936. "removedComponents": []
  4937. },
  4938. {
  4939. "__type__": "CCPropertyOverrideInfo",
  4940. "targetInfo": {
  4941. "__id__": 197
  4942. },
  4943. "propertyPath": [
  4944. "name"
  4945. ],
  4946. "value": "MainUI"
  4947. },
  4948. {
  4949. "__type__": "cc.TargetInfo",
  4950. "localID": [
  4951. "49ogKOcWFDpp7uOe4Y9pYv"
  4952. ]
  4953. },
  4954. {
  4955. "__type__": "CCPropertyOverrideInfo",
  4956. "targetInfo": {
  4957. "__id__": 199
  4958. },
  4959. "propertyPath": [
  4960. "position"
  4961. ],
  4962. "value": {
  4963. "__type__": "cc.Vec3",
  4964. "x": 0,
  4965. "y": 0,
  4966. "z": 0
  4967. }
  4968. },
  4969. {
  4970. "__type__": "cc.TargetInfo",
  4971. "localID": [
  4972. "49ogKOcWFDpp7uOe4Y9pYv"
  4973. ]
  4974. },
  4975. {
  4976. "__type__": "CCPropertyOverrideInfo",
  4977. "targetInfo": {
  4978. "__id__": 201
  4979. },
  4980. "propertyPath": [
  4981. "rotation"
  4982. ],
  4983. "value": {
  4984. "__type__": "cc.Quat",
  4985. "x": 0,
  4986. "y": 0,
  4987. "z": 0,
  4988. "w": 1
  4989. }
  4990. },
  4991. {
  4992. "__type__": "cc.TargetInfo",
  4993. "localID": [
  4994. "49ogKOcWFDpp7uOe4Y9pYv"
  4995. ]
  4996. },
  4997. {
  4998. "__type__": "CCPropertyOverrideInfo",
  4999. "targetInfo": {
  5000. "__id__": 203
  5001. },
  5002. "propertyPath": [
  5003. "scale"
  5004. ],
  5005. "value": {
  5006. "__type__": "cc.Vec3",
  5007. "x": 1,
  5008. "y": 1,
  5009. "z": 1
  5010. }
  5011. },
  5012. {
  5013. "__type__": "cc.TargetInfo",
  5014. "localID": [
  5015. "30bvja5eJJfZn4ilc/VygP"
  5016. ]
  5017. },
  5018. {
  5019. "__type__": "CCPropertyOverrideInfo",
  5020. "targetInfo": {
  5021. "__id__": 205
  5022. },
  5023. "propertyPath": [
  5024. "scale"
  5025. ],
  5026. "value": {
  5027. "__type__": "cc.Vec3",
  5028. "x": 1,
  5029. "y": 1,
  5030. "z": 1
  5031. }
  5032. },
  5033. {
  5034. "__type__": "cc.TargetInfo",
  5035. "localID": [
  5036. "b7nA5cEadPm5bjm5L8wEHp"
  5037. ]
  5038. },
  5039. {
  5040. "__type__": "CCPropertyOverrideInfo",
  5041. "targetInfo": {
  5042. "__id__": 207
  5043. },
  5044. "propertyPath": [
  5045. "scale"
  5046. ],
  5047. "value": {
  5048. "__type__": "cc.Vec3",
  5049. "x": 1,
  5050. "y": 1,
  5051. "z": 1
  5052. }
  5053. },
  5054. {
  5055. "__type__": "cc.TargetInfo",
  5056. "localID": [
  5057. "besG4LrI9ML5vt8gfIk55Y"
  5058. ]
  5059. },
  5060. {
  5061. "__type__": "CCPropertyOverrideInfo",
  5062. "targetInfo": {
  5063. "__id__": 209
  5064. },
  5065. "propertyPath": [
  5066. "scale"
  5067. ],
  5068. "value": {
  5069. "__type__": "cc.Vec3",
  5070. "x": 1,
  5071. "y": 1,
  5072. "z": 1
  5073. }
  5074. },
  5075. {
  5076. "__type__": "cc.TargetInfo",
  5077. "localID": [
  5078. "a5ogAn7kdER4YELZB9SHkk"
  5079. ]
  5080. },
  5081. {
  5082. "__type__": "CCPropertyOverrideInfo",
  5083. "targetInfo": {
  5084. "__id__": 211
  5085. },
  5086. "propertyPath": [
  5087. "position"
  5088. ],
  5089. "value": {
  5090. "__type__": "cc.Vec3",
  5091. "x": 0,
  5092. "y": 475,
  5093. "z": 0
  5094. }
  5095. },
  5096. {
  5097. "__type__": "cc.TargetInfo",
  5098. "localID": [
  5099. "b3E9VPEYRGPJ0C/XhXzBOF"
  5100. ]
  5101. },
  5102. {
  5103. "__type__": "CCPropertyOverrideInfo",
  5104. "targetInfo": {
  5105. "__id__": 213
  5106. },
  5107. "propertyPath": [
  5108. "position"
  5109. ],
  5110. "value": {
  5111. "__type__": "cc.Vec3",
  5112. "x": 0,
  5113. "y": 39.75,
  5114. "z": 0
  5115. }
  5116. },
  5117. {
  5118. "__type__": "cc.TargetInfo",
  5119. "localID": [
  5120. "1cfOKsUzlLbq0SP3sCzH8a"
  5121. ]
  5122. },
  5123. {
  5124. "__type__": "CCPropertyOverrideInfo",
  5125. "targetInfo": {
  5126. "__id__": 215
  5127. },
  5128. "propertyPath": [
  5129. "position"
  5130. ],
  5131. "value": {
  5132. "__type__": "cc.Vec3",
  5133. "x": 0,
  5134. "y": -69.75,
  5135. "z": 0
  5136. }
  5137. },
  5138. {
  5139. "__type__": "cc.TargetInfo",
  5140. "localID": [
  5141. "8aR17cmFdCaLCHgRAjBMG5"
  5142. ]
  5143. },
  5144. {
  5145. "__type__": "CCPropertyOverrideInfo",
  5146. "targetInfo": {
  5147. "__id__": 217
  5148. },
  5149. "propertyPath": [
  5150. "position"
  5151. ],
  5152. "value": {
  5153. "__type__": "cc.Vec3",
  5154. "x": 0,
  5155. "y": 0,
  5156. "z": 0
  5157. }
  5158. },
  5159. {
  5160. "__type__": "cc.TargetInfo",
  5161. "localID": [
  5162. "60fuU+MIFAJqJYILJjLOwX"
  5163. ]
  5164. },
  5165. {
  5166. "__type__": "CCPropertyOverrideInfo",
  5167. "targetInfo": {
  5168. "__id__": 219
  5169. },
  5170. "propertyPath": [
  5171. "position"
  5172. ],
  5173. "value": {
  5174. "__type__": "cc.Vec3",
  5175. "x": -126.78899999999999,
  5176. "y": 0,
  5177. "z": 0
  5178. }
  5179. },
  5180. {
  5181. "__type__": "cc.TargetInfo",
  5182. "localID": [
  5183. "e4xsOeXRtIpZFOdajX0UVs"
  5184. ]
  5185. },
  5186. {
  5187. "__type__": "CCPropertyOverrideInfo",
  5188. "targetInfo": {
  5189. "__id__": 221
  5190. },
  5191. "propertyPath": [
  5192. "position"
  5193. ],
  5194. "value": {
  5195. "__type__": "cc.Vec3",
  5196. "x": 1.5,
  5197. "y": -3,
  5198. "z": 0
  5199. }
  5200. },
  5201. {
  5202. "__type__": "cc.TargetInfo",
  5203. "localID": [
  5204. "73B5tnx6RFh5inFPvBVLZD"
  5205. ]
  5206. },
  5207. {
  5208. "__type__": "CCPropertyOverrideInfo",
  5209. "targetInfo": {
  5210. "__id__": 223
  5211. },
  5212. "propertyPath": [
  5213. "position"
  5214. ],
  5215. "value": {
  5216. "__type__": "cc.Vec3",
  5217. "x": 0,
  5218. "y": 15.600000000000001,
  5219. "z": 0
  5220. }
  5221. },
  5222. {
  5223. "__type__": "cc.TargetInfo",
  5224. "localID": [
  5225. "0dXt9VV2NGzr6dTvvU3HHU"
  5226. ]
  5227. },
  5228. {
  5229. "__type__": "CCPropertyOverrideInfo",
  5230. "targetInfo": {
  5231. "__id__": 225
  5232. },
  5233. "propertyPath": [
  5234. "position"
  5235. ],
  5236. "value": {
  5237. "__type__": "cc.Vec3",
  5238. "x": 0,
  5239. "y": -15.5,
  5240. "z": 0
  5241. }
  5242. },
  5243. {
  5244. "__type__": "cc.TargetInfo",
  5245. "localID": [
  5246. "c1p5VHNvVJVL3jMW2NpfY8"
  5247. ]
  5248. },
  5249. {
  5250. "__type__": "CCPropertyOverrideInfo",
  5251. "targetInfo": {
  5252. "__id__": 227
  5253. },
  5254. "propertyPath": [
  5255. "position"
  5256. ],
  5257. "value": {
  5258. "__type__": "cc.Vec3",
  5259. "x": 131.5,
  5260. "y": 0,
  5261. "z": 0
  5262. }
  5263. },
  5264. {
  5265. "__type__": "cc.TargetInfo",
  5266. "localID": [
  5267. "5aDhdXDjVMtYEVp9Z2z1DE"
  5268. ]
  5269. },
  5270. {
  5271. "__type__": "CCPropertyOverrideInfo",
  5272. "targetInfo": {
  5273. "__id__": 229
  5274. },
  5275. "propertyPath": [
  5276. "position"
  5277. ],
  5278. "value": {
  5279. "__type__": "cc.Vec3",
  5280. "x": 0,
  5281. "y": 0,
  5282. "z": 0
  5283. }
  5284. },
  5285. {
  5286. "__type__": "cc.TargetInfo",
  5287. "localID": [
  5288. "7buXz+KpBDBI3n/Mho+01t"
  5289. ]
  5290. },
  5291. {
  5292. "__type__": "CCPropertyOverrideInfo",
  5293. "targetInfo": {
  5294. "__id__": 231
  5295. },
  5296. "propertyPath": [
  5297. "position"
  5298. ],
  5299. "value": {
  5300. "__type__": "cc.Vec3",
  5301. "x": 0,
  5302. "y": 15.600000000000001,
  5303. "z": 0
  5304. }
  5305. },
  5306. {
  5307. "__type__": "cc.TargetInfo",
  5308. "localID": [
  5309. "fa7xG+Y0NNR7hvqwX/fBID"
  5310. ]
  5311. },
  5312. {
  5313. "__type__": "CCPropertyOverrideInfo",
  5314. "targetInfo": {
  5315. "__id__": 233
  5316. },
  5317. "propertyPath": [
  5318. "position"
  5319. ],
  5320. "value": {
  5321. "__type__": "cc.Vec3",
  5322. "x": 0,
  5323. "y": -15.5,
  5324. "z": 0
  5325. }
  5326. },
  5327. {
  5328. "__type__": "cc.TargetInfo",
  5329. "localID": [
  5330. "f9kShWAYdJS6S4HfZfmeTo"
  5331. ]
  5332. },
  5333. {
  5334. "__type__": "CCPropertyOverrideInfo",
  5335. "targetInfo": {
  5336. "__id__": 235
  5337. },
  5338. "propertyPath": [
  5339. "position"
  5340. ],
  5341. "value": {
  5342. "__type__": "cc.Vec3",
  5343. "x": -315,
  5344. "y": -462,
  5345. "z": 0
  5346. }
  5347. },
  5348. {
  5349. "__type__": "cc.TargetInfo",
  5350. "localID": [
  5351. "f9aLPLvXVEmZrqGJRcAUgZ"
  5352. ]
  5353. },
  5354. {
  5355. "__type__": "CCPropertyOverrideInfo",
  5356. "targetInfo": {
  5357. "__id__": 237
  5358. },
  5359. "propertyPath": [
  5360. "position"
  5361. ],
  5362. "value": {
  5363. "__type__": "cc.Vec3",
  5364. "x": 315,
  5365. "y": -462,
  5366. "z": 0
  5367. }
  5368. },
  5369. {
  5370. "__type__": "cc.TargetInfo",
  5371. "localID": [
  5372. "6cm0TkdotDQK0EEKbYNAAx"
  5373. ]
  5374. },
  5375. {
  5376. "__type__": "CCPropertyOverrideInfo",
  5377. "targetInfo": {
  5378. "__id__": 239
  5379. },
  5380. "propertyPath": [
  5381. "position"
  5382. ],
  5383. "value": {
  5384. "__type__": "cc.Vec3",
  5385. "x": 0,
  5386. "y": -587,
  5387. "z": 0
  5388. }
  5389. },
  5390. {
  5391. "__type__": "cc.TargetInfo",
  5392. "localID": [
  5393. "b3JYLChvZJvaPjCQaGIA9/"
  5394. ]
  5395. },
  5396. {
  5397. "__type__": "CCPropertyOverrideInfo",
  5398. "targetInfo": {
  5399. "__id__": 241
  5400. },
  5401. "propertyPath": [
  5402. "position"
  5403. ],
  5404. "value": {
  5405. "__type__": "cc.Vec3",
  5406. "x": -305,
  5407. "y": 8.5,
  5408. "z": 0
  5409. }
  5410. },
  5411. {
  5412. "__type__": "cc.TargetInfo",
  5413. "localID": [
  5414. "e6WioW1aBNOp/Oamv0XXri"
  5415. ]
  5416. },
  5417. {
  5418. "__type__": "CCPropertyOverrideInfo",
  5419. "targetInfo": {
  5420. "__id__": 243
  5421. },
  5422. "propertyPath": [
  5423. "position"
  5424. ],
  5425. "value": {
  5426. "__type__": "cc.Vec3",
  5427. "x": 312,
  5428. "y": 2,
  5429. "z": 0
  5430. }
  5431. },
  5432. {
  5433. "__type__": "cc.TargetInfo",
  5434. "localID": [
  5435. "2atwtYrMVGypASvi1riuEl"
  5436. ]
  5437. },
  5438. {
  5439. "__type__": "CCPropertyOverrideInfo",
  5440. "targetInfo": {
  5441. "__id__": 245
  5442. },
  5443. "propertyPath": [
  5444. "position"
  5445. ],
  5446. "value": {
  5447. "__type__": "cc.Vec3",
  5448. "x": 0,
  5449. "y": 69.75,
  5450. "z": 0
  5451. }
  5452. },
  5453. {
  5454. "__type__": "cc.TargetInfo",
  5455. "localID": [
  5456. "9fRJci4QVKb6zAG17PWZgZ"
  5457. ]
  5458. },
  5459. {
  5460. "__type__": "CCPropertyOverrideInfo",
  5461. "targetInfo": {
  5462. "__id__": 247
  5463. },
  5464. "propertyPath": [
  5465. "position"
  5466. ],
  5467. "value": {
  5468. "__type__": "cc.Vec3",
  5469. "x": 0,
  5470. "y": -139.5,
  5471. "z": 0
  5472. }
  5473. },
  5474. {
  5475. "__type__": "cc.TargetInfo",
  5476. "localID": [
  5477. "f5YjdbrIdL3LikdpPIdWKO"
  5478. ]
  5479. },
  5480. {
  5481. "__type__": "CCPropertyOverrideInfo",
  5482. "targetInfo": {
  5483. "__id__": 249
  5484. },
  5485. "propertyPath": [
  5486. "position"
  5487. ],
  5488. "value": {
  5489. "__type__": "cc.Vec3",
  5490. "x": -117,
  5491. "y": 0,
  5492. "z": 0
  5493. }
  5494. },
  5495. {
  5496. "__type__": "cc.TargetInfo",
  5497. "localID": [
  5498. "99tQZUqjJA7prN/AeU8I2/"
  5499. ]
  5500. },
  5501. {
  5502. "__type__": "CCPropertyOverrideInfo",
  5503. "targetInfo": {
  5504. "__id__": 251
  5505. },
  5506. "propertyPath": [
  5507. "position"
  5508. ],
  5509. "value": {
  5510. "__type__": "cc.Vec3",
  5511. "x": -78,
  5512. "y": 0,
  5513. "z": 0
  5514. }
  5515. },
  5516. {
  5517. "__type__": "cc.TargetInfo",
  5518. "localID": [
  5519. "ebcHAdbNNGj7yMqsiSU9xr"
  5520. ]
  5521. },
  5522. {
  5523. "__type__": "CCPropertyOverrideInfo",
  5524. "targetInfo": {
  5525. "__id__": 253
  5526. },
  5527. "propertyPath": [
  5528. "position"
  5529. ],
  5530. "value": {
  5531. "__type__": "cc.Vec3",
  5532. "x": -39,
  5533. "y": 0,
  5534. "z": 0
  5535. }
  5536. },
  5537. {
  5538. "__type__": "cc.TargetInfo",
  5539. "localID": [
  5540. "7cF24f/XBBMKOBY2s8HmLt"
  5541. ]
  5542. },
  5543. {
  5544. "__type__": "CCPropertyOverrideInfo",
  5545. "targetInfo": {
  5546. "__id__": 255
  5547. },
  5548. "propertyPath": [
  5549. "position"
  5550. ],
  5551. "value": {
  5552. "__type__": "cc.Vec3",
  5553. "x": 0,
  5554. "y": 0,
  5555. "z": 0
  5556. }
  5557. },
  5558. {
  5559. "__type__": "cc.TargetInfo",
  5560. "localID": [
  5561. "3aClqKWtJDi6cjQojVKl2T"
  5562. ]
  5563. },
  5564. {
  5565. "__type__": "CCPropertyOverrideInfo",
  5566. "targetInfo": {
  5567. "__id__": 257
  5568. },
  5569. "propertyPath": [
  5570. "position"
  5571. ],
  5572. "value": {
  5573. "__type__": "cc.Vec3",
  5574. "x": 39,
  5575. "y": 0,
  5576. "z": 0
  5577. }
  5578. },
  5579. {
  5580. "__type__": "cc.TargetInfo",
  5581. "localID": [
  5582. "d1aI/BoM9AM4V0+Axx6w3w"
  5583. ]
  5584. },
  5585. {
  5586. "__type__": "CCPropertyOverrideInfo",
  5587. "targetInfo": {
  5588. "__id__": 259
  5589. },
  5590. "propertyPath": [
  5591. "position"
  5592. ],
  5593. "value": {
  5594. "__type__": "cc.Vec3",
  5595. "x": 78,
  5596. "y": 0,
  5597. "z": 0
  5598. }
  5599. },
  5600. {
  5601. "__type__": "cc.TargetInfo",
  5602. "localID": [
  5603. "bckdOs3HRAH5kxFonNjng8"
  5604. ]
  5605. },
  5606. {
  5607. "__type__": "CCPropertyOverrideInfo",
  5608. "targetInfo": {
  5609. "__id__": 261
  5610. },
  5611. "propertyPath": [
  5612. "position"
  5613. ],
  5614. "value": {
  5615. "__type__": "cc.Vec3",
  5616. "x": -76.71100000000001,
  5617. "y": 0,
  5618. "z": 0
  5619. }
  5620. },
  5621. {
  5622. "__type__": "cc.TargetInfo",
  5623. "localID": [
  5624. "1b8/aO5jFB/6NJgLF39qd5"
  5625. ]
  5626. },
  5627. {
  5628. "__type__": "CCPropertyOverrideInfo",
  5629. "targetInfo": {
  5630. "__id__": 263
  5631. },
  5632. "propertyPath": [
  5633. "position"
  5634. ],
  5635. "value": {
  5636. "__type__": "cc.Vec3",
  5637. "x": 35.78899999999999,
  5638. "y": 0,
  5639. "z": 0
  5640. }
  5641. },
  5642. {
  5643. "__type__": "cc.TargetInfo",
  5644. "localID": [
  5645. "59q4/nGDZJD6j1rZvq3tX1"
  5646. ]
  5647. },
  5648. {
  5649. "__type__": "CCPropertyOverrideInfo",
  5650. "targetInfo": {
  5651. "__id__": 265
  5652. },
  5653. "propertyPath": [
  5654. "position"
  5655. ],
  5656. "value": {
  5657. "__type__": "cc.Vec3",
  5658. "x": -100,
  5659. "y": 0,
  5660. "z": 0
  5661. }
  5662. },
  5663. {
  5664. "__type__": "cc.TargetInfo",
  5665. "localID": [
  5666. "2f6ddIQctBFpRpQTA3l169"
  5667. ]
  5668. },
  5669. {
  5670. "__type__": "CCPropertyOverrideInfo",
  5671. "targetInfo": {
  5672. "__id__": 267
  5673. },
  5674. "propertyPath": [
  5675. "position"
  5676. ],
  5677. "value": {
  5678. "__type__": "cc.Vec3",
  5679. "x": 32.5,
  5680. "y": 0,
  5681. "z": 0
  5682. }
  5683. },
  5684. {
  5685. "__type__": "cc.TargetInfo",
  5686. "localID": [
  5687. "62RpMo8NRBQYTAzdiUNKOw"
  5688. ]
  5689. },
  5690. {
  5691. "__type__": "CCPropertyOverrideInfo",
  5692. "targetInfo": {
  5693. "__id__": 269
  5694. },
  5695. "propertyPath": [
  5696. "position"
  5697. ],
  5698. "value": {
  5699. "__type__": "cc.Vec3",
  5700. "x": 0,
  5701. "y": 209,
  5702. "z": 0
  5703. }
  5704. },
  5705. {
  5706. "__type__": "cc.TargetInfo",
  5707. "localID": [
  5708. "b7nA5cEadPm5bjm5L8wEHp"
  5709. ]
  5710. },
  5711. {
  5712. "__type__": "CCPropertyOverrideInfo",
  5713. "targetInfo": {
  5714. "__id__": 271
  5715. },
  5716. "propertyPath": [
  5717. "position"
  5718. ],
  5719. "value": {
  5720. "__type__": "cc.Vec3",
  5721. "x": 0,
  5722. "y": 53,
  5723. "z": 0
  5724. }
  5725. },
  5726. {
  5727. "__type__": "cc.TargetInfo",
  5728. "localID": [
  5729. "besG4LrI9ML5vt8gfIk55Y"
  5730. ]
  5731. },
  5732. {
  5733. "__type__": "CCPropertyOverrideInfo",
  5734. "targetInfo": {
  5735. "__id__": 273
  5736. },
  5737. "propertyPath": [
  5738. "position"
  5739. ],
  5740. "value": {
  5741. "__type__": "cc.Vec3",
  5742. "x": 0,
  5743. "y": 222.36,
  5744. "z": 0
  5745. }
  5746. },
  5747. {
  5748. "__type__": "cc.TargetInfo",
  5749. "localID": [
  5750. "8418kPE0pC4Yf979qBrjD/"
  5751. ]
  5752. },
  5753. {
  5754. "__type__": "CCPropertyOverrideInfo",
  5755. "targetInfo": {
  5756. "__id__": 275
  5757. },
  5758. "propertyPath": [
  5759. "position"
  5760. ],
  5761. "value": {
  5762. "__type__": "cc.Vec3",
  5763. "x": 0,
  5764. "y": 53,
  5765. "z": 0
  5766. }
  5767. },
  5768. {
  5769. "__type__": "cc.TargetInfo",
  5770. "localID": [
  5771. "a5ogAn7kdER4YELZB9SHkk"
  5772. ]
  5773. },
  5774. {
  5775. "__type__": "CCPropertyOverrideInfo",
  5776. "targetInfo": {
  5777. "__id__": 277
  5778. },
  5779. "propertyPath": [
  5780. "position"
  5781. ],
  5782. "value": {
  5783. "__type__": "cc.Vec3",
  5784. "x": 0,
  5785. "y": 19.86,
  5786. "z": 0
  5787. }
  5788. },
  5789. {
  5790. "__type__": "cc.TargetInfo",
  5791. "localID": [
  5792. "400Et3XhFJqaGDsDXBDQ6E"
  5793. ]
  5794. },
  5795. {
  5796. "__type__": "CCPropertyOverrideInfo",
  5797. "targetInfo": {
  5798. "__id__": 279
  5799. },
  5800. "propertyPath": [
  5801. "position"
  5802. ],
  5803. "value": {
  5804. "__type__": "cc.Vec3",
  5805. "x": 0,
  5806. "y": -41.5,
  5807. "z": 0
  5808. }
  5809. },
  5810. {
  5811. "__type__": "cc.TargetInfo",
  5812. "localID": [
  5813. "952nijq2NFubu4+K6dwDnf"
  5814. ]
  5815. },
  5816. {
  5817. "__type__": "CCPropertyOverrideInfo",
  5818. "targetInfo": {
  5819. "__id__": 281
  5820. },
  5821. "propertyPath": [
  5822. "position"
  5823. ],
  5824. "value": {
  5825. "__type__": "cc.Vec3",
  5826. "x": 0,
  5827. "y": 8.86,
  5828. "z": 0
  5829. }
  5830. },
  5831. {
  5832. "__type__": "cc.TargetInfo",
  5833. "localID": [
  5834. "0eg10TewNI1bfjR3DfqwAi"
  5835. ]
  5836. },
  5837. {
  5838. "__type__": "CCPropertyOverrideInfo",
  5839. "targetInfo": {
  5840. "__id__": 283
  5841. },
  5842. "propertyPath": [
  5843. "position"
  5844. ],
  5845. "value": {
  5846. "__type__": "cc.Vec3",
  5847. "x": 0,
  5848. "y": -56,
  5849. "z": 0
  5850. }
  5851. },
  5852. {
  5853. "__type__": "cc.TargetInfo",
  5854. "localID": [
  5855. "54D1cP2h9PWLQMRhj9qUdS"
  5856. ]
  5857. },
  5858. {
  5859. "__type__": "CCPropertyOverrideInfo",
  5860. "targetInfo": {
  5861. "__id__": 285
  5862. },
  5863. "propertyPath": [
  5864. "position"
  5865. ],
  5866. "value": {
  5867. "__type__": "cc.Vec3",
  5868. "x": 0,
  5869. "y": 8.86,
  5870. "z": 0
  5871. }
  5872. },
  5873. {
  5874. "__type__": "cc.TargetInfo",
  5875. "localID": [
  5876. "0eYYMejmpJz72yL9050n7J"
  5877. ]
  5878. },
  5879. {
  5880. "__type__": "CCPropertyOverrideInfo",
  5881. "targetInfo": {
  5882. "__id__": 287
  5883. },
  5884. "propertyPath": [
  5885. "position"
  5886. ],
  5887. "value": {
  5888. "__type__": "cc.Vec3",
  5889. "x": 0,
  5890. "y": -54.5,
  5891. "z": 0
  5892. }
  5893. },
  5894. {
  5895. "__type__": "cc.TargetInfo",
  5896. "localID": [
  5897. "891/Zi0IZLa4PyQBqm1x8C"
  5898. ]
  5899. },
  5900. {
  5901. "__type__": "CCPropertyOverrideInfo",
  5902. "targetInfo": {
  5903. "__id__": 289
  5904. },
  5905. "propertyPath": [
  5906. "position"
  5907. ],
  5908. "value": {
  5909. "__type__": "cc.Vec3",
  5910. "x": 0,
  5911. "y": 34,
  5912. "z": 0
  5913. }
  5914. },
  5915. {
  5916. "__type__": "cc.TargetInfo",
  5917. "localID": [
  5918. "91wOZhiMFClp01tRx2MqKZ"
  5919. ]
  5920. },
  5921. {
  5922. "__type__": "CCPropertyOverrideInfo",
  5923. "targetInfo": {
  5924. "__id__": 291
  5925. },
  5926. "propertyPath": [
  5927. "position"
  5928. ],
  5929. "value": {
  5930. "__type__": "cc.Vec3",
  5931. "x": 0,
  5932. "y": 0,
  5933. "z": 0
  5934. }
  5935. },
  5936. {
  5937. "__type__": "cc.TargetInfo",
  5938. "localID": [
  5939. "130pA/ydhMAr84ij9wnMT3"
  5940. ]
  5941. },
  5942. {
  5943. "__type__": "CCPropertyOverrideInfo",
  5944. "targetInfo": {
  5945. "__id__": 293
  5946. },
  5947. "propertyPath": [
  5948. "position"
  5949. ],
  5950. "value": {
  5951. "__type__": "cc.Vec3",
  5952. "x": 0,
  5953. "y": 0,
  5954. "z": 0
  5955. }
  5956. },
  5957. {
  5958. "__type__": "cc.TargetInfo",
  5959. "localID": [
  5960. "78dMfsFpVETLcDNdqBvDce"
  5961. ]
  5962. },
  5963. {
  5964. "__type__": "CCPropertyOverrideInfo",
  5965. "targetInfo": {
  5966. "__id__": 295
  5967. },
  5968. "propertyPath": [
  5969. "position"
  5970. ],
  5971. "value": {
  5972. "__type__": "cc.Vec3",
  5973. "x": 0,
  5974. "y": 0,
  5975. "z": 0
  5976. }
  5977. },
  5978. {
  5979. "__type__": "cc.TargetInfo",
  5980. "localID": [
  5981. "6b6NqiNx9PzqFK8tLRl83G"
  5982. ]
  5983. },
  5984. {
  5985. "__type__": "CCPropertyOverrideInfo",
  5986. "targetInfo": {
  5987. "__id__": 297
  5988. },
  5989. "propertyPath": [
  5990. "position"
  5991. ],
  5992. "value": {
  5993. "__type__": "cc.Vec3",
  5994. "x": 0,
  5995. "y": 28.68,
  5996. "z": 0
  5997. }
  5998. },
  5999. {
  6000. "__type__": "cc.TargetInfo",
  6001. "localID": [
  6002. "294Dd9qu5Ojqf11JUpQ4O9"
  6003. ]
  6004. },
  6005. {
  6006. "__type__": "CCPropertyOverrideInfo",
  6007. "targetInfo": {
  6008. "__id__": 299
  6009. },
  6010. "propertyPath": [
  6011. "position"
  6012. ],
  6013. "value": {
  6014. "__type__": "cc.Vec3",
  6015. "x": 0,
  6016. "y": -25,
  6017. "z": 0
  6018. }
  6019. },
  6020. {
  6021. "__type__": "cc.TargetInfo",
  6022. "localID": [
  6023. "c9lJ74IjtGfK5lJoFAwcWF"
  6024. ]
  6025. },
  6026. {
  6027. "__type__": "CCPropertyOverrideInfo",
  6028. "targetInfo": {
  6029. "__id__": 301
  6030. },
  6031. "propertyPath": [
  6032. "position"
  6033. ],
  6034. "value": {
  6035. "__type__": "cc.Vec3",
  6036. "x": -42.69,
  6037. "y": 0,
  6038. "z": 0
  6039. }
  6040. },
  6041. {
  6042. "__type__": "cc.TargetInfo",
  6043. "localID": [
  6044. "e6SZ6JsLBFeoI+XC0N+Ii+"
  6045. ]
  6046. },
  6047. {
  6048. "__type__": "CCPropertyOverrideInfo",
  6049. "targetInfo": {
  6050. "__id__": 303
  6051. },
  6052. "propertyPath": [
  6053. "position"
  6054. ],
  6055. "value": {
  6056. "__type__": "cc.Vec3",
  6057. "x": 26,
  6058. "y": 0,
  6059. "z": 0
  6060. }
  6061. },
  6062. {
  6063. "__type__": "cc.TargetInfo",
  6064. "localID": [
  6065. "b3b1tiooxOdrRXAv8u2Wmx"
  6066. ]
  6067. },
  6068. {
  6069. "__type__": "CCPropertyOverrideInfo",
  6070. "targetInfo": {
  6071. "__id__": 305
  6072. },
  6073. "propertyPath": [
  6074. "scale"
  6075. ],
  6076. "value": {
  6077. "__type__": "cc.Vec3",
  6078. "x": 1,
  6079. "y": 1,
  6080. "z": 1
  6081. }
  6082. },
  6083. {
  6084. "__type__": "cc.TargetInfo",
  6085. "localID": [
  6086. "49ogKOcWFDpp7uOe4Y9pYv"
  6087. ]
  6088. },
  6089. {
  6090. "__type__": "CCPropertyOverrideInfo",
  6091. "targetInfo": {
  6092. "__id__": 307
  6093. },
  6094. "propertyPath": [
  6095. "rotation"
  6096. ],
  6097. "value": {
  6098. "__type__": "cc.Quat",
  6099. "x": 0,
  6100. "y": 0,
  6101. "z": 0,
  6102. "w": 1
  6103. }
  6104. },
  6105. {
  6106. "__type__": "cc.TargetInfo",
  6107. "localID": [
  6108. "294Dd9qu5Ojqf11JUpQ4O9"
  6109. ]
  6110. },
  6111. {
  6112. "__type__": "CCPropertyOverrideInfo",
  6113. "targetInfo": {
  6114. "__id__": 309
  6115. },
  6116. "propertyPath": [
  6117. "scale"
  6118. ],
  6119. "value": {
  6120. "__type__": "cc.Vec3",
  6121. "x": 1,
  6122. "y": 1,
  6123. "z": 1
  6124. }
  6125. },
  6126. {
  6127. "__type__": "cc.TargetInfo",
  6128. "localID": [
  6129. "294Dd9qu5Ojqf11JUpQ4O9"
  6130. ]
  6131. },
  6132. {
  6133. "__type__": "CCPropertyOverrideInfo",
  6134. "targetInfo": {
  6135. "__id__": 311
  6136. },
  6137. "propertyPath": [
  6138. "rotation"
  6139. ],
  6140. "value": {
  6141. "__type__": "cc.Quat",
  6142. "x": 0,
  6143. "y": 0,
  6144. "z": 0,
  6145. "w": 1
  6146. }
  6147. },
  6148. {
  6149. "__type__": "cc.TargetInfo",
  6150. "localID": [
  6151. "c9lJ74IjtGfK5lJoFAwcWF"
  6152. ]
  6153. },
  6154. {
  6155. "__type__": "CCPropertyOverrideInfo",
  6156. "targetInfo": {
  6157. "__id__": 313
  6158. },
  6159. "propertyPath": [
  6160. "scale"
  6161. ],
  6162. "value": {
  6163. "__type__": "cc.Vec3",
  6164. "x": 1,
  6165. "y": 1,
  6166. "z": 1
  6167. }
  6168. },
  6169. {
  6170. "__type__": "cc.TargetInfo",
  6171. "localID": [
  6172. "c9lJ74IjtGfK5lJoFAwcWF"
  6173. ]
  6174. },
  6175. {
  6176. "__type__": "CCPropertyOverrideInfo",
  6177. "targetInfo": {
  6178. "__id__": 315
  6179. },
  6180. "propertyPath": [
  6181. "rotation"
  6182. ],
  6183. "value": {
  6184. "__type__": "cc.Quat",
  6185. "x": 0,
  6186. "y": 0,
  6187. "z": 0,
  6188. "w": 1
  6189. }
  6190. },
  6191. {
  6192. "__type__": "cc.TargetInfo",
  6193. "localID": [
  6194. "e6SZ6JsLBFeoI+XC0N+Ii+"
  6195. ]
  6196. },
  6197. {
  6198. "__type__": "CCPropertyOverrideInfo",
  6199. "targetInfo": {
  6200. "__id__": 317
  6201. },
  6202. "propertyPath": [
  6203. "scale"
  6204. ],
  6205. "value": {
  6206. "__type__": "cc.Vec3",
  6207. "x": 1,
  6208. "y": 1,
  6209. "z": 1
  6210. }
  6211. },
  6212. {
  6213. "__type__": "cc.TargetInfo",
  6214. "localID": [
  6215. "e6SZ6JsLBFeoI+XC0N+Ii+"
  6216. ]
  6217. },
  6218. {
  6219. "__type__": "CCPropertyOverrideInfo",
  6220. "targetInfo": {
  6221. "__id__": 319
  6222. },
  6223. "propertyPath": [
  6224. "rotation"
  6225. ],
  6226. "value": {
  6227. "__type__": "cc.Quat",
  6228. "x": 0,
  6229. "y": 0,
  6230. "z": 0,
  6231. "w": 1
  6232. }
  6233. },
  6234. {
  6235. "__type__": "cc.TargetInfo",
  6236. "localID": [
  6237. "b3b1tiooxOdrRXAv8u2Wmx"
  6238. ]
  6239. },
  6240. {
  6241. "__type__": "CCPropertyOverrideInfo",
  6242. "targetInfo": {
  6243. "__id__": 321
  6244. },
  6245. "propertyPath": [
  6246. "scale"
  6247. ],
  6248. "value": {
  6249. "__type__": "cc.Vec3",
  6250. "x": 1,
  6251. "y": 1,
  6252. "z": 1
  6253. }
  6254. },
  6255. {
  6256. "__type__": "cc.TargetInfo",
  6257. "localID": [
  6258. "b3b1tiooxOdrRXAv8u2Wmx"
  6259. ]
  6260. },
  6261. {
  6262. "__type__": "CCPropertyOverrideInfo",
  6263. "targetInfo": {
  6264. "__id__": 323
  6265. },
  6266. "propertyPath": [
  6267. "position"
  6268. ],
  6269. "value": {
  6270. "__type__": "cc.Vec3",
  6271. "x": -24,
  6272. "y": 0,
  6273. "z": 0
  6274. }
  6275. },
  6276. {
  6277. "__type__": "cc.TargetInfo",
  6278. "localID": [
  6279. "eesjG7JtdK1LFkWjVzJWhL"
  6280. ]
  6281. },
  6282. {
  6283. "__type__": "CCPropertyOverrideInfo",
  6284. "targetInfo": {
  6285. "__id__": 325
  6286. },
  6287. "propertyPath": [
  6288. "position"
  6289. ],
  6290. "value": {
  6291. "__type__": "cc.Vec3",
  6292. "x": 0,
  6293. "y": 0,
  6294. "z": 0
  6295. }
  6296. },
  6297. {
  6298. "__type__": "cc.TargetInfo",
  6299. "localID": [
  6300. "8b+11Jj4JMt6abewfyyDsZ"
  6301. ]
  6302. },
  6303. {
  6304. "__type__": "CCPropertyOverrideInfo",
  6305. "targetInfo": {
  6306. "__id__": 327
  6307. },
  6308. "propertyPath": [
  6309. "position"
  6310. ],
  6311. "value": {
  6312. "__type__": "cc.Vec3",
  6313. "x": 24,
  6314. "y": 0,
  6315. "z": 0
  6316. }
  6317. },
  6318. {
  6319. "__type__": "cc.TargetInfo",
  6320. "localID": [
  6321. "66UcUFPeNJ9oCypSPOSOeA"
  6322. ]
  6323. },
  6324. {
  6325. "__type__": "CCPropertyOverrideInfo",
  6326. "targetInfo": {
  6327. "__id__": 329
  6328. },
  6329. "propertyPath": [
  6330. "position"
  6331. ],
  6332. "value": {
  6333. "__type__": "cc.Vec3",
  6334. "x": 0,
  6335. "y": 0,
  6336. "z": 0
  6337. }
  6338. },
  6339. {
  6340. "__type__": "cc.TargetInfo",
  6341. "localID": [
  6342. "f2tnTw6tFHwbBLDdn53a0y"
  6343. ]
  6344. },
  6345. {
  6346. "__type__": "CCPropertyOverrideInfo",
  6347. "targetInfo": {
  6348. "__id__": 331
  6349. },
  6350. "propertyPath": [
  6351. "position"
  6352. ],
  6353. "value": {
  6354. "__type__": "cc.Vec3",
  6355. "x": 0,
  6356. "y": 0,
  6357. "z": 0
  6358. }
  6359. },
  6360. {
  6361. "__type__": "cc.TargetInfo",
  6362. "localID": [
  6363. "15J58axNhEgYpT3aFbq7pQ"
  6364. ]
  6365. },
  6366. {
  6367. "__type__": "CCPropertyOverrideInfo",
  6368. "targetInfo": {
  6369. "__id__": 333
  6370. },
  6371. "propertyPath": [
  6372. "position"
  6373. ],
  6374. "value": {
  6375. "__type__": "cc.Vec3",
  6376. "x": 0,
  6377. "y": 0,
  6378. "z": 0
  6379. }
  6380. },
  6381. {
  6382. "__type__": "cc.TargetInfo",
  6383. "localID": [
  6384. "f3XXMxsMtG7rmxv4DzjiqQ"
  6385. ]
  6386. },
  6387. {
  6388. "__type__": "CCPropertyOverrideInfo",
  6389. "targetInfo": {
  6390. "__id__": 335
  6391. },
  6392. "propertyPath": [
  6393. "position"
  6394. ],
  6395. "value": {
  6396. "__type__": "cc.Vec3",
  6397. "x": -69.5,
  6398. "y": 0,
  6399. "z": 0
  6400. }
  6401. },
  6402. {
  6403. "__type__": "cc.TargetInfo",
  6404. "localID": [
  6405. "c8J3aJ4NtG7I7DEmHTAv7a"
  6406. ]
  6407. },
  6408. {
  6409. "__type__": "CCPropertyOverrideInfo",
  6410. "targetInfo": {
  6411. "__id__": 337
  6412. },
  6413. "propertyPath": [
  6414. "position"
  6415. ],
  6416. "value": {
  6417. "__type__": "cc.Vec3",
  6418. "x": -49.5,
  6419. "y": 0,
  6420. "z": 0
  6421. }
  6422. },
  6423. {
  6424. "__type__": "cc.TargetInfo",
  6425. "localID": [
  6426. "94Sk/r1BRND6vw12XuJ6qM"
  6427. ]
  6428. },
  6429. {
  6430. "__type__": "CCPropertyOverrideInfo",
  6431. "targetInfo": {
  6432. "__id__": 339
  6433. },
  6434. "propertyPath": [
  6435. "position"
  6436. ],
  6437. "value": {
  6438. "__type__": "cc.Vec3",
  6439. "x": -29.5,
  6440. "y": 0,
  6441. "z": 0
  6442. }
  6443. },
  6444. {
  6445. "__type__": "cc.TargetInfo",
  6446. "localID": [
  6447. "bceIguSxRJBb4QkdSFOfFk"
  6448. ]
  6449. },
  6450. {
  6451. "__type__": "CCPropertyOverrideInfo",
  6452. "targetInfo": {
  6453. "__id__": 341
  6454. },
  6455. "propertyPath": [
  6456. "position"
  6457. ],
  6458. "value": {
  6459. "__type__": "cc.Vec3",
  6460. "x": -9.5,
  6461. "y": 0,
  6462. "z": 0
  6463. }
  6464. },
  6465. {
  6466. "__type__": "cc.TargetInfo",
  6467. "localID": [
  6468. "f9w7QaDLtGDabi2ZGj33ct"
  6469. ]
  6470. },
  6471. {
  6472. "__type__": "CCPropertyOverrideInfo",
  6473. "targetInfo": {
  6474. "__id__": 343
  6475. },
  6476. "propertyPath": [
  6477. "position"
  6478. ],
  6479. "value": {
  6480. "__type__": "cc.Vec3",
  6481. "x": 9.5,
  6482. "y": 0,
  6483. "z": 0
  6484. }
  6485. },
  6486. {
  6487. "__type__": "cc.TargetInfo",
  6488. "localID": [
  6489. "e0kkOmNiNEt4lEZKmd9Q9P"
  6490. ]
  6491. },
  6492. {
  6493. "__type__": "CCPropertyOverrideInfo",
  6494. "targetInfo": {
  6495. "__id__": 345
  6496. },
  6497. "propertyPath": [
  6498. "position"
  6499. ],
  6500. "value": {
  6501. "__type__": "cc.Vec3",
  6502. "x": 29.5,
  6503. "y": 0,
  6504. "z": 0
  6505. }
  6506. },
  6507. {
  6508. "__type__": "cc.TargetInfo",
  6509. "localID": [
  6510. "f1bmVDNIhOzJwzabD03xMT"
  6511. ]
  6512. },
  6513. {
  6514. "__type__": "CCPropertyOverrideInfo",
  6515. "targetInfo": {
  6516. "__id__": 347
  6517. },
  6518. "propertyPath": [
  6519. "position"
  6520. ],
  6521. "value": {
  6522. "__type__": "cc.Vec3",
  6523. "x": 50,
  6524. "y": 0,
  6525. "z": 0
  6526. }
  6527. },
  6528. {
  6529. "__type__": "cc.TargetInfo",
  6530. "localID": [
  6531. "feDhMR6D5CaLc6FROzNXf5"
  6532. ]
  6533. },
  6534. {
  6535. "__type__": "CCPropertyOverrideInfo",
  6536. "targetInfo": {
  6537. "__id__": 349
  6538. },
  6539. "propertyPath": [
  6540. "position"
  6541. ],
  6542. "value": {
  6543. "__type__": "cc.Vec3",
  6544. "x": 70,
  6545. "y": 0,
  6546. "z": 0
  6547. }
  6548. },
  6549. {
  6550. "__type__": "cc.TargetInfo",
  6551. "localID": [
  6552. "c6iOlyb7FCtLpODV2AF1Wj"
  6553. ]
  6554. },
  6555. {
  6556. "__type__": "CCPropertyOverrideInfo",
  6557. "targetInfo": {
  6558. "__id__": 351
  6559. },
  6560. "propertyPath": [
  6561. "position"
  6562. ],
  6563. "value": {
  6564. "__type__": "cc.Vec3",
  6565. "x": 0,
  6566. "y": 19,
  6567. "z": 0
  6568. }
  6569. },
  6570. {
  6571. "__type__": "cc.TargetInfo",
  6572. "localID": [
  6573. "fedQYDeHZB04jgRT+IdvvQ"
  6574. ]
  6575. },
  6576. {
  6577. "__type__": "CCPropertyOverrideInfo",
  6578. "targetInfo": {
  6579. "__id__": 353
  6580. },
  6581. "propertyPath": [
  6582. "position"
  6583. ],
  6584. "value": {
  6585. "__type__": "cc.Vec3",
  6586. "x": 0,
  6587. "y": -34,
  6588. "z": 0
  6589. }
  6590. },
  6591. {
  6592. "__type__": "cc.TargetInfo",
  6593. "localID": [
  6594. "22KhtTSl9Do64VP4tjuRYW"
  6595. ]
  6596. },
  6597. {
  6598. "__type__": "CCPropertyOverrideInfo",
  6599. "targetInfo": {
  6600. "__id__": 355
  6601. },
  6602. "propertyPath": [
  6603. "buyHander"
  6604. ],
  6605. "value": {
  6606. "__id__": 356
  6607. }
  6608. },
  6609. {
  6610. "__type__": "cc.TargetInfo",
  6611. "localID": [
  6612. "89Glq+KEhJiJsZtx8lhFtj"
  6613. ]
  6614. },
  6615. {
  6616. "__type__": "cc.ClickEvent",
  6617. "target": {
  6618. "__id__": 357
  6619. },
  6620. "component": "",
  6621. "_componentId": "f53401dhutMyrxGWKjUHzWc",
  6622. "handler": "createRole",
  6623. "customEventData": ""
  6624. },
  6625. {
  6626. "__type__": "cc.Node",
  6627. "_name": "角色控制器",
  6628. "_objFlags": 0,
  6629. "_parent": {
  6630. "__id__": 1
  6631. },
  6632. "_children": [],
  6633. "_active": true,
  6634. "_components": [
  6635. {
  6636. "__id__": 358
  6637. }
  6638. ],
  6639. "_prefab": null,
  6640. "_lpos": {
  6641. "__type__": "cc.Vec3",
  6642. "x": 0,
  6643. "y": 0,
  6644. "z": 0
  6645. },
  6646. "_lrot": {
  6647. "__type__": "cc.Quat",
  6648. "x": 0,
  6649. "y": 0,
  6650. "z": 0,
  6651. "w": 1
  6652. },
  6653. "_lscale": {
  6654. "__type__": "cc.Vec3",
  6655. "x": 1,
  6656. "y": 1,
  6657. "z": 1
  6658. },
  6659. "_layer": 1073741824,
  6660. "_euler": {
  6661. "__type__": "cc.Vec3",
  6662. "x": 0,
  6663. "y": 0,
  6664. "z": 0
  6665. },
  6666. "_id": "d0+QH0G0pCrYnduPqZhQdS"
  6667. },
  6668. {
  6669. "__type__": "f53401dhutMyrxGWKjUHzWc",
  6670. "_name": "",
  6671. "_objFlags": 0,
  6672. "node": {
  6673. "__id__": 357
  6674. },
  6675. "_enabled": true,
  6676. "__prefab": null,
  6677. "onCanSell": {
  6678. "__id__": 359
  6679. },
  6680. "roleGroup": {
  6681. "__id__": 360
  6682. },
  6683. "roleBgList": [
  6684. {
  6685. "__id__": 363
  6686. },
  6687. {
  6688. "__id__": 365
  6689. },
  6690. {
  6691. "__id__": 380
  6692. },
  6693. {
  6694. "__id__": 395
  6695. },
  6696. {
  6697. "__id__": 410
  6698. },
  6699. {
  6700. "__id__": 425
  6701. },
  6702. {
  6703. "__id__": 440
  6704. },
  6705. {
  6706. "__id__": 455
  6707. },
  6708. {
  6709. "__id__": 470
  6710. },
  6711. {
  6712. "__id__": 485
  6713. },
  6714. {
  6715. "__id__": 500
  6716. },
  6717. {
  6718. "__id__": 515
  6719. }
  6720. ],
  6721. "rolePrefabPath": "Prefabs/Role",
  6722. "canvas": {
  6723. "__id__": 2
  6724. },
  6725. "sellButton": {
  6726. "__id__": 112
  6727. },
  6728. "http": {
  6729. "__id__": 547
  6730. },
  6731. "_id": "a7LEemRsZPEZt9EB8GSxGQ"
  6732. },
  6733. {
  6734. "__type__": "cc.ClickEvent",
  6735. "target": {
  6736. "__id__": 109
  6737. },
  6738. "component": "",
  6739. "_componentId": "743afyRlb5BuYh9IVScJnCr",
  6740. "handler": "onRoleCanSell",
  6741. "customEventData": ""
  6742. },
  6743. {
  6744. "__type__": "cc.Node",
  6745. "_name": "角色组",
  6746. "_objFlags": 0,
  6747. "_parent": {
  6748. "__id__": 15
  6749. },
  6750. "_children": [],
  6751. "_active": true,
  6752. "_components": [
  6753. {
  6754. "__id__": 361
  6755. },
  6756. {
  6757. "__id__": 362
  6758. }
  6759. ],
  6760. "_prefab": null,
  6761. "_lpos": {
  6762. "__type__": "cc.Vec3",
  6763. "x": 0,
  6764. "y": 0,
  6765. "z": 0
  6766. },
  6767. "_lrot": {
  6768. "__type__": "cc.Quat",
  6769. "x": 0,
  6770. "y": 0,
  6771. "z": 0,
  6772. "w": 1
  6773. },
  6774. "_lscale": {
  6775. "__type__": "cc.Vec3",
  6776. "x": 1,
  6777. "y": 1,
  6778. "z": 1
  6779. },
  6780. "_layer": 33554432,
  6781. "_euler": {
  6782. "__type__": "cc.Vec3",
  6783. "x": 0,
  6784. "y": 0,
  6785. "z": 0
  6786. },
  6787. "_id": "14i+sxgNlAR6BoBbJUuVo0"
  6788. },
  6789. {
  6790. "__type__": "cc.UITransform",
  6791. "_name": "",
  6792. "_objFlags": 0,
  6793. "node": {
  6794. "__id__": 360
  6795. },
  6796. "_enabled": true,
  6797. "__prefab": null,
  6798. "_priority": 0,
  6799. "_contentSize": {
  6800. "__type__": "cc.Size",
  6801. "width": 550,
  6802. "height": 720
  6803. },
  6804. "_anchorPoint": {
  6805. "__type__": "cc.Vec2",
  6806. "x": 0.5,
  6807. "y": 0.5
  6808. },
  6809. "_id": "7c5rdf+b9CX6y4JAfZXYNd"
  6810. },
  6811. {
  6812. "__type__": "cc.Widget",
  6813. "_name": "",
  6814. "_objFlags": 0,
  6815. "node": {
  6816. "__id__": 360
  6817. },
  6818. "_enabled": true,
  6819. "__prefab": null,
  6820. "_alignFlags": 18,
  6821. "_target": null,
  6822. "_left": 225,
  6823. "_right": 225,
  6824. "_top": 0,
  6825. "_bottom": 230,
  6826. "_horizontalCenter": 0,
  6827. "_verticalCenter": 0,
  6828. "_isAbsLeft": true,
  6829. "_isAbsRight": true,
  6830. "_isAbsTop": true,
  6831. "_isAbsBottom": true,
  6832. "_isAbsHorizontalCenter": true,
  6833. "_isAbsVerticalCenter": true,
  6834. "_originalWidth": 300,
  6835. "_originalHeight": 0,
  6836. "_alignMode": 1,
  6837. "_lockFlags": 0,
  6838. "_id": "7c7EW0RbxF+LOZ5wE23K3f"
  6839. },
  6840. {
  6841. "__type__": "cc.Node",
  6842. "_objFlags": 0,
  6843. "_parent": {
  6844. "__id__": 364
  6845. },
  6846. "_prefab": {
  6847. "__id__": 533
  6848. },
  6849. "_id": "b0ooyAKuRK/oTe4hPLB6mw"
  6850. },
  6851. {
  6852. "__type__": "cc.Node",
  6853. "_name": "角色底",
  6854. "_objFlags": 0,
  6855. "_parent": {
  6856. "__id__": 15
  6857. },
  6858. "_children": [
  6859. {
  6860. "__id__": 363
  6861. },
  6862. {
  6863. "__id__": 365
  6864. },
  6865. {
  6866. "__id__": 380
  6867. },
  6868. {
  6869. "__id__": 395
  6870. },
  6871. {
  6872. "__id__": 410
  6873. },
  6874. {
  6875. "__id__": 425
  6876. },
  6877. {
  6878. "__id__": 440
  6879. },
  6880. {
  6881. "__id__": 455
  6882. },
  6883. {
  6884. "__id__": 470
  6885. },
  6886. {
  6887. "__id__": 485
  6888. },
  6889. {
  6890. "__id__": 500
  6891. },
  6892. {
  6893. "__id__": 515
  6894. }
  6895. ],
  6896. "_active": true,
  6897. "_components": [
  6898. {
  6899. "__id__": 530
  6900. },
  6901. {
  6902. "__id__": 531
  6903. },
  6904. {
  6905. "__id__": 532
  6906. }
  6907. ],
  6908. "_prefab": null,
  6909. "_lpos": {
  6910. "__type__": "cc.Vec3",
  6911. "x": 0,
  6912. "y": 0,
  6913. "z": 0
  6914. },
  6915. "_lrot": {
  6916. "__type__": "cc.Quat",
  6917. "x": 0,
  6918. "y": 0,
  6919. "z": 0,
  6920. "w": 1
  6921. },
  6922. "_lscale": {
  6923. "__type__": "cc.Vec3",
  6924. "x": 1,
  6925. "y": 1,
  6926. "z": 1
  6927. },
  6928. "_layer": 33554432,
  6929. "_euler": {
  6930. "__type__": "cc.Vec3",
  6931. "x": 0,
  6932. "y": 0,
  6933. "z": 0
  6934. },
  6935. "_id": "5cuozG6b9HUZWFXHSzbjet"
  6936. },
  6937. {
  6938. "__type__": "cc.Node",
  6939. "_objFlags": 0,
  6940. "_parent": {
  6941. "__id__": 364
  6942. },
  6943. "_prefab": {
  6944. "__id__": 366
  6945. },
  6946. "_id": "fanBnN9H1GmLEgFTTnMHXT"
  6947. },
  6948. {
  6949. "__type__": "cc.PrefabInfo",
  6950. "root": {
  6951. "__id__": 365
  6952. },
  6953. "asset": {
  6954. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  6955. },
  6956. "fileId": "1aPJHryMNJsKdSamroaKqp",
  6957. "instance": {
  6958. "__id__": 367
  6959. }
  6960. },
  6961. {
  6962. "__type__": "cc.PrefabInstance",
  6963. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  6964. "mountedChildren": [],
  6965. "propertyOverrides": [
  6966. {
  6967. "__id__": 368
  6968. },
  6969. {
  6970. "__id__": 370
  6971. },
  6972. {
  6973. "__id__": 372
  6974. },
  6975. {
  6976. "__id__": 374
  6977. },
  6978. {
  6979. "__id__": 376
  6980. },
  6981. {
  6982. "__id__": 378
  6983. }
  6984. ],
  6985. "removedComponents": []
  6986. },
  6987. {
  6988. "__type__": "CCPropertyOverrideInfo",
  6989. "targetInfo": {
  6990. "__id__": 369
  6991. },
  6992. "propertyPath": [
  6993. "position"
  6994. ],
  6995. "value": {
  6996. "__type__": "cc.Vec3",
  6997. "x": -65,
  6998. "y": 230,
  6999. "z": 0
  7000. }
  7001. },
  7002. {
  7003. "__type__": "cc.TargetInfo",
  7004. "localID": [
  7005. "1aPJHryMNJsKdSamroaKqp"
  7006. ]
  7007. },
  7008. {
  7009. "__type__": "CCPropertyOverrideInfo",
  7010. "targetInfo": {
  7011. "__id__": 371
  7012. },
  7013. "propertyPath": [
  7014. "name"
  7015. ],
  7016. "value": "RoleNode_1"
  7017. },
  7018. {
  7019. "__type__": "cc.TargetInfo",
  7020. "localID": [
  7021. "1aPJHryMNJsKdSamroaKqp"
  7022. ]
  7023. },
  7024. {
  7025. "__type__": "CCPropertyOverrideInfo",
  7026. "targetInfo": {
  7027. "__id__": 373
  7028. },
  7029. "propertyPath": [
  7030. "position"
  7031. ],
  7032. "value": {
  7033. "__type__": "cc.Vec3",
  7034. "x": 0,
  7035. "y": -41,
  7036. "z": 0
  7037. }
  7038. },
  7039. {
  7040. "__type__": "cc.TargetInfo",
  7041. "localID": [
  7042. "1fxm5oT9REcbVkzJnpIjGA"
  7043. ]
  7044. },
  7045. {
  7046. "__type__": "CCPropertyOverrideInfo",
  7047. "targetInfo": {
  7048. "__id__": 375
  7049. },
  7050. "propertyPath": [
  7051. "rotation"
  7052. ],
  7053. "value": {
  7054. "__type__": "cc.Quat",
  7055. "x": 0,
  7056. "y": 0,
  7057. "z": 0,
  7058. "w": 1
  7059. }
  7060. },
  7061. {
  7062. "__type__": "cc.TargetInfo",
  7063. "localID": [
  7064. "1aPJHryMNJsKdSamroaKqp"
  7065. ]
  7066. },
  7067. {
  7068. "__type__": "CCPropertyOverrideInfo",
  7069. "targetInfo": {
  7070. "__id__": 377
  7071. },
  7072. "propertyPath": [
  7073. "scale"
  7074. ],
  7075. "value": {
  7076. "__type__": "cc.Vec3",
  7077. "x": 1,
  7078. "y": 1,
  7079. "z": 1
  7080. }
  7081. },
  7082. {
  7083. "__type__": "cc.TargetInfo",
  7084. "localID": [
  7085. "1aPJHryMNJsKdSamroaKqp"
  7086. ]
  7087. },
  7088. {
  7089. "__type__": "CCPropertyOverrideInfo",
  7090. "targetInfo": {
  7091. "__id__": 379
  7092. },
  7093. "propertyPath": [
  7094. "position"
  7095. ],
  7096. "value": {
  7097. "__type__": "cc.Vec3",
  7098. "x": 0,
  7099. "y": -92.5,
  7100. "z": 0
  7101. }
  7102. },
  7103. {
  7104. "__type__": "cc.TargetInfo",
  7105. "localID": [
  7106. "5eHLPYrtJMZYHbv+qXp6L5"
  7107. ]
  7108. },
  7109. {
  7110. "__type__": "cc.Node",
  7111. "_objFlags": 0,
  7112. "_parent": {
  7113. "__id__": 364
  7114. },
  7115. "_prefab": {
  7116. "__id__": 381
  7117. },
  7118. "_id": "44+9wLP8FPy7O/GUPQpJQW"
  7119. },
  7120. {
  7121. "__type__": "cc.PrefabInfo",
  7122. "root": {
  7123. "__id__": 380
  7124. },
  7125. "asset": {
  7126. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  7127. },
  7128. "fileId": "1aPJHryMNJsKdSamroaKqp",
  7129. "instance": {
  7130. "__id__": 382
  7131. }
  7132. },
  7133. {
  7134. "__type__": "cc.PrefabInstance",
  7135. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  7136. "mountedChildren": [],
  7137. "propertyOverrides": [
  7138. {
  7139. "__id__": 383
  7140. },
  7141. {
  7142. "__id__": 385
  7143. },
  7144. {
  7145. "__id__": 387
  7146. },
  7147. {
  7148. "__id__": 389
  7149. },
  7150. {
  7151. "__id__": 391
  7152. },
  7153. {
  7154. "__id__": 393
  7155. }
  7156. ],
  7157. "removedComponents": []
  7158. },
  7159. {
  7160. "__type__": "CCPropertyOverrideInfo",
  7161. "targetInfo": {
  7162. "__id__": 384
  7163. },
  7164. "propertyPath": [
  7165. "position"
  7166. ],
  7167. "value": {
  7168. "__type__": "cc.Vec3",
  7169. "x": 65,
  7170. "y": 230,
  7171. "z": 0
  7172. }
  7173. },
  7174. {
  7175. "__type__": "cc.TargetInfo",
  7176. "localID": [
  7177. "1aPJHryMNJsKdSamroaKqp"
  7178. ]
  7179. },
  7180. {
  7181. "__type__": "CCPropertyOverrideInfo",
  7182. "targetInfo": {
  7183. "__id__": 386
  7184. },
  7185. "propertyPath": [
  7186. "name"
  7187. ],
  7188. "value": "RoleNode_2"
  7189. },
  7190. {
  7191. "__type__": "cc.TargetInfo",
  7192. "localID": [
  7193. "1aPJHryMNJsKdSamroaKqp"
  7194. ]
  7195. },
  7196. {
  7197. "__type__": "CCPropertyOverrideInfo",
  7198. "targetInfo": {
  7199. "__id__": 388
  7200. },
  7201. "propertyPath": [
  7202. "position"
  7203. ],
  7204. "value": {
  7205. "__type__": "cc.Vec3",
  7206. "x": 0,
  7207. "y": -41,
  7208. "z": 0
  7209. }
  7210. },
  7211. {
  7212. "__type__": "cc.TargetInfo",
  7213. "localID": [
  7214. "1fxm5oT9REcbVkzJnpIjGA"
  7215. ]
  7216. },
  7217. {
  7218. "__type__": "CCPropertyOverrideInfo",
  7219. "targetInfo": {
  7220. "__id__": 390
  7221. },
  7222. "propertyPath": [
  7223. "rotation"
  7224. ],
  7225. "value": {
  7226. "__type__": "cc.Quat",
  7227. "x": 0,
  7228. "y": 0,
  7229. "z": 0,
  7230. "w": 1
  7231. }
  7232. },
  7233. {
  7234. "__type__": "cc.TargetInfo",
  7235. "localID": [
  7236. "1aPJHryMNJsKdSamroaKqp"
  7237. ]
  7238. },
  7239. {
  7240. "__type__": "CCPropertyOverrideInfo",
  7241. "targetInfo": {
  7242. "__id__": 392
  7243. },
  7244. "propertyPath": [
  7245. "scale"
  7246. ],
  7247. "value": {
  7248. "__type__": "cc.Vec3",
  7249. "x": 1,
  7250. "y": 1,
  7251. "z": 1
  7252. }
  7253. },
  7254. {
  7255. "__type__": "cc.TargetInfo",
  7256. "localID": [
  7257. "1aPJHryMNJsKdSamroaKqp"
  7258. ]
  7259. },
  7260. {
  7261. "__type__": "CCPropertyOverrideInfo",
  7262. "targetInfo": {
  7263. "__id__": 394
  7264. },
  7265. "propertyPath": [
  7266. "position"
  7267. ],
  7268. "value": {
  7269. "__type__": "cc.Vec3",
  7270. "x": 0,
  7271. "y": -92.5,
  7272. "z": 0
  7273. }
  7274. },
  7275. {
  7276. "__type__": "cc.TargetInfo",
  7277. "localID": [
  7278. "5eHLPYrtJMZYHbv+qXp6L5"
  7279. ]
  7280. },
  7281. {
  7282. "__type__": "cc.Node",
  7283. "_objFlags": 0,
  7284. "_parent": {
  7285. "__id__": 364
  7286. },
  7287. "_prefab": {
  7288. "__id__": 396
  7289. },
  7290. "_id": "e96GQ/y7lA/ac1avjpIIiM"
  7291. },
  7292. {
  7293. "__type__": "cc.PrefabInfo",
  7294. "root": {
  7295. "__id__": 395
  7296. },
  7297. "asset": {
  7298. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  7299. },
  7300. "fileId": "1aPJHryMNJsKdSamroaKqp",
  7301. "instance": {
  7302. "__id__": 397
  7303. }
  7304. },
  7305. {
  7306. "__type__": "cc.PrefabInstance",
  7307. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  7308. "mountedChildren": [],
  7309. "propertyOverrides": [
  7310. {
  7311. "__id__": 398
  7312. },
  7313. {
  7314. "__id__": 400
  7315. },
  7316. {
  7317. "__id__": 402
  7318. },
  7319. {
  7320. "__id__": 404
  7321. },
  7322. {
  7323. "__id__": 406
  7324. },
  7325. {
  7326. "__id__": 408
  7327. }
  7328. ],
  7329. "removedComponents": []
  7330. },
  7331. {
  7332. "__type__": "CCPropertyOverrideInfo",
  7333. "targetInfo": {
  7334. "__id__": 399
  7335. },
  7336. "propertyPath": [
  7337. "position"
  7338. ],
  7339. "value": {
  7340. "__type__": "cc.Vec3",
  7341. "x": 195,
  7342. "y": 230,
  7343. "z": 0
  7344. }
  7345. },
  7346. {
  7347. "__type__": "cc.TargetInfo",
  7348. "localID": [
  7349. "1aPJHryMNJsKdSamroaKqp"
  7350. ]
  7351. },
  7352. {
  7353. "__type__": "CCPropertyOverrideInfo",
  7354. "targetInfo": {
  7355. "__id__": 401
  7356. },
  7357. "propertyPath": [
  7358. "name"
  7359. ],
  7360. "value": "RoleNode_3"
  7361. },
  7362. {
  7363. "__type__": "cc.TargetInfo",
  7364. "localID": [
  7365. "1aPJHryMNJsKdSamroaKqp"
  7366. ]
  7367. },
  7368. {
  7369. "__type__": "CCPropertyOverrideInfo",
  7370. "targetInfo": {
  7371. "__id__": 403
  7372. },
  7373. "propertyPath": [
  7374. "position"
  7375. ],
  7376. "value": {
  7377. "__type__": "cc.Vec3",
  7378. "x": 0,
  7379. "y": -41,
  7380. "z": 0
  7381. }
  7382. },
  7383. {
  7384. "__type__": "cc.TargetInfo",
  7385. "localID": [
  7386. "1fxm5oT9REcbVkzJnpIjGA"
  7387. ]
  7388. },
  7389. {
  7390. "__type__": "CCPropertyOverrideInfo",
  7391. "targetInfo": {
  7392. "__id__": 405
  7393. },
  7394. "propertyPath": [
  7395. "rotation"
  7396. ],
  7397. "value": {
  7398. "__type__": "cc.Quat",
  7399. "x": 0,
  7400. "y": 0,
  7401. "z": 0,
  7402. "w": 1
  7403. }
  7404. },
  7405. {
  7406. "__type__": "cc.TargetInfo",
  7407. "localID": [
  7408. "1aPJHryMNJsKdSamroaKqp"
  7409. ]
  7410. },
  7411. {
  7412. "__type__": "CCPropertyOverrideInfo",
  7413. "targetInfo": {
  7414. "__id__": 407
  7415. },
  7416. "propertyPath": [
  7417. "scale"
  7418. ],
  7419. "value": {
  7420. "__type__": "cc.Vec3",
  7421. "x": 1,
  7422. "y": 1,
  7423. "z": 1
  7424. }
  7425. },
  7426. {
  7427. "__type__": "cc.TargetInfo",
  7428. "localID": [
  7429. "1aPJHryMNJsKdSamroaKqp"
  7430. ]
  7431. },
  7432. {
  7433. "__type__": "CCPropertyOverrideInfo",
  7434. "targetInfo": {
  7435. "__id__": 409
  7436. },
  7437. "propertyPath": [
  7438. "position"
  7439. ],
  7440. "value": {
  7441. "__type__": "cc.Vec3",
  7442. "x": 0,
  7443. "y": -92.5,
  7444. "z": 0
  7445. }
  7446. },
  7447. {
  7448. "__type__": "cc.TargetInfo",
  7449. "localID": [
  7450. "5eHLPYrtJMZYHbv+qXp6L5"
  7451. ]
  7452. },
  7453. {
  7454. "__type__": "cc.Node",
  7455. "_objFlags": 0,
  7456. "_parent": {
  7457. "__id__": 364
  7458. },
  7459. "_prefab": {
  7460. "__id__": 411
  7461. },
  7462. "_id": "28MOyX+YBFQrLI+9QrV7A0"
  7463. },
  7464. {
  7465. "__type__": "cc.PrefabInfo",
  7466. "root": {
  7467. "__id__": 410
  7468. },
  7469. "asset": {
  7470. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  7471. },
  7472. "fileId": "1aPJHryMNJsKdSamroaKqp",
  7473. "instance": {
  7474. "__id__": 412
  7475. }
  7476. },
  7477. {
  7478. "__type__": "cc.PrefabInstance",
  7479. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  7480. "mountedChildren": [],
  7481. "propertyOverrides": [
  7482. {
  7483. "__id__": 413
  7484. },
  7485. {
  7486. "__id__": 415
  7487. },
  7488. {
  7489. "__id__": 417
  7490. },
  7491. {
  7492. "__id__": 419
  7493. },
  7494. {
  7495. "__id__": 421
  7496. },
  7497. {
  7498. "__id__": 423
  7499. }
  7500. ],
  7501. "removedComponents": []
  7502. },
  7503. {
  7504. "__type__": "CCPropertyOverrideInfo",
  7505. "targetInfo": {
  7506. "__id__": 414
  7507. },
  7508. "propertyPath": [
  7509. "position"
  7510. ],
  7511. "value": {
  7512. "__type__": "cc.Vec3",
  7513. "x": -195,
  7514. "y": 0,
  7515. "z": 0
  7516. }
  7517. },
  7518. {
  7519. "__type__": "cc.TargetInfo",
  7520. "localID": [
  7521. "1aPJHryMNJsKdSamroaKqp"
  7522. ]
  7523. },
  7524. {
  7525. "__type__": "CCPropertyOverrideInfo",
  7526. "targetInfo": {
  7527. "__id__": 416
  7528. },
  7529. "propertyPath": [
  7530. "name"
  7531. ],
  7532. "value": "RoleNode_4"
  7533. },
  7534. {
  7535. "__type__": "cc.TargetInfo",
  7536. "localID": [
  7537. "1aPJHryMNJsKdSamroaKqp"
  7538. ]
  7539. },
  7540. {
  7541. "__type__": "CCPropertyOverrideInfo",
  7542. "targetInfo": {
  7543. "__id__": 418
  7544. },
  7545. "propertyPath": [
  7546. "position"
  7547. ],
  7548. "value": {
  7549. "__type__": "cc.Vec3",
  7550. "x": 0,
  7551. "y": -41,
  7552. "z": 0
  7553. }
  7554. },
  7555. {
  7556. "__type__": "cc.TargetInfo",
  7557. "localID": [
  7558. "1fxm5oT9REcbVkzJnpIjGA"
  7559. ]
  7560. },
  7561. {
  7562. "__type__": "CCPropertyOverrideInfo",
  7563. "targetInfo": {
  7564. "__id__": 420
  7565. },
  7566. "propertyPath": [
  7567. "rotation"
  7568. ],
  7569. "value": {
  7570. "__type__": "cc.Quat",
  7571. "x": 0,
  7572. "y": 0,
  7573. "z": 0,
  7574. "w": 1
  7575. }
  7576. },
  7577. {
  7578. "__type__": "cc.TargetInfo",
  7579. "localID": [
  7580. "1aPJHryMNJsKdSamroaKqp"
  7581. ]
  7582. },
  7583. {
  7584. "__type__": "CCPropertyOverrideInfo",
  7585. "targetInfo": {
  7586. "__id__": 422
  7587. },
  7588. "propertyPath": [
  7589. "scale"
  7590. ],
  7591. "value": {
  7592. "__type__": "cc.Vec3",
  7593. "x": 1,
  7594. "y": 1,
  7595. "z": 1
  7596. }
  7597. },
  7598. {
  7599. "__type__": "cc.TargetInfo",
  7600. "localID": [
  7601. "1aPJHryMNJsKdSamroaKqp"
  7602. ]
  7603. },
  7604. {
  7605. "__type__": "CCPropertyOverrideInfo",
  7606. "targetInfo": {
  7607. "__id__": 424
  7608. },
  7609. "propertyPath": [
  7610. "position"
  7611. ],
  7612. "value": {
  7613. "__type__": "cc.Vec3",
  7614. "x": 0,
  7615. "y": -92.5,
  7616. "z": 0
  7617. }
  7618. },
  7619. {
  7620. "__type__": "cc.TargetInfo",
  7621. "localID": [
  7622. "5eHLPYrtJMZYHbv+qXp6L5"
  7623. ]
  7624. },
  7625. {
  7626. "__type__": "cc.Node",
  7627. "_objFlags": 0,
  7628. "_parent": {
  7629. "__id__": 364
  7630. },
  7631. "_prefab": {
  7632. "__id__": 426
  7633. },
  7634. "_id": "12pe6zcEVEVL5sxWhS2b6+"
  7635. },
  7636. {
  7637. "__type__": "cc.PrefabInfo",
  7638. "root": {
  7639. "__id__": 425
  7640. },
  7641. "asset": {
  7642. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  7643. },
  7644. "fileId": "1aPJHryMNJsKdSamroaKqp",
  7645. "instance": {
  7646. "__id__": 427
  7647. }
  7648. },
  7649. {
  7650. "__type__": "cc.PrefabInstance",
  7651. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  7652. "mountedChildren": [],
  7653. "propertyOverrides": [
  7654. {
  7655. "__id__": 428
  7656. },
  7657. {
  7658. "__id__": 430
  7659. },
  7660. {
  7661. "__id__": 432
  7662. },
  7663. {
  7664. "__id__": 434
  7665. },
  7666. {
  7667. "__id__": 436
  7668. },
  7669. {
  7670. "__id__": 438
  7671. }
  7672. ],
  7673. "removedComponents": []
  7674. },
  7675. {
  7676. "__type__": "CCPropertyOverrideInfo",
  7677. "targetInfo": {
  7678. "__id__": 429
  7679. },
  7680. "propertyPath": [
  7681. "position"
  7682. ],
  7683. "value": {
  7684. "__type__": "cc.Vec3",
  7685. "x": -65,
  7686. "y": 0,
  7687. "z": 0
  7688. }
  7689. },
  7690. {
  7691. "__type__": "cc.TargetInfo",
  7692. "localID": [
  7693. "1aPJHryMNJsKdSamroaKqp"
  7694. ]
  7695. },
  7696. {
  7697. "__type__": "CCPropertyOverrideInfo",
  7698. "targetInfo": {
  7699. "__id__": 431
  7700. },
  7701. "propertyPath": [
  7702. "name"
  7703. ],
  7704. "value": "RoleNode_5"
  7705. },
  7706. {
  7707. "__type__": "cc.TargetInfo",
  7708. "localID": [
  7709. "1aPJHryMNJsKdSamroaKqp"
  7710. ]
  7711. },
  7712. {
  7713. "__type__": "CCPropertyOverrideInfo",
  7714. "targetInfo": {
  7715. "__id__": 433
  7716. },
  7717. "propertyPath": [
  7718. "position"
  7719. ],
  7720. "value": {
  7721. "__type__": "cc.Vec3",
  7722. "x": 0,
  7723. "y": -41,
  7724. "z": 0
  7725. }
  7726. },
  7727. {
  7728. "__type__": "cc.TargetInfo",
  7729. "localID": [
  7730. "1fxm5oT9REcbVkzJnpIjGA"
  7731. ]
  7732. },
  7733. {
  7734. "__type__": "CCPropertyOverrideInfo",
  7735. "targetInfo": {
  7736. "__id__": 435
  7737. },
  7738. "propertyPath": [
  7739. "rotation"
  7740. ],
  7741. "value": {
  7742. "__type__": "cc.Quat",
  7743. "x": 0,
  7744. "y": 0,
  7745. "z": 0,
  7746. "w": 1
  7747. }
  7748. },
  7749. {
  7750. "__type__": "cc.TargetInfo",
  7751. "localID": [
  7752. "1aPJHryMNJsKdSamroaKqp"
  7753. ]
  7754. },
  7755. {
  7756. "__type__": "CCPropertyOverrideInfo",
  7757. "targetInfo": {
  7758. "__id__": 437
  7759. },
  7760. "propertyPath": [
  7761. "scale"
  7762. ],
  7763. "value": {
  7764. "__type__": "cc.Vec3",
  7765. "x": 1,
  7766. "y": 1,
  7767. "z": 1
  7768. }
  7769. },
  7770. {
  7771. "__type__": "cc.TargetInfo",
  7772. "localID": [
  7773. "1aPJHryMNJsKdSamroaKqp"
  7774. ]
  7775. },
  7776. {
  7777. "__type__": "CCPropertyOverrideInfo",
  7778. "targetInfo": {
  7779. "__id__": 439
  7780. },
  7781. "propertyPath": [
  7782. "position"
  7783. ],
  7784. "value": {
  7785. "__type__": "cc.Vec3",
  7786. "x": 0,
  7787. "y": -92.5,
  7788. "z": 0
  7789. }
  7790. },
  7791. {
  7792. "__type__": "cc.TargetInfo",
  7793. "localID": [
  7794. "5eHLPYrtJMZYHbv+qXp6L5"
  7795. ]
  7796. },
  7797. {
  7798. "__type__": "cc.Node",
  7799. "_objFlags": 0,
  7800. "_parent": {
  7801. "__id__": 364
  7802. },
  7803. "_prefab": {
  7804. "__id__": 441
  7805. },
  7806. "_id": "82GVGikrdKe7uNbYZB9enu"
  7807. },
  7808. {
  7809. "__type__": "cc.PrefabInfo",
  7810. "root": {
  7811. "__id__": 440
  7812. },
  7813. "asset": {
  7814. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  7815. },
  7816. "fileId": "1aPJHryMNJsKdSamroaKqp",
  7817. "instance": {
  7818. "__id__": 442
  7819. }
  7820. },
  7821. {
  7822. "__type__": "cc.PrefabInstance",
  7823. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  7824. "mountedChildren": [],
  7825. "propertyOverrides": [
  7826. {
  7827. "__id__": 443
  7828. },
  7829. {
  7830. "__id__": 445
  7831. },
  7832. {
  7833. "__id__": 447
  7834. },
  7835. {
  7836. "__id__": 449
  7837. },
  7838. {
  7839. "__id__": 451
  7840. },
  7841. {
  7842. "__id__": 453
  7843. }
  7844. ],
  7845. "removedComponents": []
  7846. },
  7847. {
  7848. "__type__": "CCPropertyOverrideInfo",
  7849. "targetInfo": {
  7850. "__id__": 444
  7851. },
  7852. "propertyPath": [
  7853. "position"
  7854. ],
  7855. "value": {
  7856. "__type__": "cc.Vec3",
  7857. "x": 65,
  7858. "y": 0,
  7859. "z": 0
  7860. }
  7861. },
  7862. {
  7863. "__type__": "cc.TargetInfo",
  7864. "localID": [
  7865. "1aPJHryMNJsKdSamroaKqp"
  7866. ]
  7867. },
  7868. {
  7869. "__type__": "CCPropertyOverrideInfo",
  7870. "targetInfo": {
  7871. "__id__": 446
  7872. },
  7873. "propertyPath": [
  7874. "name"
  7875. ],
  7876. "value": "RoleNode_6"
  7877. },
  7878. {
  7879. "__type__": "cc.TargetInfo",
  7880. "localID": [
  7881. "1aPJHryMNJsKdSamroaKqp"
  7882. ]
  7883. },
  7884. {
  7885. "__type__": "CCPropertyOverrideInfo",
  7886. "targetInfo": {
  7887. "__id__": 448
  7888. },
  7889. "propertyPath": [
  7890. "position"
  7891. ],
  7892. "value": {
  7893. "__type__": "cc.Vec3",
  7894. "x": 0,
  7895. "y": -41,
  7896. "z": 0
  7897. }
  7898. },
  7899. {
  7900. "__type__": "cc.TargetInfo",
  7901. "localID": [
  7902. "1fxm5oT9REcbVkzJnpIjGA"
  7903. ]
  7904. },
  7905. {
  7906. "__type__": "CCPropertyOverrideInfo",
  7907. "targetInfo": {
  7908. "__id__": 450
  7909. },
  7910. "propertyPath": [
  7911. "rotation"
  7912. ],
  7913. "value": {
  7914. "__type__": "cc.Quat",
  7915. "x": 0,
  7916. "y": 0,
  7917. "z": 0,
  7918. "w": 1
  7919. }
  7920. },
  7921. {
  7922. "__type__": "cc.TargetInfo",
  7923. "localID": [
  7924. "1aPJHryMNJsKdSamroaKqp"
  7925. ]
  7926. },
  7927. {
  7928. "__type__": "CCPropertyOverrideInfo",
  7929. "targetInfo": {
  7930. "__id__": 452
  7931. },
  7932. "propertyPath": [
  7933. "scale"
  7934. ],
  7935. "value": {
  7936. "__type__": "cc.Vec3",
  7937. "x": 1,
  7938. "y": 1,
  7939. "z": 1
  7940. }
  7941. },
  7942. {
  7943. "__type__": "cc.TargetInfo",
  7944. "localID": [
  7945. "1aPJHryMNJsKdSamroaKqp"
  7946. ]
  7947. },
  7948. {
  7949. "__type__": "CCPropertyOverrideInfo",
  7950. "targetInfo": {
  7951. "__id__": 454
  7952. },
  7953. "propertyPath": [
  7954. "position"
  7955. ],
  7956. "value": {
  7957. "__type__": "cc.Vec3",
  7958. "x": 0,
  7959. "y": -92.5,
  7960. "z": 0
  7961. }
  7962. },
  7963. {
  7964. "__type__": "cc.TargetInfo",
  7965. "localID": [
  7966. "5eHLPYrtJMZYHbv+qXp6L5"
  7967. ]
  7968. },
  7969. {
  7970. "__type__": "cc.Node",
  7971. "_objFlags": 0,
  7972. "_parent": {
  7973. "__id__": 364
  7974. },
  7975. "_prefab": {
  7976. "__id__": 456
  7977. },
  7978. "_id": "1euwDCZLZOnbxVmuD4XSJ+"
  7979. },
  7980. {
  7981. "__type__": "cc.PrefabInfo",
  7982. "root": {
  7983. "__id__": 455
  7984. },
  7985. "asset": {
  7986. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  7987. },
  7988. "fileId": "1aPJHryMNJsKdSamroaKqp",
  7989. "instance": {
  7990. "__id__": 457
  7991. }
  7992. },
  7993. {
  7994. "__type__": "cc.PrefabInstance",
  7995. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  7996. "mountedChildren": [],
  7997. "propertyOverrides": [
  7998. {
  7999. "__id__": 458
  8000. },
  8001. {
  8002. "__id__": 460
  8003. },
  8004. {
  8005. "__id__": 462
  8006. },
  8007. {
  8008. "__id__": 464
  8009. },
  8010. {
  8011. "__id__": 466
  8012. },
  8013. {
  8014. "__id__": 468
  8015. }
  8016. ],
  8017. "removedComponents": []
  8018. },
  8019. {
  8020. "__type__": "CCPropertyOverrideInfo",
  8021. "targetInfo": {
  8022. "__id__": 459
  8023. },
  8024. "propertyPath": [
  8025. "position"
  8026. ],
  8027. "value": {
  8028. "__type__": "cc.Vec3",
  8029. "x": 195,
  8030. "y": 0,
  8031. "z": 0
  8032. }
  8033. },
  8034. {
  8035. "__type__": "cc.TargetInfo",
  8036. "localID": [
  8037. "1aPJHryMNJsKdSamroaKqp"
  8038. ]
  8039. },
  8040. {
  8041. "__type__": "CCPropertyOverrideInfo",
  8042. "targetInfo": {
  8043. "__id__": 461
  8044. },
  8045. "propertyPath": [
  8046. "name"
  8047. ],
  8048. "value": "RoleNode_7"
  8049. },
  8050. {
  8051. "__type__": "cc.TargetInfo",
  8052. "localID": [
  8053. "1aPJHryMNJsKdSamroaKqp"
  8054. ]
  8055. },
  8056. {
  8057. "__type__": "CCPropertyOverrideInfo",
  8058. "targetInfo": {
  8059. "__id__": 463
  8060. },
  8061. "propertyPath": [
  8062. "position"
  8063. ],
  8064. "value": {
  8065. "__type__": "cc.Vec3",
  8066. "x": 0,
  8067. "y": -41,
  8068. "z": 0
  8069. }
  8070. },
  8071. {
  8072. "__type__": "cc.TargetInfo",
  8073. "localID": [
  8074. "1fxm5oT9REcbVkzJnpIjGA"
  8075. ]
  8076. },
  8077. {
  8078. "__type__": "CCPropertyOverrideInfo",
  8079. "targetInfo": {
  8080. "__id__": 465
  8081. },
  8082. "propertyPath": [
  8083. "rotation"
  8084. ],
  8085. "value": {
  8086. "__type__": "cc.Quat",
  8087. "x": 0,
  8088. "y": 0,
  8089. "z": 0,
  8090. "w": 1
  8091. }
  8092. },
  8093. {
  8094. "__type__": "cc.TargetInfo",
  8095. "localID": [
  8096. "1aPJHryMNJsKdSamroaKqp"
  8097. ]
  8098. },
  8099. {
  8100. "__type__": "CCPropertyOverrideInfo",
  8101. "targetInfo": {
  8102. "__id__": 467
  8103. },
  8104. "propertyPath": [
  8105. "scale"
  8106. ],
  8107. "value": {
  8108. "__type__": "cc.Vec3",
  8109. "x": 1,
  8110. "y": 1,
  8111. "z": 1
  8112. }
  8113. },
  8114. {
  8115. "__type__": "cc.TargetInfo",
  8116. "localID": [
  8117. "1aPJHryMNJsKdSamroaKqp"
  8118. ]
  8119. },
  8120. {
  8121. "__type__": "CCPropertyOverrideInfo",
  8122. "targetInfo": {
  8123. "__id__": 469
  8124. },
  8125. "propertyPath": [
  8126. "position"
  8127. ],
  8128. "value": {
  8129. "__type__": "cc.Vec3",
  8130. "x": 0,
  8131. "y": -92.5,
  8132. "z": 0
  8133. }
  8134. },
  8135. {
  8136. "__type__": "cc.TargetInfo",
  8137. "localID": [
  8138. "5eHLPYrtJMZYHbv+qXp6L5"
  8139. ]
  8140. },
  8141. {
  8142. "__type__": "cc.Node",
  8143. "_objFlags": 0,
  8144. "_parent": {
  8145. "__id__": 364
  8146. },
  8147. "_prefab": {
  8148. "__id__": 471
  8149. },
  8150. "_id": "5a3m3Y9B1N67ZQQvbM9SnV"
  8151. },
  8152. {
  8153. "__type__": "cc.PrefabInfo",
  8154. "root": {
  8155. "__id__": 470
  8156. },
  8157. "asset": {
  8158. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  8159. },
  8160. "fileId": "1aPJHryMNJsKdSamroaKqp",
  8161. "instance": {
  8162. "__id__": 472
  8163. }
  8164. },
  8165. {
  8166. "__type__": "cc.PrefabInstance",
  8167. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  8168. "mountedChildren": [],
  8169. "propertyOverrides": [
  8170. {
  8171. "__id__": 473
  8172. },
  8173. {
  8174. "__id__": 475
  8175. },
  8176. {
  8177. "__id__": 477
  8178. },
  8179. {
  8180. "__id__": 479
  8181. },
  8182. {
  8183. "__id__": 481
  8184. },
  8185. {
  8186. "__id__": 483
  8187. }
  8188. ],
  8189. "removedComponents": []
  8190. },
  8191. {
  8192. "__type__": "CCPropertyOverrideInfo",
  8193. "targetInfo": {
  8194. "__id__": 474
  8195. },
  8196. "propertyPath": [
  8197. "position"
  8198. ],
  8199. "value": {
  8200. "__type__": "cc.Vec3",
  8201. "x": -195,
  8202. "y": -230,
  8203. "z": 0
  8204. }
  8205. },
  8206. {
  8207. "__type__": "cc.TargetInfo",
  8208. "localID": [
  8209. "1aPJHryMNJsKdSamroaKqp"
  8210. ]
  8211. },
  8212. {
  8213. "__type__": "CCPropertyOverrideInfo",
  8214. "targetInfo": {
  8215. "__id__": 476
  8216. },
  8217. "propertyPath": [
  8218. "name"
  8219. ],
  8220. "value": "RoleNode_8"
  8221. },
  8222. {
  8223. "__type__": "cc.TargetInfo",
  8224. "localID": [
  8225. "1aPJHryMNJsKdSamroaKqp"
  8226. ]
  8227. },
  8228. {
  8229. "__type__": "CCPropertyOverrideInfo",
  8230. "targetInfo": {
  8231. "__id__": 478
  8232. },
  8233. "propertyPath": [
  8234. "position"
  8235. ],
  8236. "value": {
  8237. "__type__": "cc.Vec3",
  8238. "x": 0,
  8239. "y": -41,
  8240. "z": 0
  8241. }
  8242. },
  8243. {
  8244. "__type__": "cc.TargetInfo",
  8245. "localID": [
  8246. "1fxm5oT9REcbVkzJnpIjGA"
  8247. ]
  8248. },
  8249. {
  8250. "__type__": "CCPropertyOverrideInfo",
  8251. "targetInfo": {
  8252. "__id__": 480
  8253. },
  8254. "propertyPath": [
  8255. "rotation"
  8256. ],
  8257. "value": {
  8258. "__type__": "cc.Quat",
  8259. "x": 0,
  8260. "y": 0,
  8261. "z": 0,
  8262. "w": 1
  8263. }
  8264. },
  8265. {
  8266. "__type__": "cc.TargetInfo",
  8267. "localID": [
  8268. "1aPJHryMNJsKdSamroaKqp"
  8269. ]
  8270. },
  8271. {
  8272. "__type__": "CCPropertyOverrideInfo",
  8273. "targetInfo": {
  8274. "__id__": 482
  8275. },
  8276. "propertyPath": [
  8277. "scale"
  8278. ],
  8279. "value": {
  8280. "__type__": "cc.Vec3",
  8281. "x": 1,
  8282. "y": 1,
  8283. "z": 1
  8284. }
  8285. },
  8286. {
  8287. "__type__": "cc.TargetInfo",
  8288. "localID": [
  8289. "1aPJHryMNJsKdSamroaKqp"
  8290. ]
  8291. },
  8292. {
  8293. "__type__": "CCPropertyOverrideInfo",
  8294. "targetInfo": {
  8295. "__id__": 484
  8296. },
  8297. "propertyPath": [
  8298. "position"
  8299. ],
  8300. "value": {
  8301. "__type__": "cc.Vec3",
  8302. "x": 0,
  8303. "y": -92.5,
  8304. "z": 0
  8305. }
  8306. },
  8307. {
  8308. "__type__": "cc.TargetInfo",
  8309. "localID": [
  8310. "5eHLPYrtJMZYHbv+qXp6L5"
  8311. ]
  8312. },
  8313. {
  8314. "__type__": "cc.Node",
  8315. "_objFlags": 0,
  8316. "_parent": {
  8317. "__id__": 364
  8318. },
  8319. "_prefab": {
  8320. "__id__": 486
  8321. },
  8322. "_id": "62b2rH31lAeJDBA7UNmAbF"
  8323. },
  8324. {
  8325. "__type__": "cc.PrefabInfo",
  8326. "root": {
  8327. "__id__": 485
  8328. },
  8329. "asset": {
  8330. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  8331. },
  8332. "fileId": "1aPJHryMNJsKdSamroaKqp",
  8333. "instance": {
  8334. "__id__": 487
  8335. }
  8336. },
  8337. {
  8338. "__type__": "cc.PrefabInstance",
  8339. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  8340. "mountedChildren": [],
  8341. "propertyOverrides": [
  8342. {
  8343. "__id__": 488
  8344. },
  8345. {
  8346. "__id__": 490
  8347. },
  8348. {
  8349. "__id__": 492
  8350. },
  8351. {
  8352. "__id__": 494
  8353. },
  8354. {
  8355. "__id__": 496
  8356. },
  8357. {
  8358. "__id__": 498
  8359. }
  8360. ],
  8361. "removedComponents": []
  8362. },
  8363. {
  8364. "__type__": "CCPropertyOverrideInfo",
  8365. "targetInfo": {
  8366. "__id__": 489
  8367. },
  8368. "propertyPath": [
  8369. "position"
  8370. ],
  8371. "value": {
  8372. "__type__": "cc.Vec3",
  8373. "x": -65,
  8374. "y": -230,
  8375. "z": 0
  8376. }
  8377. },
  8378. {
  8379. "__type__": "cc.TargetInfo",
  8380. "localID": [
  8381. "1aPJHryMNJsKdSamroaKqp"
  8382. ]
  8383. },
  8384. {
  8385. "__type__": "CCPropertyOverrideInfo",
  8386. "targetInfo": {
  8387. "__id__": 491
  8388. },
  8389. "propertyPath": [
  8390. "name"
  8391. ],
  8392. "value": "RoleNode_9"
  8393. },
  8394. {
  8395. "__type__": "cc.TargetInfo",
  8396. "localID": [
  8397. "1aPJHryMNJsKdSamroaKqp"
  8398. ]
  8399. },
  8400. {
  8401. "__type__": "CCPropertyOverrideInfo",
  8402. "targetInfo": {
  8403. "__id__": 493
  8404. },
  8405. "propertyPath": [
  8406. "position"
  8407. ],
  8408. "value": {
  8409. "__type__": "cc.Vec3",
  8410. "x": 0,
  8411. "y": -41,
  8412. "z": 0
  8413. }
  8414. },
  8415. {
  8416. "__type__": "cc.TargetInfo",
  8417. "localID": [
  8418. "1fxm5oT9REcbVkzJnpIjGA"
  8419. ]
  8420. },
  8421. {
  8422. "__type__": "CCPropertyOverrideInfo",
  8423. "targetInfo": {
  8424. "__id__": 495
  8425. },
  8426. "propertyPath": [
  8427. "rotation"
  8428. ],
  8429. "value": {
  8430. "__type__": "cc.Quat",
  8431. "x": 0,
  8432. "y": 0,
  8433. "z": 0,
  8434. "w": 1
  8435. }
  8436. },
  8437. {
  8438. "__type__": "cc.TargetInfo",
  8439. "localID": [
  8440. "1aPJHryMNJsKdSamroaKqp"
  8441. ]
  8442. },
  8443. {
  8444. "__type__": "CCPropertyOverrideInfo",
  8445. "targetInfo": {
  8446. "__id__": 497
  8447. },
  8448. "propertyPath": [
  8449. "scale"
  8450. ],
  8451. "value": {
  8452. "__type__": "cc.Vec3",
  8453. "x": 1,
  8454. "y": 1,
  8455. "z": 1
  8456. }
  8457. },
  8458. {
  8459. "__type__": "cc.TargetInfo",
  8460. "localID": [
  8461. "1aPJHryMNJsKdSamroaKqp"
  8462. ]
  8463. },
  8464. {
  8465. "__type__": "CCPropertyOverrideInfo",
  8466. "targetInfo": {
  8467. "__id__": 499
  8468. },
  8469. "propertyPath": [
  8470. "position"
  8471. ],
  8472. "value": {
  8473. "__type__": "cc.Vec3",
  8474. "x": 0,
  8475. "y": -92.5,
  8476. "z": 0
  8477. }
  8478. },
  8479. {
  8480. "__type__": "cc.TargetInfo",
  8481. "localID": [
  8482. "5eHLPYrtJMZYHbv+qXp6L5"
  8483. ]
  8484. },
  8485. {
  8486. "__type__": "cc.Node",
  8487. "_objFlags": 0,
  8488. "_parent": {
  8489. "__id__": 364
  8490. },
  8491. "_prefab": {
  8492. "__id__": 501
  8493. },
  8494. "_id": "9fKiH/Q2ZLXpX7XApUa6f8"
  8495. },
  8496. {
  8497. "__type__": "cc.PrefabInfo",
  8498. "root": {
  8499. "__id__": 500
  8500. },
  8501. "asset": {
  8502. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  8503. },
  8504. "fileId": "1aPJHryMNJsKdSamroaKqp",
  8505. "instance": {
  8506. "__id__": 502
  8507. }
  8508. },
  8509. {
  8510. "__type__": "cc.PrefabInstance",
  8511. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  8512. "mountedChildren": [],
  8513. "propertyOverrides": [
  8514. {
  8515. "__id__": 503
  8516. },
  8517. {
  8518. "__id__": 505
  8519. },
  8520. {
  8521. "__id__": 507
  8522. },
  8523. {
  8524. "__id__": 509
  8525. },
  8526. {
  8527. "__id__": 511
  8528. },
  8529. {
  8530. "__id__": 513
  8531. }
  8532. ],
  8533. "removedComponents": []
  8534. },
  8535. {
  8536. "__type__": "CCPropertyOverrideInfo",
  8537. "targetInfo": {
  8538. "__id__": 504
  8539. },
  8540. "propertyPath": [
  8541. "position"
  8542. ],
  8543. "value": {
  8544. "__type__": "cc.Vec3",
  8545. "x": 65,
  8546. "y": -230,
  8547. "z": 0
  8548. }
  8549. },
  8550. {
  8551. "__type__": "cc.TargetInfo",
  8552. "localID": [
  8553. "1aPJHryMNJsKdSamroaKqp"
  8554. ]
  8555. },
  8556. {
  8557. "__type__": "CCPropertyOverrideInfo",
  8558. "targetInfo": {
  8559. "__id__": 506
  8560. },
  8561. "propertyPath": [
  8562. "name"
  8563. ],
  8564. "value": "RoleNode_10"
  8565. },
  8566. {
  8567. "__type__": "cc.TargetInfo",
  8568. "localID": [
  8569. "1aPJHryMNJsKdSamroaKqp"
  8570. ]
  8571. },
  8572. {
  8573. "__type__": "CCPropertyOverrideInfo",
  8574. "targetInfo": {
  8575. "__id__": 508
  8576. },
  8577. "propertyPath": [
  8578. "position"
  8579. ],
  8580. "value": {
  8581. "__type__": "cc.Vec3",
  8582. "x": 0,
  8583. "y": -41,
  8584. "z": 0
  8585. }
  8586. },
  8587. {
  8588. "__type__": "cc.TargetInfo",
  8589. "localID": [
  8590. "1fxm5oT9REcbVkzJnpIjGA"
  8591. ]
  8592. },
  8593. {
  8594. "__type__": "CCPropertyOverrideInfo",
  8595. "targetInfo": {
  8596. "__id__": 510
  8597. },
  8598. "propertyPath": [
  8599. "rotation"
  8600. ],
  8601. "value": {
  8602. "__type__": "cc.Quat",
  8603. "x": 0,
  8604. "y": 0,
  8605. "z": 0,
  8606. "w": 1
  8607. }
  8608. },
  8609. {
  8610. "__type__": "cc.TargetInfo",
  8611. "localID": [
  8612. "1aPJHryMNJsKdSamroaKqp"
  8613. ]
  8614. },
  8615. {
  8616. "__type__": "CCPropertyOverrideInfo",
  8617. "targetInfo": {
  8618. "__id__": 512
  8619. },
  8620. "propertyPath": [
  8621. "scale"
  8622. ],
  8623. "value": {
  8624. "__type__": "cc.Vec3",
  8625. "x": 1,
  8626. "y": 1,
  8627. "z": 1
  8628. }
  8629. },
  8630. {
  8631. "__type__": "cc.TargetInfo",
  8632. "localID": [
  8633. "1aPJHryMNJsKdSamroaKqp"
  8634. ]
  8635. },
  8636. {
  8637. "__type__": "CCPropertyOverrideInfo",
  8638. "targetInfo": {
  8639. "__id__": 514
  8640. },
  8641. "propertyPath": [
  8642. "position"
  8643. ],
  8644. "value": {
  8645. "__type__": "cc.Vec3",
  8646. "x": 0,
  8647. "y": -92.5,
  8648. "z": 0
  8649. }
  8650. },
  8651. {
  8652. "__type__": "cc.TargetInfo",
  8653. "localID": [
  8654. "5eHLPYrtJMZYHbv+qXp6L5"
  8655. ]
  8656. },
  8657. {
  8658. "__type__": "cc.Node",
  8659. "_objFlags": 0,
  8660. "_parent": {
  8661. "__id__": 364
  8662. },
  8663. "_prefab": {
  8664. "__id__": 516
  8665. },
  8666. "_id": "0eWzc0FdxLEau4t5AHv/Et"
  8667. },
  8668. {
  8669. "__type__": "cc.PrefabInfo",
  8670. "root": {
  8671. "__id__": 515
  8672. },
  8673. "asset": {
  8674. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  8675. },
  8676. "fileId": "1aPJHryMNJsKdSamroaKqp",
  8677. "instance": {
  8678. "__id__": 517
  8679. }
  8680. },
  8681. {
  8682. "__type__": "cc.PrefabInstance",
  8683. "fileId": "2cBF25ZelFbLsUGKrrf9ZA",
  8684. "mountedChildren": [],
  8685. "propertyOverrides": [
  8686. {
  8687. "__id__": 518
  8688. },
  8689. {
  8690. "__id__": 520
  8691. },
  8692. {
  8693. "__id__": 522
  8694. },
  8695. {
  8696. "__id__": 524
  8697. },
  8698. {
  8699. "__id__": 526
  8700. },
  8701. {
  8702. "__id__": 528
  8703. }
  8704. ],
  8705. "removedComponents": []
  8706. },
  8707. {
  8708. "__type__": "CCPropertyOverrideInfo",
  8709. "targetInfo": {
  8710. "__id__": 519
  8711. },
  8712. "propertyPath": [
  8713. "position"
  8714. ],
  8715. "value": {
  8716. "__type__": "cc.Vec3",
  8717. "x": 195,
  8718. "y": -230,
  8719. "z": 0
  8720. }
  8721. },
  8722. {
  8723. "__type__": "cc.TargetInfo",
  8724. "localID": [
  8725. "1aPJHryMNJsKdSamroaKqp"
  8726. ]
  8727. },
  8728. {
  8729. "__type__": "CCPropertyOverrideInfo",
  8730. "targetInfo": {
  8731. "__id__": 521
  8732. },
  8733. "propertyPath": [
  8734. "name"
  8735. ],
  8736. "value": "RoleNode_11"
  8737. },
  8738. {
  8739. "__type__": "cc.TargetInfo",
  8740. "localID": [
  8741. "1aPJHryMNJsKdSamroaKqp"
  8742. ]
  8743. },
  8744. {
  8745. "__type__": "CCPropertyOverrideInfo",
  8746. "targetInfo": {
  8747. "__id__": 523
  8748. },
  8749. "propertyPath": [
  8750. "position"
  8751. ],
  8752. "value": {
  8753. "__type__": "cc.Vec3",
  8754. "x": 0,
  8755. "y": -41,
  8756. "z": 0
  8757. }
  8758. },
  8759. {
  8760. "__type__": "cc.TargetInfo",
  8761. "localID": [
  8762. "1fxm5oT9REcbVkzJnpIjGA"
  8763. ]
  8764. },
  8765. {
  8766. "__type__": "CCPropertyOverrideInfo",
  8767. "targetInfo": {
  8768. "__id__": 525
  8769. },
  8770. "propertyPath": [
  8771. "rotation"
  8772. ],
  8773. "value": {
  8774. "__type__": "cc.Quat",
  8775. "x": 0,
  8776. "y": 0,
  8777. "z": 0,
  8778. "w": 1
  8779. }
  8780. },
  8781. {
  8782. "__type__": "cc.TargetInfo",
  8783. "localID": [
  8784. "1aPJHryMNJsKdSamroaKqp"
  8785. ]
  8786. },
  8787. {
  8788. "__type__": "CCPropertyOverrideInfo",
  8789. "targetInfo": {
  8790. "__id__": 527
  8791. },
  8792. "propertyPath": [
  8793. "scale"
  8794. ],
  8795. "value": {
  8796. "__type__": "cc.Vec3",
  8797. "x": 1,
  8798. "y": 1,
  8799. "z": 1
  8800. }
  8801. },
  8802. {
  8803. "__type__": "cc.TargetInfo",
  8804. "localID": [
  8805. "1aPJHryMNJsKdSamroaKqp"
  8806. ]
  8807. },
  8808. {
  8809. "__type__": "CCPropertyOverrideInfo",
  8810. "targetInfo": {
  8811. "__id__": 529
  8812. },
  8813. "propertyPath": [
  8814. "position"
  8815. ],
  8816. "value": {
  8817. "__type__": "cc.Vec3",
  8818. "x": 0,
  8819. "y": -92.5,
  8820. "z": 0
  8821. }
  8822. },
  8823. {
  8824. "__type__": "cc.TargetInfo",
  8825. "localID": [
  8826. "5eHLPYrtJMZYHbv+qXp6L5"
  8827. ]
  8828. },
  8829. {
  8830. "__type__": "cc.UITransform",
  8831. "_name": "",
  8832. "_objFlags": 0,
  8833. "node": {
  8834. "__id__": 364
  8835. },
  8836. "_enabled": true,
  8837. "__prefab": null,
  8838. "_priority": 0,
  8839. "_contentSize": {
  8840. "__type__": "cc.Size",
  8841. "width": 520,
  8842. "height": 660
  8843. },
  8844. "_anchorPoint": {
  8845. "__type__": "cc.Vec2",
  8846. "x": 0.5,
  8847. "y": 0.5
  8848. },
  8849. "_id": "b3v/N/2h9NaIl519ntp100"
  8850. },
  8851. {
  8852. "__type__": "cc.Layout",
  8853. "_name": "",
  8854. "_objFlags": 0,
  8855. "node": {
  8856. "__id__": 364
  8857. },
  8858. "_enabled": true,
  8859. "__prefab": null,
  8860. "_resizeMode": 1,
  8861. "_layoutType": 3,
  8862. "_cellSize": {
  8863. "__type__": "cc.Size",
  8864. "width": 40,
  8865. "height": 40
  8866. },
  8867. "_startAxis": 0,
  8868. "_paddingLeft": 0,
  8869. "_paddingRight": 0,
  8870. "_paddingTop": 0,
  8871. "_paddingBottom": 0,
  8872. "_spacingX": 0,
  8873. "_spacingY": 30,
  8874. "_verticalDirection": 1,
  8875. "_horizontalDirection": 0,
  8876. "_constraint": 2,
  8877. "_constraintNum": 4,
  8878. "_affectedByScale": false,
  8879. "_isAlign": true,
  8880. "_id": "9daAoI3xpCOapD7Up0GEQR"
  8881. },
  8882. {
  8883. "__type__": "cc.Widget",
  8884. "_name": "",
  8885. "_objFlags": 0,
  8886. "node": {
  8887. "__id__": 364
  8888. },
  8889. "_enabled": true,
  8890. "__prefab": null,
  8891. "_alignFlags": 18,
  8892. "_target": null,
  8893. "_left": 225,
  8894. "_right": 225,
  8895. "_top": 0,
  8896. "_bottom": 230,
  8897. "_horizontalCenter": 0,
  8898. "_verticalCenter": 0,
  8899. "_isAbsLeft": true,
  8900. "_isAbsRight": true,
  8901. "_isAbsTop": true,
  8902. "_isAbsBottom": true,
  8903. "_isAbsHorizontalCenter": true,
  8904. "_isAbsVerticalCenter": true,
  8905. "_originalWidth": 300,
  8906. "_originalHeight": 0,
  8907. "_alignMode": 2,
  8908. "_lockFlags": 0,
  8909. "_id": "baBUDRUKBDS4QQtc8jPkT1"
  8910. },
  8911. {
  8912. "__type__": "cc.PrefabInfo",
  8913. "root": {
  8914. "__id__": 363
  8915. },
  8916. "asset": {
  8917. "__uuid__": "10f977e1-0644-4c12-b63e-c9d0879ec924"
  8918. },
  8919. "fileId": "1aPJHryMNJsKdSamroaKqp",
  8920. "instance": {
  8921. "__id__": 534
  8922. }
  8923. },
  8924. {
  8925. "__type__": "cc.PrefabInstance",
  8926. "fileId": "d1q3CrZ4dDhafd8V2Xwjzk",
  8927. "mountedChildren": [],
  8928. "propertyOverrides": [
  8929. {
  8930. "__id__": 535
  8931. },
  8932. {
  8933. "__id__": 537
  8934. },
  8935. {
  8936. "__id__": 539
  8937. },
  8938. {
  8939. "__id__": 541
  8940. },
  8941. {
  8942. "__id__": 543
  8943. },
  8944. {
  8945. "__id__": 545
  8946. }
  8947. ],
  8948. "removedComponents": []
  8949. },
  8950. {
  8951. "__type__": "CCPropertyOverrideInfo",
  8952. "targetInfo": {
  8953. "__id__": 536
  8954. },
  8955. "propertyPath": [
  8956. "name"
  8957. ],
  8958. "value": "RoleNode_0"
  8959. },
  8960. {
  8961. "__type__": "cc.TargetInfo",
  8962. "localID": [
  8963. "1aPJHryMNJsKdSamroaKqp"
  8964. ]
  8965. },
  8966. {
  8967. "__type__": "CCPropertyOverrideInfo",
  8968. "targetInfo": {
  8969. "__id__": 538
  8970. },
  8971. "propertyPath": [
  8972. "position"
  8973. ],
  8974. "value": {
  8975. "__type__": "cc.Vec3",
  8976. "x": -195,
  8977. "y": 230,
  8978. "z": 0
  8979. }
  8980. },
  8981. {
  8982. "__type__": "cc.TargetInfo",
  8983. "localID": [
  8984. "1aPJHryMNJsKdSamroaKqp"
  8985. ]
  8986. },
  8987. {
  8988. "__type__": "CCPropertyOverrideInfo",
  8989. "targetInfo": {
  8990. "__id__": 540
  8991. },
  8992. "propertyPath": [
  8993. "rotation"
  8994. ],
  8995. "value": {
  8996. "__type__": "cc.Quat",
  8997. "x": 0,
  8998. "y": 0,
  8999. "z": 0,
  9000. "w": 1
  9001. }
  9002. },
  9003. {
  9004. "__type__": "cc.TargetInfo",
  9005. "localID": [
  9006. "1aPJHryMNJsKdSamroaKqp"
  9007. ]
  9008. },
  9009. {
  9010. "__type__": "CCPropertyOverrideInfo",
  9011. "targetInfo": {
  9012. "__id__": 542
  9013. },
  9014. "propertyPath": [
  9015. "position"
  9016. ],
  9017. "value": {
  9018. "__type__": "cc.Vec3",
  9019. "x": 0,
  9020. "y": -41,
  9021. "z": 0
  9022. }
  9023. },
  9024. {
  9025. "__type__": "cc.TargetInfo",
  9026. "localID": [
  9027. "1fxm5oT9REcbVkzJnpIjGA"
  9028. ]
  9029. },
  9030. {
  9031. "__type__": "CCPropertyOverrideInfo",
  9032. "targetInfo": {
  9033. "__id__": 544
  9034. },
  9035. "propertyPath": [
  9036. "scale"
  9037. ],
  9038. "value": {
  9039. "__type__": "cc.Vec3",
  9040. "x": 1,
  9041. "y": 1,
  9042. "z": 1
  9043. }
  9044. },
  9045. {
  9046. "__type__": "cc.TargetInfo",
  9047. "localID": [
  9048. "1aPJHryMNJsKdSamroaKqp"
  9049. ]
  9050. },
  9051. {
  9052. "__type__": "CCPropertyOverrideInfo",
  9053. "targetInfo": {
  9054. "__id__": 546
  9055. },
  9056. "propertyPath": [
  9057. "position"
  9058. ],
  9059. "value": {
  9060. "__type__": "cc.Vec3",
  9061. "x": 0,
  9062. "y": -92.5,
  9063. "z": 0
  9064. }
  9065. },
  9066. {
  9067. "__type__": "cc.TargetInfo",
  9068. "localID": [
  9069. "5eHLPYrtJMZYHbv+qXp6L5"
  9070. ]
  9071. },
  9072. {
  9073. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  9074. "_name": "",
  9075. "_objFlags": 0,
  9076. "node": {
  9077. "__id__": 548
  9078. },
  9079. "_enabled": true,
  9080. "__prefab": null,
  9081. "hostAlias": "",
  9082. "withCredentials": false,
  9083. "timeout": 0,
  9084. "responseType": 3,
  9085. "useEncrypt": true,
  9086. "useLog": true,
  9087. "_id": "aabs7UOwpF2auvqKJXXNO8"
  9088. },
  9089. {
  9090. "__type__": "cc.Node",
  9091. "_name": "激励视频",
  9092. "_objFlags": 0,
  9093. "_parent": {
  9094. "__id__": 1
  9095. },
  9096. "_children": [],
  9097. "_active": true,
  9098. "_components": [
  9099. {
  9100. "__id__": 547
  9101. }
  9102. ],
  9103. "_prefab": null,
  9104. "_lpos": {
  9105. "__type__": "cc.Vec3",
  9106. "x": 0,
  9107. "y": 0,
  9108. "z": 0
  9109. },
  9110. "_lrot": {
  9111. "__type__": "cc.Quat",
  9112. "x": 0,
  9113. "y": 0,
  9114. "z": 0,
  9115. "w": 1
  9116. },
  9117. "_lscale": {
  9118. "__type__": "cc.Vec3",
  9119. "x": 1,
  9120. "y": 1,
  9121. "z": 1
  9122. },
  9123. "_layer": 1073741824,
  9124. "_euler": {
  9125. "__type__": "cc.Vec3",
  9126. "x": 0,
  9127. "y": 0,
  9128. "z": 0
  9129. },
  9130. "_id": "75xqkZWF9G14UPdupmcTnw"
  9131. },
  9132. {
  9133. "__type__": "CCPropertyOverrideInfo",
  9134. "targetInfo": {
  9135. "__id__": 355
  9136. },
  9137. "propertyPath": [
  9138. "attackLossHander"
  9139. ],
  9140. "value": {
  9141. "__id__": 550
  9142. }
  9143. },
  9144. {
  9145. "__type__": "cc.ClickEvent",
  9146. "target": {
  9147. "__id__": 357
  9148. },
  9149. "component": "",
  9150. "_componentId": "f53401dhutMyrxGWKjUHzWc",
  9151. "handler": "deleteRole",
  9152. "customEventData": ""
  9153. },
  9154. {
  9155. "__type__": "CCPropertyOverrideInfo",
  9156. "targetInfo": {
  9157. "__id__": 355
  9158. },
  9159. "propertyPath": [
  9160. "http"
  9161. ],
  9162. "value": null
  9163. },
  9164. {
  9165. "__type__": "CCPropertyOverrideInfo",
  9166. "targetInfo": {
  9167. "__id__": 305
  9168. },
  9169. "propertyPath": [
  9170. "active"
  9171. ],
  9172. "value": true
  9173. },
  9174. {
  9175. "__type__": "CCPropertyOverrideInfo",
  9176. "targetInfo": {
  9177. "__id__": 554
  9178. },
  9179. "propertyPath": [
  9180. "clickEvents",
  9181. "length"
  9182. ],
  9183. "value": 1
  9184. },
  9185. {
  9186. "__type__": "cc.TargetInfo",
  9187. "localID": [
  9188. "e1i+/ON4RLUbfKejpjX4v3"
  9189. ]
  9190. },
  9191. {
  9192. "__type__": "CCPropertyOverrideInfo",
  9193. "targetInfo": {
  9194. "__id__": 554
  9195. },
  9196. "propertyPath": [
  9197. "clickEvents",
  9198. "0"
  9199. ],
  9200. "value": {
  9201. "__id__": 556
  9202. }
  9203. },
  9204. {
  9205. "__type__": "cc.ClickEvent",
  9206. "target": {
  9207. "__id__": 109
  9208. },
  9209. "component": "",
  9210. "_componentId": "743afyRlb5BuYh9IVScJnCr",
  9211. "handler": "openShentaiWindow",
  9212. "customEventData": ""
  9213. },
  9214. {
  9215. "__type__": "CCPropertyOverrideInfo",
  9216. "targetInfo": {
  9217. "__id__": 558
  9218. },
  9219. "propertyPath": [
  9220. "clickEvents",
  9221. "length"
  9222. ],
  9223. "value": 1
  9224. },
  9225. {
  9226. "__type__": "cc.TargetInfo",
  9227. "localID": [
  9228. "6cS6C3G1RHAKMo8WbDjzog"
  9229. ]
  9230. },
  9231. {
  9232. "__type__": "CCPropertyOverrideInfo",
  9233. "targetInfo": {
  9234. "__id__": 558
  9235. },
  9236. "propertyPath": [
  9237. "clickEvents",
  9238. "0"
  9239. ],
  9240. "value": {
  9241. "__id__": 560
  9242. }
  9243. },
  9244. {
  9245. "__type__": "cc.ClickEvent",
  9246. "target": {
  9247. "__id__": 109
  9248. },
  9249. "component": "",
  9250. "_componentId": "743afyRlb5BuYh9IVScJnCr",
  9251. "handler": "openBattleUIWindow",
  9252. "customEventData": ""
  9253. },
  9254. {
  9255. "__type__": "CCPropertyOverrideInfo",
  9256. "targetInfo": {
  9257. "__id__": 562
  9258. },
  9259. "propertyPath": [
  9260. "prefabPath"
  9261. ],
  9262. "value": "Prefabs/Windows/等级红包"
  9263. },
  9264. {
  9265. "__type__": "cc.TargetInfo",
  9266. "localID": [
  9267. "a9ymGm2uRPPrYjkXH9ba+6"
  9268. ]
  9269. },
  9270. {
  9271. "__type__": "CCPropertyOverrideInfo",
  9272. "targetInfo": {
  9273. "__id__": 564
  9274. },
  9275. "propertyPath": [
  9276. "prefabPath"
  9277. ],
  9278. "value": "Prefabs/Windows/红包窗口"
  9279. },
  9280. {
  9281. "__type__": "cc.TargetInfo",
  9282. "localID": [
  9283. "de/mOBTl5JwJKA0JG1g9Cu"
  9284. ]
  9285. },
  9286. {
  9287. "__type__": "CCPropertyOverrideInfo",
  9288. "targetInfo": {
  9289. "__id__": 566
  9290. },
  9291. "propertyPath": [
  9292. "position"
  9293. ],
  9294. "value": {
  9295. "__type__": "cc.Vec3",
  9296. "x": 0,
  9297. "y": -27.25,
  9298. "z": 0
  9299. }
  9300. },
  9301. {
  9302. "__type__": "cc.TargetInfo",
  9303. "localID": [
  9304. "f7edGbO2RLap/mTJ3bi+Cj"
  9305. ]
  9306. },
  9307. {
  9308. "__type__": "CCPropertyOverrideInfo",
  9309. "targetInfo": {
  9310. "__id__": 568
  9311. },
  9312. "propertyPath": [
  9313. "position"
  9314. ],
  9315. "value": {
  9316. "__type__": "cc.Vec3",
  9317. "x": 139,
  9318. "y": -10.5,
  9319. "z": 0
  9320. }
  9321. },
  9322. {
  9323. "__type__": "cc.TargetInfo",
  9324. "localID": [
  9325. "6aPty9bT9JqpwSTqY3c0wl"
  9326. ]
  9327. },
  9328. {
  9329. "__type__": "CCPropertyOverrideInfo",
  9330. "targetInfo": {
  9331. "__id__": 570
  9332. },
  9333. "propertyPath": [
  9334. "position"
  9335. ],
  9336. "value": {
  9337. "__type__": "cc.Vec3",
  9338. "x": 117,
  9339. "y": 0,
  9340. "z": 0
  9341. }
  9342. },
  9343. {
  9344. "__type__": "cc.TargetInfo",
  9345. "localID": [
  9346. "34eEkfU15JX7jqRvkyPPsI"
  9347. ]
  9348. },
  9349. {
  9350. "__type__": "CCPropertyOverrideInfo",
  9351. "targetInfo": {
  9352. "__id__": 572
  9353. },
  9354. "propertyPath": [
  9355. "position"
  9356. ],
  9357. "value": {
  9358. "__type__": "cc.Vec3",
  9359. "x": 45,
  9360. "y": 64.86,
  9361. "z": 0
  9362. }
  9363. },
  9364. {
  9365. "__type__": "cc.TargetInfo",
  9366. "localID": [
  9367. "03tJ2Mg/hHYK8PiW2oMJPR",
  9368. "9b0Si+bIpEGrWfN8qWWYXJ"
  9369. ]
  9370. },
  9371. {
  9372. "__type__": "CCPropertyOverrideInfo",
  9373. "targetInfo": {
  9374. "__id__": 574
  9375. },
  9376. "propertyPath": [
  9377. "position"
  9378. ],
  9379. "value": {
  9380. "__type__": "cc.Vec3",
  9381. "x": 53,
  9382. "y": 44,
  9383. "z": 0
  9384. }
  9385. },
  9386. {
  9387. "__type__": "cc.TargetInfo",
  9388. "localID": [
  9389. "d2vzICyrdAv5GWoBns41LO",
  9390. "9b0Si+bIpEGrWfN8qWWYXJ"
  9391. ]
  9392. },
  9393. {
  9394. "__type__": "CCPropertyOverrideInfo",
  9395. "targetInfo": {
  9396. "__id__": 576
  9397. },
  9398. "propertyPath": [
  9399. "position"
  9400. ],
  9401. "value": {
  9402. "__type__": "cc.Vec3",
  9403. "x": 34.5,
  9404. "y": 39.5,
  9405. "z": 0
  9406. }
  9407. },
  9408. {
  9409. "__type__": "cc.TargetInfo",
  9410. "localID": [
  9411. "9dofMhw11Cx6JGj7JhvrIV",
  9412. "9b0Si+bIpEGrWfN8qWWYXJ"
  9413. ]
  9414. },
  9415. {
  9416. "__type__": "CCPropertyOverrideInfo",
  9417. "targetInfo": {
  9418. "__id__": 574
  9419. },
  9420. "propertyPath": [
  9421. "active"
  9422. ],
  9423. "value": false
  9424. },
  9425. {
  9426. "__type__": "CCPropertyOverrideInfo",
  9427. "targetInfo": {
  9428. "__id__": 572
  9429. },
  9430. "propertyPath": [
  9431. "active"
  9432. ],
  9433. "value": false
  9434. },
  9435. {
  9436. "__type__": "CCPropertyOverrideInfo",
  9437. "targetInfo": {
  9438. "__id__": 576
  9439. },
  9440. "propertyPath": [
  9441. "active"
  9442. ],
  9443. "value": true
  9444. },
  9445. {
  9446. "__type__": "CCPropertyOverrideInfo",
  9447. "targetInfo": {
  9448. "__id__": 581
  9449. },
  9450. "propertyPath": [
  9451. "active"
  9452. ],
  9453. "value": true
  9454. },
  9455. {
  9456. "__type__": "cc.TargetInfo",
  9457. "localID": [
  9458. "03tJ2Mg/hHYK8PiW2oMJPR",
  9459. "caWrmeMOZL3anq0YewTMlI"
  9460. ]
  9461. },
  9462. {
  9463. "__type__": "CCPropertyOverrideInfo",
  9464. "targetInfo": {
  9465. "__id__": 241
  9466. },
  9467. "propertyPath": [
  9468. "active"
  9469. ],
  9470. "value": true
  9471. },
  9472. {
  9473. "__type__": "CCPropertyOverrideInfo",
  9474. "targetInfo": {
  9475. "__id__": 584
  9476. },
  9477. "propertyPath": [
  9478. "prefabPath"
  9479. ],
  9480. "value": "Prefabs/ChartBook/ChartBookWindow"
  9481. },
  9482. {
  9483. "__type__": "cc.TargetInfo",
  9484. "localID": [
  9485. "d4/PpPF3FG4L/nr7ijliip"
  9486. ]
  9487. },
  9488. {
  9489. "__type__": "CCPropertyOverrideInfo",
  9490. "targetInfo": {
  9491. "__id__": 586
  9492. },
  9493. "propertyPath": [
  9494. "fontSize"
  9495. ],
  9496. "value": 28
  9497. },
  9498. {
  9499. "__type__": "cc.TargetInfo",
  9500. "localID": [
  9501. "64gb/cWVJLC6kCD0OKaplL"
  9502. ]
  9503. },
  9504. {
  9505. "__type__": "CCPropertyOverrideInfo",
  9506. "targetInfo": {
  9507. "__id__": 588
  9508. },
  9509. "propertyPath": [
  9510. "fontSize"
  9511. ],
  9512. "value": 24
  9513. },
  9514. {
  9515. "__type__": "cc.TargetInfo",
  9516. "localID": [
  9517. "083cK/1ZBGc7x+2zJccJf1"
  9518. ]
  9519. },
  9520. {
  9521. "__type__": "CCPropertyOverrideInfo",
  9522. "targetInfo": {
  9523. "__id__": 588
  9524. },
  9525. "propertyPath": [
  9526. "lineHeight"
  9527. ],
  9528. "value": 24
  9529. },
  9530. {
  9531. "__type__": "CCPropertyOverrideInfo",
  9532. "targetInfo": {
  9533. "__id__": 586
  9534. },
  9535. "propertyPath": [
  9536. "lineHeight"
  9537. ],
  9538. "value": 28
  9539. },
  9540. {
  9541. "__type__": "CCPropertyOverrideInfo",
  9542. "targetInfo": {
  9543. "__id__": 592
  9544. },
  9545. "propertyPath": [
  9546. "fontSize"
  9547. ],
  9548. "value": 24
  9549. },
  9550. {
  9551. "__type__": "cc.TargetInfo",
  9552. "localID": [
  9553. "e2e2V8rXJGk7xoEMH2Nf/g"
  9554. ]
  9555. },
  9556. {
  9557. "__type__": "CCPropertyOverrideInfo",
  9558. "targetInfo": {
  9559. "__id__": 592
  9560. },
  9561. "propertyPath": [
  9562. "lineHeight"
  9563. ],
  9564. "value": 24
  9565. },
  9566. {
  9567. "__type__": "CCPropertyOverrideInfo",
  9568. "targetInfo": {
  9569. "__id__": 595
  9570. },
  9571. "propertyPath": [
  9572. "fontSize"
  9573. ],
  9574. "value": 28
  9575. },
  9576. {
  9577. "__type__": "cc.TargetInfo",
  9578. "localID": [
  9579. "3d30HbE0hCGad9K+CDEOGr"
  9580. ]
  9581. },
  9582. {
  9583. "__type__": "CCPropertyOverrideInfo",
  9584. "targetInfo": {
  9585. "__id__": 595
  9586. },
  9587. "propertyPath": [
  9588. "lineHeight"
  9589. ],
  9590. "value": 28
  9591. },
  9592. {
  9593. "__type__": "CCPropertyOverrideInfo",
  9594. "targetInfo": {
  9595. "__id__": 203
  9596. },
  9597. "propertyPath": [
  9598. "position"
  9599. ],
  9600. "value": {
  9601. "__type__": "cc.Vec3",
  9602. "x": 214.575,
  9603. "y": 18.557,
  9604. "z": 0
  9605. }
  9606. },
  9607. {
  9608. "__type__": "CCPropertyOverrideInfo",
  9609. "targetInfo": {
  9610. "__id__": 599
  9611. },
  9612. "propertyPath": [
  9613. "enabled"
  9614. ],
  9615. "value": true
  9616. },
  9617. {
  9618. "__type__": "cc.TargetInfo",
  9619. "localID": [
  9620. "45OBoPOfJDxLHsa1aeP1Ds"
  9621. ]
  9622. },
  9623. {
  9624. "__type__": "CCPropertyOverrideInfo",
  9625. "targetInfo": {
  9626. "__id__": 601
  9627. },
  9628. "propertyPath": [
  9629. "prefabPath"
  9630. ],
  9631. "value": "Prefabs/Windows/神石兑换窗口"
  9632. },
  9633. {
  9634. "__type__": "cc.TargetInfo",
  9635. "localID": [
  9636. "f8gFAemA1Azb10zzaCDO/H"
  9637. ]
  9638. },
  9639. {
  9640. "__type__": "CCPropertyOverrideInfo",
  9641. "targetInfo": {
  9642. "__id__": 603
  9643. },
  9644. "propertyPath": [
  9645. "clickEvents",
  9646. "length"
  9647. ],
  9648. "value": 1
  9649. },
  9650. {
  9651. "__type__": "cc.TargetInfo",
  9652. "localID": [
  9653. "26FjvFzmxB2p5wrRwEOFS8"
  9654. ]
  9655. },
  9656. {
  9657. "__type__": "CCPropertyOverrideInfo",
  9658. "targetInfo": {
  9659. "__id__": 603
  9660. },
  9661. "propertyPath": [
  9662. "clickEvents",
  9663. "0"
  9664. ],
  9665. "value": {
  9666. "__id__": 605
  9667. }
  9668. },
  9669. {
  9670. "__type__": "cc.ClickEvent",
  9671. "target": {
  9672. "__id__": 109
  9673. },
  9674. "component": "",
  9675. "_componentId": "743afyRlb5BuYh9IVScJnCr",
  9676. "handler": "openTurntableWindow",
  9677. "customEventData": ""
  9678. },
  9679. {
  9680. "__type__": "CCPropertyOverrideInfo",
  9681. "targetInfo": {
  9682. "__id__": 607
  9683. },
  9684. "propertyPath": [
  9685. "position"
  9686. ],
  9687. "value": {
  9688. "__type__": "cc.Vec3",
  9689. "x": 0,
  9690. "y": 396.22,
  9691. "z": 0
  9692. }
  9693. },
  9694. {
  9695. "__type__": "cc.TargetInfo",
  9696. "localID": [
  9697. "30E27+ns1HGoV+AcJAj5ct"
  9698. ]
  9699. },
  9700. {
  9701. "__type__": "CCPropertyOverrideInfo",
  9702. "targetInfo": {
  9703. "__id__": 609
  9704. },
  9705. "propertyPath": [
  9706. "position"
  9707. ],
  9708. "value": {
  9709. "__type__": "cc.Vec3",
  9710. "x": 0,
  9711. "y": 234,
  9712. "z": 0
  9713. }
  9714. },
  9715. {
  9716. "__type__": "cc.TargetInfo",
  9717. "localID": [
  9718. "faD1vuIDNA25isinAic4gs"
  9719. ]
  9720. },
  9721. {
  9722. "__type__": "CCPropertyOverrideInfo",
  9723. "targetInfo": {
  9724. "__id__": 611
  9725. },
  9726. "propertyPath": [
  9727. "position"
  9728. ],
  9729. "value": {
  9730. "__type__": "cc.Vec3",
  9731. "x": 0,
  9732. "y": 362.5,
  9733. "z": 0
  9734. }
  9735. },
  9736. {
  9737. "__type__": "cc.TargetInfo",
  9738. "localID": [
  9739. "a932DA2YFMbqxqmlG1wWFp"
  9740. ]
  9741. },
  9742. {
  9743. "__type__": "CCPropertyOverrideInfo",
  9744. "targetInfo": {
  9745. "__id__": 613
  9746. },
  9747. "propertyPath": [
  9748. "prefabPath"
  9749. ],
  9750. "value": "Prefabs/Each/EachWindow"
  9751. },
  9752. {
  9753. "__type__": "cc.TargetInfo",
  9754. "localID": [
  9755. "8cgS0+f/pPIIz8MupRv8Gv"
  9756. ]
  9757. },
  9758. {
  9759. "__type__": "CCPropertyOverrideInfo",
  9760. "targetInfo": {
  9761. "__id__": 615
  9762. },
  9763. "propertyPath": [],
  9764. "value": {
  9765. "__id__": 616
  9766. }
  9767. },
  9768. {
  9769. "__type__": "cc.TargetInfo",
  9770. "localID": []
  9771. },
  9772. {
  9773. "__type__": "cc.ClickEvent",
  9774. "target": null,
  9775. "component": "",
  9776. "_componentId": "",
  9777. "handler": "",
  9778. "customEventData": ""
  9779. },
  9780. {
  9781. "__type__": "CCPropertyOverrideInfo",
  9782. "targetInfo": {
  9783. "__id__": 609
  9784. },
  9785. "propertyPath": [
  9786. "scale"
  9787. ],
  9788. "value": {
  9789. "__type__": "cc.Vec3",
  9790. "x": 1,
  9791. "y": 1,
  9792. "z": 1
  9793. }
  9794. },
  9795. {
  9796. "__type__": "CCPropertyOverrideInfo",
  9797. "targetInfo": {
  9798. "__id__": 611
  9799. },
  9800. "propertyPath": [
  9801. "scale"
  9802. ],
  9803. "value": {
  9804. "__type__": "cc.Vec3",
  9805. "x": 1,
  9806. "y": 1,
  9807. "z": 1
  9808. }
  9809. },
  9810. {
  9811. "__type__": "CCPropertyOverrideInfo",
  9812. "targetInfo": {
  9813. "__id__": 607
  9814. },
  9815. "propertyPath": [
  9816. "scale"
  9817. ],
  9818. "value": {
  9819. "__type__": "cc.Vec3",
  9820. "x": 1,
  9821. "y": 1,
  9822. "z": 1
  9823. }
  9824. },
  9825. {
  9826. "__type__": "CCPropertyOverrideInfo",
  9827. "targetInfo": {
  9828. "__id__": 621
  9829. },
  9830. "propertyPath": [
  9831. "name"
  9832. ],
  9833. "value": "红点"
  9834. },
  9835. {
  9836. "__type__": "cc.TargetInfo",
  9837. "localID": [
  9838. "9b0Si+bIpEGrWfN8qWWYXJ"
  9839. ]
  9840. },
  9841. {
  9842. "__type__": "CCPropertyOverrideInfo",
  9843. "targetInfo": {
  9844. "__id__": 621
  9845. },
  9846. "propertyPath": [
  9847. "position"
  9848. ],
  9849. "value": {
  9850. "__type__": "cc.Vec3",
  9851. "x": 52,
  9852. "y": 45.5,
  9853. "z": 0
  9854. }
  9855. },
  9856. {
  9857. "__type__": "CCPropertyOverrideInfo",
  9858. "targetInfo": {
  9859. "__id__": 621
  9860. },
  9861. "propertyPath": [
  9862. "rotation"
  9863. ],
  9864. "value": {
  9865. "__type__": "cc.Quat",
  9866. "x": 0,
  9867. "y": 0,
  9868. "z": 0,
  9869. "w": 1
  9870. }
  9871. },
  9872. {
  9873. "__type__": "CCPropertyOverrideInfo",
  9874. "targetInfo": {
  9875. "__id__": 625
  9876. },
  9877. "propertyPath": [
  9878. "editorRight"
  9879. ],
  9880. "value": 0
  9881. },
  9882. {
  9883. "__type__": "cc.TargetInfo",
  9884. "localID": [
  9885. "9df0G4Za1EXrSZKP+eDo37"
  9886. ]
  9887. },
  9888. {
  9889. "__type__": "CCPropertyOverrideInfo",
  9890. "targetInfo": {
  9891. "__id__": 625
  9892. },
  9893. "propertyPath": [
  9894. "editorTop"
  9895. ],
  9896. "value": 0
  9897. },
  9898. {
  9899. "__type__": "CCPropertyOverrideInfo",
  9900. "targetInfo": {
  9901. "__id__": 625
  9902. },
  9903. "propertyPath": [
  9904. "isAbsoluteTop"
  9905. ],
  9906. "value": true
  9907. },
  9908. {
  9909. "__type__": "CCPropertyOverrideInfo",
  9910. "targetInfo": {
  9911. "__id__": 621
  9912. },
  9913. "propertyPath": [
  9914. "active"
  9915. ],
  9916. "value": true
  9917. },
  9918. {
  9919. "__type__": "cc.Node",
  9920. "_objFlags": 0,
  9921. "_parent": null,
  9922. "_prefab": {
  9923. "__id__": 630
  9924. },
  9925. "_id": "fferEWPydNdbds/iP0nj3W"
  9926. },
  9927. {
  9928. "__type__": "cc.PrefabInfo",
  9929. "root": {
  9930. "__id__": 629
  9931. },
  9932. "asset": {
  9933. "__uuid__": "11230ff3-3fff-4359-be9c-0416ffa1af7b"
  9934. },
  9935. "fileId": "9b0Si+bIpEGrWfN8qWWYXJ",
  9936. "instance": {
  9937. "__id__": 631
  9938. }
  9939. },
  9940. {
  9941. "__type__": "cc.PrefabInstance",
  9942. "fileId": "d2vzICyrdAv5GWoBns41LO",
  9943. "prefabRootNode": {
  9944. "__id__": 136
  9945. },
  9946. "mountedChildren": [],
  9947. "propertyOverrides": [
  9948. {
  9949. "__id__": 632
  9950. },
  9951. {
  9952. "__id__": 634
  9953. },
  9954. {
  9955. "__id__": 636
  9956. }
  9957. ],
  9958. "removedComponents": []
  9959. },
  9960. {
  9961. "__type__": "CCPropertyOverrideInfo",
  9962. "targetInfo": {
  9963. "__id__": 633
  9964. },
  9965. "propertyPath": [
  9966. "position"
  9967. ],
  9968. "value": {
  9969. "__type__": "cc.Vec3",
  9970. "x": 53,
  9971. "y": 44,
  9972. "z": 0
  9973. }
  9974. },
  9975. {
  9976. "__type__": "cc.TargetInfo",
  9977. "localID": [
  9978. "9b0Si+bIpEGrWfN8qWWYXJ"
  9979. ]
  9980. },
  9981. {
  9982. "__type__": "CCPropertyOverrideInfo",
  9983. "targetInfo": {
  9984. "__id__": 635
  9985. },
  9986. "propertyPath": [
  9987. "editorTop"
  9988. ],
  9989. "value": 0
  9990. },
  9991. {
  9992. "__type__": "cc.TargetInfo",
  9993. "localID": [
  9994. "9df0G4Za1EXrSZKP+eDo37"
  9995. ]
  9996. },
  9997. {
  9998. "__type__": "CCPropertyOverrideInfo",
  9999. "targetInfo": {
  10000. "__id__": 635
  10001. },
  10002. "propertyPath": [
  10003. "editorRight"
  10004. ],
  10005. "value": 0
  10006. },
  10007. {
  10008. "__type__": "cc.Node",
  10009. "_objFlags": 0,
  10010. "_parent": null,
  10011. "_prefab": {
  10012. "__id__": 638
  10013. },
  10014. "_id": "d0vbzhR/BODpVB6sWxh4mM"
  10015. },
  10016. {
  10017. "__type__": "cc.PrefabInfo",
  10018. "root": {
  10019. "__id__": 637
  10020. },
  10021. "asset": {
  10022. "__uuid__": "11230ff3-3fff-4359-be9c-0416ffa1af7b"
  10023. },
  10024. "fileId": "9b0Si+bIpEGrWfN8qWWYXJ",
  10025. "instance": {
  10026. "__id__": 639
  10027. }
  10028. },
  10029. {
  10030. "__type__": "cc.PrefabInstance",
  10031. "fileId": "9dofMhw11Cx6JGj7JhvrIV",
  10032. "prefabRootNode": {
  10033. "__id__": 136
  10034. },
  10035. "mountedChildren": [],
  10036. "propertyOverrides": [
  10037. {
  10038. "__id__": 640
  10039. },
  10040. {
  10041. "__id__": 642
  10042. }
  10043. ],
  10044. "removedComponents": []
  10045. },
  10046. {
  10047. "__type__": "CCPropertyOverrideInfo",
  10048. "targetInfo": {
  10049. "__id__": 641
  10050. },
  10051. "propertyPath": [
  10052. "position"
  10053. ],
  10054. "value": {
  10055. "__type__": "cc.Vec3",
  10056. "x": 34.5,
  10057. "y": 39.5,
  10058. "z": 0
  10059. }
  10060. },
  10061. {
  10062. "__type__": "cc.TargetInfo",
  10063. "localID": [
  10064. "9b0Si+bIpEGrWfN8qWWYXJ"
  10065. ]
  10066. },
  10067. {
  10068. "__type__": "CCPropertyOverrideInfo",
  10069. "targetInfo": {
  10070. "__id__": 641
  10071. },
  10072. "propertyPath": [
  10073. "name"
  10074. ],
  10075. "value": "红点"
  10076. },
  10077. {
  10078. "__type__": "cc.ClickEvent",
  10079. "target": {
  10080. "__id__": 357
  10081. },
  10082. "component": "",
  10083. "_componentId": "f53401dhutMyrxGWKjUHzWc",
  10084. "handler": "createRole",
  10085. "customEventData": ""
  10086. },
  10087. {
  10088. "__type__": "cc.ClickEvent",
  10089. "target": {
  10090. "__id__": 357
  10091. },
  10092. "component": "",
  10093. "_componentId": "f53401dhutMyrxGWKjUHzWc",
  10094. "handler": "onAttackLoss",
  10095. "customEventData": ""
  10096. },
  10097. {
  10098. "__type__": "cc.Widget",
  10099. "_name": "",
  10100. "_objFlags": 0,
  10101. "node": {
  10102. "__id__": 17
  10103. },
  10104. "_enabled": true,
  10105. "__prefab": null,
  10106. "_alignFlags": 18,
  10107. "_target": null,
  10108. "_left": 0,
  10109. "_right": 0,
  10110. "_top": 0,
  10111. "_bottom": 30,
  10112. "_horizontalCenter": 0,
  10113. "_verticalCenter": 0,
  10114. "_isAbsLeft": true,
  10115. "_isAbsRight": true,
  10116. "_isAbsTop": true,
  10117. "_isAbsBottom": true,
  10118. "_isAbsHorizontalCenter": true,
  10119. "_isAbsVerticalCenter": false,
  10120. "_originalWidth": 0,
  10121. "_originalHeight": 0,
  10122. "_alignMode": 2,
  10123. "_lockFlags": 0,
  10124. "_id": "1dIyoKsKNIBZ0msG17rRM7"
  10125. },
  10126. {
  10127. "__type__": "cc.Sprite",
  10128. "_name": "",
  10129. "_objFlags": 0,
  10130. "node": {
  10131. "__id__": 17
  10132. },
  10133. "_enabled": true,
  10134. "__prefab": null,
  10135. "_visFlags": 0,
  10136. "_customMaterial": null,
  10137. "_srcBlendFactor": 2,
  10138. "_dstBlendFactor": 4,
  10139. "_color": {
  10140. "__type__": "cc.Color",
  10141. "r": 255,
  10142. "g": 255,
  10143. "b": 255,
  10144. "a": 255
  10145. },
  10146. "_spriteFrame": {
  10147. "__uuid__": "a392fffb-2dab-4182-a579-db9d47f50f8e@f9941"
  10148. },
  10149. "_type": 0,
  10150. "_fillType": 0,
  10151. "_sizeMode": 1,
  10152. "_fillCenter": {
  10153. "__type__": "cc.Vec2",
  10154. "x": 0,
  10155. "y": 0
  10156. },
  10157. "_fillStart": 0,
  10158. "_fillRange": 0,
  10159. "_isTrimmedMode": true,
  10160. "_useGrayscale": false,
  10161. "_atlas": null,
  10162. "_id": "b7xanuWy9HgbAdXBZgXnag"
  10163. },
  10164. {
  10165. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  10166. "_name": "",
  10167. "_objFlags": 0,
  10168. "node": {
  10169. "__id__": 17
  10170. },
  10171. "_enabled": true,
  10172. "__prefab": null,
  10173. "clips": [
  10174. {
  10175. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  10176. }
  10177. ],
  10178. "_volume": 1,
  10179. "useGlobalVolume": true,
  10180. "playOnLoad": false,
  10181. "playOnTouch": true,
  10182. "oneShot": true,
  10183. "loop": false,
  10184. "_id": "ceXFZ8FJBKja6bfhyghsIu"
  10185. },
  10186. {
  10187. "__type__": "cc.UITransform",
  10188. "_name": "",
  10189. "_objFlags": 0,
  10190. "node": {
  10191. "__id__": 16
  10192. },
  10193. "_enabled": true,
  10194. "__prefab": null,
  10195. "_priority": 0,
  10196. "_contentSize": {
  10197. "__type__": "cc.Size",
  10198. "width": 391,
  10199. "height": 152
  10200. },
  10201. "_anchorPoint": {
  10202. "__type__": "cc.Vec2",
  10203. "x": 0.5,
  10204. "y": 0.5
  10205. },
  10206. "_id": "c2FJJqpPJPsLaGE07k9+E9"
  10207. },
  10208. {
  10209. "__type__": "cc.Widget",
  10210. "_name": "",
  10211. "_objFlags": 0,
  10212. "node": {
  10213. "__id__": 16
  10214. },
  10215. "_enabled": true,
  10216. "__prefab": null,
  10217. "_alignFlags": 20,
  10218. "_target": null,
  10219. "_left": 0,
  10220. "_right": 0,
  10221. "_top": 0,
  10222. "_bottom": 18,
  10223. "_horizontalCenter": 0,
  10224. "_verticalCenter": 0,
  10225. "_isAbsLeft": true,
  10226. "_isAbsRight": true,
  10227. "_isAbsTop": true,
  10228. "_isAbsBottom": true,
  10229. "_isAbsHorizontalCenter": true,
  10230. "_isAbsVerticalCenter": true,
  10231. "_originalWidth": 0,
  10232. "_originalHeight": 0,
  10233. "_alignMode": 2,
  10234. "_lockFlags": 0,
  10235. "_id": "daFXEMNptB1I/COrjP6lVY"
  10236. },
  10237. {
  10238. "__type__": "cc.UITransform",
  10239. "_name": "",
  10240. "_objFlags": 0,
  10241. "node": {
  10242. "__id__": 15
  10243. },
  10244. "_enabled": true,
  10245. "__prefab": null,
  10246. "_priority": 0,
  10247. "_contentSize": {
  10248. "__type__": "cc.Size",
  10249. "width": 750,
  10250. "height": 1334
  10251. },
  10252. "_anchorPoint": {
  10253. "__type__": "cc.Vec2",
  10254. "x": 0.5,
  10255. "y": 0.5
  10256. },
  10257. "_id": "b3ro1mNydOQ78Y2BMy0QLQ"
  10258. },
  10259. {
  10260. "__type__": "cc.Widget",
  10261. "_name": "",
  10262. "_objFlags": 0,
  10263. "node": {
  10264. "__id__": 15
  10265. },
  10266. "_enabled": true,
  10267. "__prefab": null,
  10268. "_alignFlags": 45,
  10269. "_target": null,
  10270. "_left": 0,
  10271. "_right": 0,
  10272. "_top": -5.684341886080802e-14,
  10273. "_bottom": 5.684341886080802e-14,
  10274. "_horizontalCenter": 0,
  10275. "_verticalCenter": 0,
  10276. "_isAbsLeft": true,
  10277. "_isAbsRight": true,
  10278. "_isAbsTop": true,
  10279. "_isAbsBottom": true,
  10280. "_isAbsHorizontalCenter": true,
  10281. "_isAbsVerticalCenter": true,
  10282. "_originalWidth": 500,
  10283. "_originalHeight": 300,
  10284. "_alignMode": 2,
  10285. "_lockFlags": 0,
  10286. "_id": "66Ru3Uc51Gz7IpE31FG4Me"
  10287. },
  10288. {
  10289. "__type__": "cc.UITransform",
  10290. "_name": "",
  10291. "_objFlags": 0,
  10292. "node": {
  10293. "__id__": 2
  10294. },
  10295. "_enabled": true,
  10296. "__prefab": {
  10297. "__id__": 653
  10298. },
  10299. "_priority": 0,
  10300. "_contentSize": {
  10301. "__type__": "cc.Size",
  10302. "width": 750,
  10303. "height": 1334
  10304. },
  10305. "_anchorPoint": {
  10306. "__type__": "cc.Vec2",
  10307. "x": 0.5,
  10308. "y": 0.5
  10309. },
  10310. "_id": "cbXwXkqDNFV5tcE0EP0+ho"
  10311. },
  10312. {
  10313. "__type__": "cc.CompPrefabInfo",
  10314. "fileId": "0dngp/9gNO34wUQjZfN/CX"
  10315. },
  10316. {
  10317. "__type__": "cc.Canvas",
  10318. "_name": "",
  10319. "_objFlags": 0,
  10320. "node": {
  10321. "__id__": 2
  10322. },
  10323. "_enabled": true,
  10324. "__prefab": {
  10325. "__id__": 655
  10326. },
  10327. "_cameraComponent": {
  10328. "__id__": 4
  10329. },
  10330. "_alignCanvasWithScreen": true,
  10331. "_id": "c9wlWA4rNHUYBMlsGc0i8V"
  10332. },
  10333. {
  10334. "__type__": "cc.CompPrefabInfo",
  10335. "fileId": "3f2oTdCepERZdpmIfLsrhd"
  10336. },
  10337. {
  10338. "__type__": "cc.Widget",
  10339. "_name": "",
  10340. "_objFlags": 0,
  10341. "node": {
  10342. "__id__": 2
  10343. },
  10344. "_enabled": true,
  10345. "__prefab": {
  10346. "__id__": 657
  10347. },
  10348. "_alignFlags": 45,
  10349. "_target": null,
  10350. "_left": 0,
  10351. "_right": 0,
  10352. "_top": 0,
  10353. "_bottom": 0,
  10354. "_horizontalCenter": 0,
  10355. "_verticalCenter": 0,
  10356. "_isAbsLeft": true,
  10357. "_isAbsRight": true,
  10358. "_isAbsTop": true,
  10359. "_isAbsBottom": true,
  10360. "_isAbsHorizontalCenter": true,
  10361. "_isAbsVerticalCenter": true,
  10362. "_originalWidth": 0,
  10363. "_originalHeight": 0,
  10364. "_alignMode": 2,
  10365. "_lockFlags": 0,
  10366. "_id": "7bfe5gGHBBQZrlY9kJ0UYw"
  10367. },
  10368. {
  10369. "__type__": "cc.CompPrefabInfo",
  10370. "fileId": "e8a+bU/8dPDbbJguUzLdoF"
  10371. },
  10372. {
  10373. "__type__": "cc.Node",
  10374. "_name": "逻辑节点",
  10375. "_objFlags": 0,
  10376. "_parent": {
  10377. "__id__": 1
  10378. },
  10379. "_children": [],
  10380. "_active": true,
  10381. "_components": [
  10382. {
  10383. "__id__": 659
  10384. }
  10385. ],
  10386. "_prefab": null,
  10387. "_lpos": {
  10388. "__type__": "cc.Vec3",
  10389. "x": 0,
  10390. "y": 0,
  10391. "z": 0
  10392. },
  10393. "_lrot": {
  10394. "__type__": "cc.Quat",
  10395. "x": 0,
  10396. "y": 0,
  10397. "z": 0,
  10398. "w": 1
  10399. },
  10400. "_lscale": {
  10401. "__type__": "cc.Vec3",
  10402. "x": 1,
  10403. "y": 1,
  10404. "z": 1
  10405. },
  10406. "_layer": 1073741824,
  10407. "_euler": {
  10408. "__type__": "cc.Vec3",
  10409. "x": 0,
  10410. "y": 0,
  10411. "z": 0
  10412. },
  10413. "_id": "4eVwVrm9VPrJhsQrFIC6sz"
  10414. },
  10415. {
  10416. "__type__": "2a4859yizZJ3KZb8s8sMcm5",
  10417. "_name": "",
  10418. "_objFlags": 0,
  10419. "node": {
  10420. "__id__": 658
  10421. },
  10422. "_enabled": true,
  10423. "__prefab": null,
  10424. "http": {
  10425. "__id__": 547
  10426. },
  10427. "_id": "f98YIIqb9JAIo+2TR9AsWi"
  10428. },
  10429. {
  10430. "__type__": "cc.PrefabInfo",
  10431. "fileId": "",
  10432. "targetOverrides": [
  10433. {
  10434. "__id__": 661
  10435. },
  10436. {
  10437. "__id__": 663
  10438. },
  10439. {
  10440. "__id__": 665
  10441. },
  10442. {
  10443. "__id__": 667
  10444. },
  10445. {
  10446. "__id__": 669
  10447. },
  10448. {
  10449. "__id__": 671
  10450. },
  10451. {
  10452. "__id__": 673
  10453. },
  10454. {
  10455. "__id__": 675
  10456. },
  10457. {
  10458. "__id__": 677
  10459. },
  10460. {
  10461. "__id__": 679
  10462. },
  10463. {
  10464. "__id__": 681
  10465. },
  10466. {
  10467. "__id__": 683
  10468. },
  10469. {
  10470. "__id__": 685
  10471. },
  10472. {
  10473. "__id__": 687
  10474. },
  10475. {
  10476. "__id__": 689
  10477. },
  10478. {
  10479. "__id__": 691
  10480. },
  10481. {
  10482. "__id__": 693
  10483. },
  10484. {
  10485. "__id__": 695
  10486. },
  10487. {
  10488. "__id__": 697
  10489. }
  10490. ]
  10491. },
  10492. {
  10493. "__type__": "cc.TargetOverrideInfo",
  10494. "source": {
  10495. "__id__": 111
  10496. },
  10497. "sourceInfo": null,
  10498. "propertyPath": [
  10499. "diamondLabel"
  10500. ],
  10501. "target": {
  10502. "__id__": 136
  10503. },
  10504. "targetInfo": {
  10505. "__id__": 662
  10506. }
  10507. },
  10508. {
  10509. "__type__": "cc.TargetInfo",
  10510. "localID": [
  10511. "3d30HbE0hCGad9K+CDEOGr"
  10512. ]
  10513. },
  10514. {
  10515. "__type__": "cc.TargetOverrideInfo",
  10516. "source": {
  10517. "__id__": 111
  10518. },
  10519. "sourceInfo": null,
  10520. "propertyPath": [
  10521. "moneyLabel"
  10522. ],
  10523. "target": {
  10524. "__id__": 136
  10525. },
  10526. "targetInfo": {
  10527. "__id__": 664
  10528. }
  10529. },
  10530. {
  10531. "__type__": "cc.TargetInfo",
  10532. "localID": [
  10533. "64gb/cWVJLC6kCD0OKaplL"
  10534. ]
  10535. },
  10536. {
  10537. "__type__": "cc.TargetOverrideInfo",
  10538. "source": {
  10539. "__id__": 111
  10540. },
  10541. "sourceInfo": null,
  10542. "propertyPath": [
  10543. "battleButtonLabel"
  10544. ],
  10545. "target": {
  10546. "__id__": 136
  10547. },
  10548. "targetInfo": {
  10549. "__id__": 666
  10550. }
  10551. },
  10552. {
  10553. "__type__": "cc.TargetInfo",
  10554. "localID": [
  10555. "2frm37uaJHQr0AEEaYyM82"
  10556. ]
  10557. },
  10558. {
  10559. "__type__": "cc.TargetOverrideInfo",
  10560. "source": {
  10561. "__id__": 111
  10562. },
  10563. "sourceInfo": null,
  10564. "propertyPath": [
  10565. "cashLabel"
  10566. ],
  10567. "target": {
  10568. "__id__": 136
  10569. },
  10570. "targetInfo": {
  10571. "__id__": 668
  10572. }
  10573. },
  10574. {
  10575. "__type__": "cc.TargetInfo",
  10576. "localID": [
  10577. "e2e2V8rXJGk7xoEMH2Nf/g"
  10578. ]
  10579. },
  10580. {
  10581. "__type__": "cc.TargetOverrideInfo",
  10582. "source": {
  10583. "__id__": 111
  10584. },
  10585. "sourceInfo": null,
  10586. "propertyPath": [
  10587. "sellButton"
  10588. ],
  10589. "target": {
  10590. "__id__": 136
  10591. },
  10592. "targetInfo": {
  10593. "__id__": 670
  10594. }
  10595. },
  10596. {
  10597. "__type__": "cc.TargetInfo",
  10598. "localID": [
  10599. "f2tnTw6tFHwbBLDdn53a0y"
  10600. ]
  10601. },
  10602. {
  10603. "__type__": "cc.TargetOverrideInfo",
  10604. "source": {
  10605. "__id__": 111
  10606. },
  10607. "sourceInfo": null,
  10608. "propertyPath": [
  10609. "buyButton"
  10610. ],
  10611. "target": {
  10612. "__id__": 136
  10613. },
  10614. "targetInfo": {
  10615. "__id__": 672
  10616. }
  10617. },
  10618. {
  10619. "__type__": "cc.TargetInfo",
  10620. "localID": [
  10621. "130pA/ydhMAr84ij9wnMT3"
  10622. ]
  10623. },
  10624. {
  10625. "__type__": "cc.TargetOverrideInfo",
  10626. "source": {
  10627. "__id__": 111
  10628. },
  10629. "sourceInfo": null,
  10630. "propertyPath": [
  10631. "buyPriceLabel"
  10632. ],
  10633. "target": {
  10634. "__id__": 136
  10635. },
  10636. "targetInfo": {
  10637. "__id__": 674
  10638. }
  10639. },
  10640. {
  10641. "__type__": "cc.TargetInfo",
  10642. "localID": [
  10643. "557GJ1WkxCMpgEYLxTbPYy"
  10644. ]
  10645. },
  10646. {
  10647. "__type__": "cc.TargetOverrideInfo",
  10648. "source": {
  10649. "__id__": 358
  10650. },
  10651. "sourceInfo": null,
  10652. "propertyPath": [
  10653. "sellButton"
  10654. ],
  10655. "target": {
  10656. "__id__": 136
  10657. },
  10658. "targetInfo": {
  10659. "__id__": 676
  10660. }
  10661. },
  10662. {
  10663. "__type__": "cc.TargetInfo",
  10664. "localID": [
  10665. "f2tnTw6tFHwbBLDdn53a0y"
  10666. ]
  10667. },
  10668. {
  10669. "__type__": "cc.TargetOverrideInfo",
  10670. "source": {
  10671. "__id__": 111
  10672. },
  10673. "sourceInfo": null,
  10674. "propertyPath": [
  10675. "gelenalOutPutLabel"
  10676. ],
  10677. "target": {
  10678. "__id__": 136
  10679. },
  10680. "targetInfo": {
  10681. "__id__": 678
  10682. }
  10683. },
  10684. {
  10685. "__type__": "cc.TargetInfo",
  10686. "localID": [
  10687. "083cK/1ZBGc7x+2zJccJf1"
  10688. ]
  10689. },
  10690. {
  10691. "__type__": "cc.TargetOverrideInfo",
  10692. "source": {
  10693. "__id__": 111
  10694. },
  10695. "sourceInfo": null,
  10696. "propertyPath": [
  10697. "lvRedPacketMemoLabel"
  10698. ],
  10699. "target": {
  10700. "__id__": 136
  10701. },
  10702. "targetInfo": {
  10703. "__id__": 680
  10704. }
  10705. },
  10706. {
  10707. "__type__": "cc.TargetInfo",
  10708. "localID": [
  10709. "45q9+bIgZMCrX+nTI5EZdG"
  10710. ]
  10711. },
  10712. {
  10713. "__type__": "cc.TargetOverrideInfo",
  10714. "source": {
  10715. "__id__": 111
  10716. },
  10717. "sourceInfo": null,
  10718. "propertyPath": [
  10719. "battleLvLabel"
  10720. ],
  10721. "target": {
  10722. "__id__": 136
  10723. },
  10724. "targetInfo": {
  10725. "__id__": 682
  10726. }
  10727. },
  10728. {
  10729. "__type__": "cc.TargetInfo",
  10730. "localID": [
  10731. "2frm37uaJHQr0AEEaYyM82"
  10732. ]
  10733. },
  10734. {
  10735. "__type__": "cc.TargetOverrideInfo",
  10736. "source": {
  10737. "__id__": 111
  10738. },
  10739. "sourceInfo": null,
  10740. "propertyPath": [
  10741. "shenTaiLvLabel"
  10742. ],
  10743. "target": {
  10744. "__id__": 136
  10745. },
  10746. "targetInfo": {
  10747. "__id__": 684
  10748. }
  10749. },
  10750. {
  10751. "__type__": "cc.TargetInfo",
  10752. "localID": [
  10753. "39Qm+aMPxG4JhBV0MamZZF"
  10754. ]
  10755. },
  10756. {
  10757. "__type__": "cc.TargetOverrideInfo",
  10758. "source": {
  10759. "__id__": 111
  10760. },
  10761. "sourceInfo": null,
  10762. "propertyPath": [
  10763. "bonusDayBitmapFont"
  10764. ],
  10765. "target": {
  10766. "__id__": 136
  10767. },
  10768. "targetInfo": {
  10769. "__id__": 686
  10770. }
  10771. },
  10772. {
  10773. "__type__": "cc.TargetInfo",
  10774. "localID": [
  10775. "9fKT8uWgNL8q0pQeu1g2LT"
  10776. ]
  10777. },
  10778. {
  10779. "__type__": "cc.TargetOverrideInfo",
  10780. "source": {
  10781. "__id__": 111
  10782. },
  10783. "sourceInfo": null,
  10784. "propertyPath": [
  10785. "shenTaiRedPointNode"
  10786. ],
  10787. "target": {
  10788. "__id__": 136
  10789. },
  10790. "targetInfo": {
  10791. "__id__": 688
  10792. }
  10793. },
  10794. {
  10795. "__type__": "cc.TargetInfo",
  10796. "localID": [
  10797. "03tJ2Mg/hHYK8PiW2oMJPR",
  10798. "9b0Si+bIpEGrWfN8qWWYXJ"
  10799. ]
  10800. },
  10801. {
  10802. "__type__": "cc.TargetOverrideInfo",
  10803. "source": {
  10804. "__id__": 111
  10805. },
  10806. "sourceInfo": null,
  10807. "propertyPath": [
  10808. "qieCuoRedPointNode"
  10809. ],
  10810. "target": {
  10811. "__id__": 136
  10812. },
  10813. "targetInfo": {
  10814. "__id__": 690
  10815. }
  10816. },
  10817. {
  10818. "__type__": "cc.TargetInfo",
  10819. "localID": [
  10820. "d2vzICyrdAv5GWoBns41LO",
  10821. "9b0Si+bIpEGrWfN8qWWYXJ"
  10822. ]
  10823. },
  10824. {
  10825. "__type__": "cc.TargetOverrideInfo",
  10826. "source": {
  10827. "__id__": 111
  10828. },
  10829. "sourceInfo": null,
  10830. "propertyPath": [
  10831. "qianHongBaoRedPointNode"
  10832. ],
  10833. "target": {
  10834. "__id__": 136
  10835. },
  10836. "targetInfo": {
  10837. "__id__": 692
  10838. }
  10839. },
  10840. {
  10841. "__type__": "cc.TargetInfo",
  10842. "localID": [
  10843. "9dofMhw11Cx6JGj7JhvrIV",
  10844. "9b0Si+bIpEGrWfN8qWWYXJ"
  10845. ]
  10846. },
  10847. {
  10848. "__type__": "cc.TargetOverrideInfo",
  10849. "source": {
  10850. "__id__": 111
  10851. },
  10852. "sourceInfo": null,
  10853. "propertyPath": [
  10854. "lvRedRedPacket"
  10855. ],
  10856. "target": {
  10857. "__id__": 136
  10858. },
  10859. "targetInfo": {
  10860. "__id__": 694
  10861. }
  10862. },
  10863. {
  10864. "__type__": "cc.TargetInfo",
  10865. "localID": [
  10866. "45q9+bIgZMCrX+nTI5EZdG"
  10867. ]
  10868. },
  10869. {
  10870. "__type__": "cc.TargetOverrideInfo",
  10871. "source": {
  10872. "__id__": 111
  10873. },
  10874. "sourceInfo": null,
  10875. "propertyPath": [
  10876. "lvRedRedPacketBtn"
  10877. ],
  10878. "target": {
  10879. "__id__": 136
  10880. },
  10881. "targetInfo": {
  10882. "__id__": 696
  10883. }
  10884. },
  10885. {
  10886. "__type__": "cc.TargetInfo",
  10887. "localID": [
  10888. "8418kPE0pC4Yf979qBrjD/"
  10889. ]
  10890. },
  10891. {
  10892. "__type__": "cc.TargetOverrideInfo",
  10893. "source": {
  10894. "__id__": 111
  10895. },
  10896. "sourceInfo": null,
  10897. "propertyPath": [
  10898. "eachBtnNode"
  10899. ],
  10900. "target": {
  10901. "__id__": 136
  10902. },
  10903. "targetInfo": {
  10904. "__id__": 698
  10905. }
  10906. },
  10907. {
  10908. "__type__": "cc.TargetInfo",
  10909. "localID": [
  10910. "a932DA2YFMbqxqmlG1wWFp"
  10911. ]
  10912. },
  10913. {
  10914. "__type__": "cc.SceneGlobals",
  10915. "ambient": {
  10916. "__id__": 700
  10917. },
  10918. "shadows": {
  10919. "__id__": 701
  10920. },
  10921. "_skybox": {
  10922. "__id__": 702
  10923. },
  10924. "fog": {
  10925. "__id__": 703
  10926. }
  10927. },
  10928. {
  10929. "__type__": "cc.AmbientInfo",
  10930. "_skyColor": {
  10931. "__type__": "cc.Color",
  10932. "r": 51,
  10933. "g": 128,
  10934. "b": 204,
  10935. "a": 1
  10936. },
  10937. "_skyIllum": 20000,
  10938. "_groundAlbedo": {
  10939. "__type__": "cc.Color",
  10940. "r": 51,
  10941. "g": 51,
  10942. "b": 51,
  10943. "a": 255
  10944. }
  10945. },
  10946. {
  10947. "__type__": "cc.ShadowsInfo",
  10948. "_type": 0,
  10949. "_enabled": false,
  10950. "_normal": {
  10951. "__type__": "cc.Vec3",
  10952. "x": 0,
  10953. "y": 1,
  10954. "z": 0
  10955. },
  10956. "_distance": 0,
  10957. "_shadowColor": {
  10958. "__type__": "cc.Color",
  10959. "r": 76,
  10960. "g": 76,
  10961. "b": 76,
  10962. "a": 255
  10963. },
  10964. "_autoAdapt": true,
  10965. "_pcf": 0,
  10966. "_bias": 0.00001,
  10967. "_near": 1,
  10968. "_far": 30,
  10969. "_aspect": 1,
  10970. "_orthoSize": 5,
  10971. "_maxReceived": 4,
  10972. "_size": {
  10973. "__type__": "cc.Vec2",
  10974. "x": 512,
  10975. "y": 512
  10976. }
  10977. },
  10978. {
  10979. "__type__": "cc.SkyboxInfo",
  10980. "_envmap": null,
  10981. "_isRGBE": false,
  10982. "_enabled": false,
  10983. "_useIBL": false
  10984. },
  10985. {
  10986. "__type__": "cc.FogInfo",
  10987. "_type": 0,
  10988. "_fogColor": {
  10989. "__type__": "cc.Color",
  10990. "r": 200,
  10991. "g": 200,
  10992. "b": 200,
  10993. "a": 255
  10994. },
  10995. "_enabled": false,
  10996. "_fogDensity": 0.3,
  10997. "_fogStart": 0.5,
  10998. "_fogEnd": 300,
  10999. "_fogAtten": 5,
  11000. "_fogTop": 1.5,
  11001. "_fogRange": 1.2
  11002. }
  11003. ]