heroUI.prefab 188 KB

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