InviteWindow.prefab 136 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128
  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": "InviteWindow",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [
  25. {
  26. "__id__": 429
  27. },
  28. {
  29. "__id__": 431
  30. },
  31. {
  32. "__id__": 433
  33. },
  34. {
  35. "__id__": 435
  36. },
  37. {
  38. "__id__": 437
  39. },
  40. {
  41. "__id__": 439
  42. }
  43. ],
  44. "_prefab": {
  45. "__id__": 441
  46. },
  47. "_lpos": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "_lrot": {
  54. "__type__": "cc.Quat",
  55. "x": 0,
  56. "y": 0,
  57. "z": 0,
  58. "w": 1
  59. },
  60. "_lscale": {
  61. "__type__": "cc.Vec3",
  62. "x": 1,
  63. "y": 1,
  64. "z": 1
  65. },
  66. "_layer": 1073741824,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "背景",
  78. "_objFlags": 0,
  79. "_parent": {
  80. "__id__": 1
  81. },
  82. "_children": [
  83. {
  84. "__id__": 3
  85. }
  86. ],
  87. "_active": true,
  88. "_components": [
  89. {
  90. "__id__": 420
  91. },
  92. {
  93. "__id__": 422
  94. },
  95. {
  96. "__id__": 424
  97. },
  98. {
  99. "__id__": 426
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 428
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_layer": 1073741824,
  125. "_euler": {
  126. "__type__": "cc.Vec3",
  127. "x": 0,
  128. "y": 0,
  129. "z": 0
  130. },
  131. "_id": ""
  132. },
  133. {
  134. "__type__": "cc.Node",
  135. "_name": "布局",
  136. "_objFlags": 0,
  137. "_parent": {
  138. "__id__": 2
  139. },
  140. "_children": [
  141. {
  142. "__id__": 4
  143. },
  144. {
  145. "__id__": 28
  146. },
  147. {
  148. "__id__": 64
  149. },
  150. {
  151. "__id__": 171
  152. }
  153. ],
  154. "_active": true,
  155. "_components": [
  156. {
  157. "__id__": 413
  158. },
  159. {
  160. "__id__": 415
  161. },
  162. {
  163. "__id__": 417
  164. }
  165. ],
  166. "_prefab": {
  167. "__id__": 419
  168. },
  169. "_lpos": {
  170. "__type__": "cc.Vec3",
  171. "x": 0,
  172. "y": 0,
  173. "z": 0
  174. },
  175. "_lrot": {
  176. "__type__": "cc.Quat",
  177. "x": 0,
  178. "y": 0,
  179. "z": 0,
  180. "w": 1
  181. },
  182. "_lscale": {
  183. "__type__": "cc.Vec3",
  184. "x": 1,
  185. "y": 1,
  186. "z": 1
  187. },
  188. "_layer": 1073741824,
  189. "_euler": {
  190. "__type__": "cc.Vec3",
  191. "x": 0,
  192. "y": 0,
  193. "z": 0
  194. },
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.Node",
  199. "_name": "行-1",
  200. "_objFlags": 0,
  201. "_parent": {
  202. "__id__": 3
  203. },
  204. "_children": [
  205. {
  206. "__id__": 5
  207. },
  208. {
  209. "__id__": 15
  210. }
  211. ],
  212. "_active": true,
  213. "_components": [
  214. {
  215. "__id__": 21
  216. },
  217. {
  218. "__id__": 23
  219. },
  220. {
  221. "__id__": 25
  222. }
  223. ],
  224. "_prefab": {
  225. "__id__": 27
  226. },
  227. "_lpos": {
  228. "__type__": "cc.Vec3",
  229. "x": 0,
  230. "y": 597,
  231. "z": 0
  232. },
  233. "_lrot": {
  234. "__type__": "cc.Quat",
  235. "x": 0,
  236. "y": 0,
  237. "z": 0,
  238. "w": 1
  239. },
  240. "_lscale": {
  241. "__type__": "cc.Vec3",
  242. "x": 1,
  243. "y": 1,
  244. "z": 1
  245. },
  246. "_layer": 1073741824,
  247. "_euler": {
  248. "__type__": "cc.Vec3",
  249. "x": 0,
  250. "y": 0,
  251. "z": 0
  252. },
  253. "_id": ""
  254. },
  255. {
  256. "__type__": "cc.Node",
  257. "_name": "退出",
  258. "_objFlags": 0,
  259. "_parent": {
  260. "__id__": 4
  261. },
  262. "_children": [],
  263. "_active": true,
  264. "_components": [
  265. {
  266. "__id__": 6
  267. },
  268. {
  269. "__id__": 8
  270. },
  271. {
  272. "__id__": 10
  273. },
  274. {
  275. "__id__": 12
  276. }
  277. ],
  278. "_prefab": {
  279. "__id__": 14
  280. },
  281. "_lpos": {
  282. "__type__": "cc.Vec3",
  283. "x": -279.5,
  284. "y": 0,
  285. "z": 0
  286. },
  287. "_lrot": {
  288. "__type__": "cc.Quat",
  289. "x": 0,
  290. "y": 0,
  291. "z": 0,
  292. "w": 1
  293. },
  294. "_lscale": {
  295. "__type__": "cc.Vec3",
  296. "x": 1,
  297. "y": 1,
  298. "z": 1
  299. },
  300. "_layer": 1073741824,
  301. "_euler": {
  302. "__type__": "cc.Vec3",
  303. "x": 0,
  304. "y": 0,
  305. "z": 0
  306. },
  307. "_id": ""
  308. },
  309. {
  310. "__type__": "cc.UITransform",
  311. "_name": "",
  312. "_objFlags": 0,
  313. "node": {
  314. "__id__": 5
  315. },
  316. "_enabled": true,
  317. "__prefab": {
  318. "__id__": 7
  319. },
  320. "_priority": 0,
  321. "_contentSize": {
  322. "__type__": "cc.Size",
  323. "width": 98,
  324. "height": 93
  325. },
  326. "_anchorPoint": {
  327. "__type__": "cc.Vec2",
  328. "x": 0.5,
  329. "y": 0.5
  330. },
  331. "_id": ""
  332. },
  333. {
  334. "__type__": "cc.CompPrefabInfo",
  335. "fileId": "34OtCdXblGdZJJZ/6nenQF"
  336. },
  337. {
  338. "__type__": "cc.Sprite",
  339. "_name": "",
  340. "_objFlags": 0,
  341. "node": {
  342. "__id__": 5
  343. },
  344. "_enabled": true,
  345. "__prefab": {
  346. "__id__": 9
  347. },
  348. "_visFlags": 0,
  349. "_customMaterial": null,
  350. "_srcBlendFactor": 2,
  351. "_dstBlendFactor": 4,
  352. "_color": {
  353. "__type__": "cc.Color",
  354. "r": 255,
  355. "g": 255,
  356. "b": 255,
  357. "a": 255
  358. },
  359. "_spriteFrame": {
  360. "__uuid__": "86a94061-c411-46c9-bd42-432fd8076ceb@f9941"
  361. },
  362. "_type": 0,
  363. "_fillType": 0,
  364. "_sizeMode": 1,
  365. "_fillCenter": {
  366. "__type__": "cc.Vec2",
  367. "x": 0,
  368. "y": 0
  369. },
  370. "_fillStart": 0,
  371. "_fillRange": 0,
  372. "_isTrimmedMode": true,
  373. "_useGrayscale": false,
  374. "_atlas": null,
  375. "_id": ""
  376. },
  377. {
  378. "__type__": "cc.CompPrefabInfo",
  379. "fileId": "60+SEiL01MWoYtMMGcUXWY"
  380. },
  381. {
  382. "__type__": "cc.Button",
  383. "_name": "",
  384. "_objFlags": 0,
  385. "node": {
  386. "__id__": 5
  387. },
  388. "_enabled": true,
  389. "__prefab": {
  390. "__id__": 11
  391. },
  392. "clickEvents": [],
  393. "_interactable": true,
  394. "_transition": 3,
  395. "_normalColor": {
  396. "__type__": "cc.Color",
  397. "r": 255,
  398. "g": 255,
  399. "b": 255,
  400. "a": 255
  401. },
  402. "_hoverColor": {
  403. "__type__": "cc.Color",
  404. "r": 211,
  405. "g": 211,
  406. "b": 211,
  407. "a": 255
  408. },
  409. "_pressedColor": {
  410. "__type__": "cc.Color",
  411. "r": 255,
  412. "g": 255,
  413. "b": 255,
  414. "a": 255
  415. },
  416. "_disabledColor": {
  417. "__type__": "cc.Color",
  418. "r": 124,
  419. "g": 124,
  420. "b": 124,
  421. "a": 255
  422. },
  423. "_normalSprite": {
  424. "__uuid__": "86a94061-c411-46c9-bd42-432fd8076ceb@f9941"
  425. },
  426. "_hoverSprite": null,
  427. "_pressedSprite": null,
  428. "_disabledSprite": null,
  429. "_duration": 0.1,
  430. "_zoomScale": 1.2,
  431. "_target": null,
  432. "_id": ""
  433. },
  434. {
  435. "__type__": "cc.CompPrefabInfo",
  436. "fileId": "8cguOJfF1I+I8J6XHrorv8"
  437. },
  438. {
  439. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  440. "_name": "",
  441. "_objFlags": 0,
  442. "node": {
  443. "__id__": 5
  444. },
  445. "_enabled": true,
  446. "__prefab": {
  447. "__id__": 13
  448. },
  449. "clips": [
  450. {
  451. "__uuid__": "1d3965ff-d4b2-43ee-ab57-e777ac93c813"
  452. }
  453. ],
  454. "_volume": 1,
  455. "useGlobalVolume": true,
  456. "playOnLoad": true,
  457. "playOnTouch": false,
  458. "oneShot": true,
  459. "loop": false,
  460. "_id": ""
  461. },
  462. {
  463. "__type__": "cc.CompPrefabInfo",
  464. "fileId": "98W/O44ElBHL6Q1ASm9WXV"
  465. },
  466. {
  467. "__type__": "cc.PrefabInfo",
  468. "root": {
  469. "__id__": 1
  470. },
  471. "asset": {
  472. "__id__": 0
  473. },
  474. "fileId": "c0FNsvHuFBTb5kjYWXrYS9"
  475. },
  476. {
  477. "__type__": "cc.Node",
  478. "_name": "invite_title",
  479. "_objFlags": 0,
  480. "_parent": {
  481. "__id__": 4
  482. },
  483. "_children": [],
  484. "_active": true,
  485. "_components": [
  486. {
  487. "__id__": 16
  488. },
  489. {
  490. "__id__": 18
  491. }
  492. ],
  493. "_prefab": {
  494. "__id__": 20
  495. },
  496. "_lpos": {
  497. "__type__": "cc.Vec3",
  498. "x": 64,
  499. "y": 0,
  500. "z": 0
  501. },
  502. "_lrot": {
  503. "__type__": "cc.Quat",
  504. "x": 0,
  505. "y": 0,
  506. "z": 0,
  507. "w": 1
  508. },
  509. "_lscale": {
  510. "__type__": "cc.Vec3",
  511. "x": 1,
  512. "y": 1,
  513. "z": 1
  514. },
  515. "_layer": 1073741824,
  516. "_euler": {
  517. "__type__": "cc.Vec3",
  518. "x": 0,
  519. "y": 0,
  520. "z": 0
  521. },
  522. "_id": ""
  523. },
  524. {
  525. "__type__": "cc.UITransform",
  526. "_name": "",
  527. "_objFlags": 0,
  528. "node": {
  529. "__id__": 15
  530. },
  531. "_enabled": true,
  532. "__prefab": {
  533. "__id__": 17
  534. },
  535. "_priority": 0,
  536. "_contentSize": {
  537. "__type__": "cc.Size",
  538. "width": 529,
  539. "height": 51
  540. },
  541. "_anchorPoint": {
  542. "__type__": "cc.Vec2",
  543. "x": 0.5,
  544. "y": 0.5
  545. },
  546. "_id": ""
  547. },
  548. {
  549. "__type__": "cc.CompPrefabInfo",
  550. "fileId": "f3iBveOwxJxJLuvnZ2oS63"
  551. },
  552. {
  553. "__type__": "cc.Sprite",
  554. "_name": "",
  555. "_objFlags": 0,
  556. "node": {
  557. "__id__": 15
  558. },
  559. "_enabled": true,
  560. "__prefab": {
  561. "__id__": 19
  562. },
  563. "_visFlags": 0,
  564. "_customMaterial": null,
  565. "_srcBlendFactor": 2,
  566. "_dstBlendFactor": 4,
  567. "_color": {
  568. "__type__": "cc.Color",
  569. "r": 255,
  570. "g": 255,
  571. "b": 255,
  572. "a": 255
  573. },
  574. "_spriteFrame": {
  575. "__uuid__": "d6e57f6f-fa48-4a56-86fc-a1d38a287182@f9941"
  576. },
  577. "_type": 0,
  578. "_fillType": 0,
  579. "_sizeMode": 1,
  580. "_fillCenter": {
  581. "__type__": "cc.Vec2",
  582. "x": 0,
  583. "y": 0
  584. },
  585. "_fillStart": 0,
  586. "_fillRange": 0,
  587. "_isTrimmedMode": true,
  588. "_useGrayscale": false,
  589. "_atlas": null,
  590. "_id": ""
  591. },
  592. {
  593. "__type__": "cc.CompPrefabInfo",
  594. "fileId": "e6gbY3shdHq7xb0x3Zv0Ny"
  595. },
  596. {
  597. "__type__": "cc.PrefabInfo",
  598. "root": {
  599. "__id__": 1
  600. },
  601. "asset": {
  602. "__id__": 0
  603. },
  604. "fileId": "d676m+rF1PGqQBKDDy+mej"
  605. },
  606. {
  607. "__type__": "cc.UITransform",
  608. "_name": "",
  609. "_objFlags": 0,
  610. "node": {
  611. "__id__": 4
  612. },
  613. "_enabled": true,
  614. "__prefab": {
  615. "__id__": 22
  616. },
  617. "_priority": 0,
  618. "_contentSize": {
  619. "__type__": "cc.Size",
  620. "width": 657,
  621. "height": 100
  622. },
  623. "_anchorPoint": {
  624. "__type__": "cc.Vec2",
  625. "x": 0.5,
  626. "y": 0.5
  627. },
  628. "_id": ""
  629. },
  630. {
  631. "__type__": "cc.CompPrefabInfo",
  632. "fileId": "86FQ4/OlJAhKyaPn/mJUPL"
  633. },
  634. {
  635. "__type__": "cc.Layout",
  636. "_name": "",
  637. "_objFlags": 0,
  638. "node": {
  639. "__id__": 4
  640. },
  641. "_enabled": true,
  642. "__prefab": {
  643. "__id__": 24
  644. },
  645. "_resizeMode": 1,
  646. "_layoutType": 1,
  647. "_cellSize": {
  648. "__type__": "cc.Size",
  649. "width": 40,
  650. "height": 40
  651. },
  652. "_startAxis": 0,
  653. "_paddingLeft": 0,
  654. "_paddingRight": 0,
  655. "_paddingTop": 0,
  656. "_paddingBottom": 0,
  657. "_spacingX": 30,
  658. "_spacingY": 0,
  659. "_verticalDirection": 1,
  660. "_horizontalDirection": 0,
  661. "_constraint": 0,
  662. "_constraintNum": 2,
  663. "_affectedByScale": false,
  664. "_isAlign": true,
  665. "_id": ""
  666. },
  667. {
  668. "__type__": "cc.CompPrefabInfo",
  669. "fileId": "01c0fS21RCzIsWnwlq6rDs"
  670. },
  671. {
  672. "__type__": "cc.Widget",
  673. "_name": "",
  674. "_objFlags": 0,
  675. "node": {
  676. "__id__": 4
  677. },
  678. "_enabled": true,
  679. "__prefab": {
  680. "__id__": 26
  681. },
  682. "_alignFlags": 1,
  683. "_target": null,
  684. "_left": 0,
  685. "_right": 0,
  686. "_top": 20,
  687. "_bottom": 0,
  688. "_horizontalCenter": 0,
  689. "_verticalCenter": 0,
  690. "_isAbsLeft": true,
  691. "_isAbsRight": true,
  692. "_isAbsTop": true,
  693. "_isAbsBottom": true,
  694. "_isAbsHorizontalCenter": true,
  695. "_isAbsVerticalCenter": true,
  696. "_originalWidth": 0,
  697. "_originalHeight": 0,
  698. "_alignMode": 2,
  699. "_lockFlags": 0,
  700. "_id": ""
  701. },
  702. {
  703. "__type__": "cc.CompPrefabInfo",
  704. "fileId": "4eo68UigREpJp+1VAT8ytn"
  705. },
  706. {
  707. "__type__": "cc.PrefabInfo",
  708. "root": {
  709. "__id__": 1
  710. },
  711. "asset": {
  712. "__id__": 0
  713. },
  714. "fileId": "1bkZI4mOFAgoQxfb3fIVBd"
  715. },
  716. {
  717. "__type__": "cc.Node",
  718. "_name": "行-2",
  719. "_objFlags": 0,
  720. "_parent": {
  721. "__id__": 3
  722. },
  723. "_children": [
  724. {
  725. "__id__": 29
  726. },
  727. {
  728. "__id__": 46
  729. }
  730. ],
  731. "_active": true,
  732. "_components": [
  733. {
  734. "__id__": 57
  735. },
  736. {
  737. "__id__": 59
  738. },
  739. {
  740. "__id__": 61
  741. }
  742. ],
  743. "_prefab": {
  744. "__id__": 63
  745. },
  746. "_lpos": {
  747. "__type__": "cc.Vec3",
  748. "x": 0,
  749. "y": -537,
  750. "z": 0
  751. },
  752. "_lrot": {
  753. "__type__": "cc.Quat",
  754. "x": 0,
  755. "y": 0,
  756. "z": 0,
  757. "w": 1
  758. },
  759. "_lscale": {
  760. "__type__": "cc.Vec3",
  761. "x": 1,
  762. "y": 1,
  763. "z": 1
  764. },
  765. "_layer": 1073741824,
  766. "_euler": {
  767. "__type__": "cc.Vec3",
  768. "x": 0,
  769. "y": 0,
  770. "z": 0
  771. },
  772. "_id": ""
  773. },
  774. {
  775. "__type__": "cc.Node",
  776. "_name": "邀请好友",
  777. "_objFlags": 0,
  778. "_parent": {
  779. "__id__": 28
  780. },
  781. "_children": [
  782. {
  783. "__id__": 30
  784. }
  785. ],
  786. "_active": true,
  787. "_components": [
  788. {
  789. "__id__": 36
  790. },
  791. {
  792. "__id__": 38
  793. },
  794. {
  795. "__id__": 40
  796. },
  797. {
  798. "__id__": 43
  799. }
  800. ],
  801. "_prefab": {
  802. "__id__": 45
  803. },
  804. "_lpos": {
  805. "__type__": "cc.Vec3",
  806. "x": -245,
  807. "y": 0,
  808. "z": 0
  809. },
  810. "_lrot": {
  811. "__type__": "cc.Quat",
  812. "x": 0,
  813. "y": 0,
  814. "z": 0,
  815. "w": 1
  816. },
  817. "_lscale": {
  818. "__type__": "cc.Vec3",
  819. "x": 1,
  820. "y": 1,
  821. "z": 1
  822. },
  823. "_layer": 1073741824,
  824. "_euler": {
  825. "__type__": "cc.Vec3",
  826. "x": 0,
  827. "y": 0,
  828. "z": 0
  829. },
  830. "_id": ""
  831. },
  832. {
  833. "__type__": "cc.Node",
  834. "_name": "invite_redpoint",
  835. "_objFlags": 0,
  836. "_parent": {
  837. "__id__": 29
  838. },
  839. "_children": [],
  840. "_active": true,
  841. "_components": [
  842. {
  843. "__id__": 31
  844. },
  845. {
  846. "__id__": 33
  847. }
  848. ],
  849. "_prefab": {
  850. "__id__": 35
  851. },
  852. "_lpos": {
  853. "__type__": "cc.Vec3",
  854. "x": 38.439,
  855. "y": 62.545,
  856. "z": 0
  857. },
  858. "_lrot": {
  859. "__type__": "cc.Quat",
  860. "x": 0,
  861. "y": 0,
  862. "z": 0,
  863. "w": 1
  864. },
  865. "_lscale": {
  866. "__type__": "cc.Vec3",
  867. "x": 1,
  868. "y": 1,
  869. "z": 1
  870. },
  871. "_layer": 1073741824,
  872. "_euler": {
  873. "__type__": "cc.Vec3",
  874. "x": 0,
  875. "y": 0,
  876. "z": 0
  877. },
  878. "_id": ""
  879. },
  880. {
  881. "__type__": "cc.UITransform",
  882. "_name": "",
  883. "_objFlags": 0,
  884. "node": {
  885. "__id__": 30
  886. },
  887. "_enabled": true,
  888. "__prefab": {
  889. "__id__": 32
  890. },
  891. "_priority": 0,
  892. "_contentSize": {
  893. "__type__": "cc.Size",
  894. "width": 39,
  895. "height": 44
  896. },
  897. "_anchorPoint": {
  898. "__type__": "cc.Vec2",
  899. "x": 0.5,
  900. "y": 0.5
  901. },
  902. "_id": ""
  903. },
  904. {
  905. "__type__": "cc.CompPrefabInfo",
  906. "fileId": "15WL+ldDdOb5Ee4CKv3HZE"
  907. },
  908. {
  909. "__type__": "cc.Sprite",
  910. "_name": "",
  911. "_objFlags": 0,
  912. "node": {
  913. "__id__": 30
  914. },
  915. "_enabled": true,
  916. "__prefab": {
  917. "__id__": 34
  918. },
  919. "_visFlags": 0,
  920. "_customMaterial": null,
  921. "_srcBlendFactor": 2,
  922. "_dstBlendFactor": 4,
  923. "_color": {
  924. "__type__": "cc.Color",
  925. "r": 255,
  926. "g": 255,
  927. "b": 255,
  928. "a": 255
  929. },
  930. "_spriteFrame": {
  931. "__uuid__": "4234977e-a307-408b-a3f1-829ffa1b7a4d@f9941"
  932. },
  933. "_type": 0,
  934. "_fillType": 0,
  935. "_sizeMode": 1,
  936. "_fillCenter": {
  937. "__type__": "cc.Vec2",
  938. "x": 0,
  939. "y": 0
  940. },
  941. "_fillStart": 0,
  942. "_fillRange": 0,
  943. "_isTrimmedMode": true,
  944. "_useGrayscale": false,
  945. "_atlas": null,
  946. "_id": ""
  947. },
  948. {
  949. "__type__": "cc.CompPrefabInfo",
  950. "fileId": "6bIhCBx55NZK5whMMbMJvh"
  951. },
  952. {
  953. "__type__": "cc.PrefabInfo",
  954. "root": {
  955. "__id__": 1
  956. },
  957. "asset": {
  958. "__id__": 0
  959. },
  960. "fileId": "d9wJ0QsbxA0JK4HOGQzjOS"
  961. },
  962. {
  963. "__type__": "cc.UITransform",
  964. "_name": "",
  965. "_objFlags": 0,
  966. "node": {
  967. "__id__": 29
  968. },
  969. "_enabled": true,
  970. "__prefab": {
  971. "__id__": 37
  972. },
  973. "_priority": 0,
  974. "_contentSize": {
  975. "__type__": "cc.Size",
  976. "width": 170,
  977. "height": 100
  978. },
  979. "_anchorPoint": {
  980. "__type__": "cc.Vec2",
  981. "x": 0.5,
  982. "y": 0.5
  983. },
  984. "_id": ""
  985. },
  986. {
  987. "__type__": "cc.CompPrefabInfo",
  988. "fileId": "feZs2MXChFxqgFv+5VnUEl"
  989. },
  990. {
  991. "__type__": "cc.Sprite",
  992. "_name": "",
  993. "_objFlags": 0,
  994. "node": {
  995. "__id__": 29
  996. },
  997. "_enabled": true,
  998. "__prefab": {
  999. "__id__": 39
  1000. },
  1001. "_visFlags": 0,
  1002. "_customMaterial": null,
  1003. "_srcBlendFactor": 2,
  1004. "_dstBlendFactor": 4,
  1005. "_color": {
  1006. "__type__": "cc.Color",
  1007. "r": 255,
  1008. "g": 255,
  1009. "b": 255,
  1010. "a": 255
  1011. },
  1012. "_spriteFrame": {
  1013. "__uuid__": "38391553-26af-483c-add8-d78d70bf8043@f9941"
  1014. },
  1015. "_type": 0,
  1016. "_fillType": 0,
  1017. "_sizeMode": 1,
  1018. "_fillCenter": {
  1019. "__type__": "cc.Vec2",
  1020. "x": 0,
  1021. "y": 0
  1022. },
  1023. "_fillStart": 0,
  1024. "_fillRange": 0,
  1025. "_isTrimmedMode": true,
  1026. "_useGrayscale": false,
  1027. "_atlas": null,
  1028. "_id": ""
  1029. },
  1030. {
  1031. "__type__": "cc.CompPrefabInfo",
  1032. "fileId": "17HOvFTrNBWI8M0RGYWZ1N"
  1033. },
  1034. {
  1035. "__type__": "cc.Button",
  1036. "_name": "",
  1037. "_objFlags": 0,
  1038. "node": {
  1039. "__id__": 29
  1040. },
  1041. "_enabled": true,
  1042. "__prefab": {
  1043. "__id__": 41
  1044. },
  1045. "clickEvents": [
  1046. {
  1047. "__id__": 42
  1048. }
  1049. ],
  1050. "_interactable": true,
  1051. "_transition": 3,
  1052. "_normalColor": {
  1053. "__type__": "cc.Color",
  1054. "r": 255,
  1055. "g": 255,
  1056. "b": 255,
  1057. "a": 255
  1058. },
  1059. "_hoverColor": {
  1060. "__type__": "cc.Color",
  1061. "r": 211,
  1062. "g": 211,
  1063. "b": 211,
  1064. "a": 255
  1065. },
  1066. "_pressedColor": {
  1067. "__type__": "cc.Color",
  1068. "r": 255,
  1069. "g": 255,
  1070. "b": 255,
  1071. "a": 255
  1072. },
  1073. "_disabledColor": {
  1074. "__type__": "cc.Color",
  1075. "r": 124,
  1076. "g": 124,
  1077. "b": 124,
  1078. "a": 255
  1079. },
  1080. "_normalSprite": {
  1081. "__uuid__": "38391553-26af-483c-add8-d78d70bf8043@f9941"
  1082. },
  1083. "_hoverSprite": null,
  1084. "_pressedSprite": null,
  1085. "_disabledSprite": null,
  1086. "_duration": 0.1,
  1087. "_zoomScale": 1.2,
  1088. "_target": null,
  1089. "_id": ""
  1090. },
  1091. {
  1092. "__type__": "cc.CompPrefabInfo",
  1093. "fileId": "0e3NP5xVJFlqm89zlyoA1d"
  1094. },
  1095. {
  1096. "__type__": "cc.ClickEvent",
  1097. "target": {
  1098. "__id__": 1
  1099. },
  1100. "component": "",
  1101. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  1102. "handler": "share",
  1103. "customEventData": ""
  1104. },
  1105. {
  1106. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "node": {
  1110. "__id__": 29
  1111. },
  1112. "_enabled": true,
  1113. "__prefab": {
  1114. "__id__": 44
  1115. },
  1116. "clips": [
  1117. {
  1118. "__uuid__": "1d3965ff-d4b2-43ee-ab57-e777ac93c813"
  1119. }
  1120. ],
  1121. "_volume": 1,
  1122. "useGlobalVolume": true,
  1123. "playOnLoad": true,
  1124. "playOnTouch": false,
  1125. "oneShot": true,
  1126. "loop": false,
  1127. "_id": ""
  1128. },
  1129. {
  1130. "__type__": "cc.CompPrefabInfo",
  1131. "fileId": "1c35ORD/dMmYShY4UA1nkt"
  1132. },
  1133. {
  1134. "__type__": "cc.PrefabInfo",
  1135. "root": {
  1136. "__id__": 1
  1137. },
  1138. "asset": {
  1139. "__id__": 0
  1140. },
  1141. "fileId": "69zriU1VdKoLdaIDDzkSfV"
  1142. },
  1143. {
  1144. "__type__": "cc.Node",
  1145. "_name": "提现",
  1146. "_objFlags": 0,
  1147. "_parent": {
  1148. "__id__": 28
  1149. },
  1150. "_children": [],
  1151. "_active": true,
  1152. "_components": [
  1153. {
  1154. "__id__": 47
  1155. },
  1156. {
  1157. "__id__": 49
  1158. },
  1159. {
  1160. "__id__": 51
  1161. },
  1162. {
  1163. "__id__": 54
  1164. }
  1165. ],
  1166. "_prefab": {
  1167. "__id__": 56
  1168. },
  1169. "_lpos": {
  1170. "__type__": "cc.Vec3",
  1171. "x": 245,
  1172. "y": 0,
  1173. "z": 0
  1174. },
  1175. "_lrot": {
  1176. "__type__": "cc.Quat",
  1177. "x": 0,
  1178. "y": 0,
  1179. "z": 0,
  1180. "w": 1
  1181. },
  1182. "_lscale": {
  1183. "__type__": "cc.Vec3",
  1184. "x": 1,
  1185. "y": 1,
  1186. "z": 1
  1187. },
  1188. "_layer": 1073741824,
  1189. "_euler": {
  1190. "__type__": "cc.Vec3",
  1191. "x": 0,
  1192. "y": 0,
  1193. "z": 0
  1194. },
  1195. "_id": ""
  1196. },
  1197. {
  1198. "__type__": "cc.UITransform",
  1199. "_name": "",
  1200. "_objFlags": 0,
  1201. "node": {
  1202. "__id__": 46
  1203. },
  1204. "_enabled": true,
  1205. "__prefab": {
  1206. "__id__": 48
  1207. },
  1208. "_priority": 0,
  1209. "_contentSize": {
  1210. "__type__": "cc.Size",
  1211. "width": 170,
  1212. "height": 99
  1213. },
  1214. "_anchorPoint": {
  1215. "__type__": "cc.Vec2",
  1216. "x": 0.5,
  1217. "y": 0.5
  1218. },
  1219. "_id": ""
  1220. },
  1221. {
  1222. "__type__": "cc.CompPrefabInfo",
  1223. "fileId": "c8Q2k5jspI97yhVNSAgULb"
  1224. },
  1225. {
  1226. "__type__": "cc.Sprite",
  1227. "_name": "",
  1228. "_objFlags": 0,
  1229. "node": {
  1230. "__id__": 46
  1231. },
  1232. "_enabled": true,
  1233. "__prefab": {
  1234. "__id__": 50
  1235. },
  1236. "_visFlags": 0,
  1237. "_customMaterial": null,
  1238. "_srcBlendFactor": 2,
  1239. "_dstBlendFactor": 4,
  1240. "_color": {
  1241. "__type__": "cc.Color",
  1242. "r": 255,
  1243. "g": 255,
  1244. "b": 255,
  1245. "a": 255
  1246. },
  1247. "_spriteFrame": {
  1248. "__uuid__": "64bc00d7-9301-4e9e-b2bc-cb590bbd8b1a@f9941"
  1249. },
  1250. "_type": 0,
  1251. "_fillType": 0,
  1252. "_sizeMode": 1,
  1253. "_fillCenter": {
  1254. "__type__": "cc.Vec2",
  1255. "x": 0,
  1256. "y": 0
  1257. },
  1258. "_fillStart": 0,
  1259. "_fillRange": 0,
  1260. "_isTrimmedMode": true,
  1261. "_useGrayscale": false,
  1262. "_atlas": null,
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.CompPrefabInfo",
  1267. "fileId": "7alFqAOiBB/qXNG+apGdVc"
  1268. },
  1269. {
  1270. "__type__": "cc.Button",
  1271. "_name": "",
  1272. "_objFlags": 0,
  1273. "node": {
  1274. "__id__": 46
  1275. },
  1276. "_enabled": true,
  1277. "__prefab": {
  1278. "__id__": 52
  1279. },
  1280. "clickEvents": [
  1281. {
  1282. "__id__": 53
  1283. }
  1284. ],
  1285. "_interactable": true,
  1286. "_transition": 3,
  1287. "_normalColor": {
  1288. "__type__": "cc.Color",
  1289. "r": 255,
  1290. "g": 255,
  1291. "b": 255,
  1292. "a": 255
  1293. },
  1294. "_hoverColor": {
  1295. "__type__": "cc.Color",
  1296. "r": 211,
  1297. "g": 211,
  1298. "b": 211,
  1299. "a": 255
  1300. },
  1301. "_pressedColor": {
  1302. "__type__": "cc.Color",
  1303. "r": 255,
  1304. "g": 255,
  1305. "b": 255,
  1306. "a": 255
  1307. },
  1308. "_disabledColor": {
  1309. "__type__": "cc.Color",
  1310. "r": 124,
  1311. "g": 124,
  1312. "b": 124,
  1313. "a": 255
  1314. },
  1315. "_normalSprite": {
  1316. "__uuid__": "64bc00d7-9301-4e9e-b2bc-cb590bbd8b1a@f9941"
  1317. },
  1318. "_hoverSprite": null,
  1319. "_pressedSprite": null,
  1320. "_disabledSprite": null,
  1321. "_duration": 0.1,
  1322. "_zoomScale": 1.2,
  1323. "_target": null,
  1324. "_id": ""
  1325. },
  1326. {
  1327. "__type__": "cc.CompPrefabInfo",
  1328. "fileId": "57zZToY3dL+J19Hj1AXgzQ"
  1329. },
  1330. {
  1331. "__type__": "cc.ClickEvent",
  1332. "target": {
  1333. "__id__": 1
  1334. },
  1335. "component": "",
  1336. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  1337. "handler": "withDraw",
  1338. "customEventData": ""
  1339. },
  1340. {
  1341. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  1342. "_name": "",
  1343. "_objFlags": 0,
  1344. "node": {
  1345. "__id__": 46
  1346. },
  1347. "_enabled": true,
  1348. "__prefab": {
  1349. "__id__": 55
  1350. },
  1351. "clips": [
  1352. {
  1353. "__uuid__": "1d3965ff-d4b2-43ee-ab57-e777ac93c813"
  1354. }
  1355. ],
  1356. "_volume": 1,
  1357. "useGlobalVolume": true,
  1358. "playOnLoad": true,
  1359. "playOnTouch": false,
  1360. "oneShot": true,
  1361. "loop": false,
  1362. "_id": ""
  1363. },
  1364. {
  1365. "__type__": "cc.CompPrefabInfo",
  1366. "fileId": "d9JNUnEpxMELVsTiy6Q/LQ"
  1367. },
  1368. {
  1369. "__type__": "cc.PrefabInfo",
  1370. "root": {
  1371. "__id__": 1
  1372. },
  1373. "asset": {
  1374. "__id__": 0
  1375. },
  1376. "fileId": "71GahMTkVH3r/9i4nSyHL+"
  1377. },
  1378. {
  1379. "__type__": "cc.UITransform",
  1380. "_name": "",
  1381. "_objFlags": 0,
  1382. "node": {
  1383. "__id__": 28
  1384. },
  1385. "_enabled": true,
  1386. "__prefab": {
  1387. "__id__": 58
  1388. },
  1389. "_priority": 0,
  1390. "_contentSize": {
  1391. "__type__": "cc.Size",
  1392. "width": 660,
  1393. "height": 100
  1394. },
  1395. "_anchorPoint": {
  1396. "__type__": "cc.Vec2",
  1397. "x": 0.5,
  1398. "y": 0.5
  1399. },
  1400. "_id": ""
  1401. },
  1402. {
  1403. "__type__": "cc.CompPrefabInfo",
  1404. "fileId": "669S0IKdZOcrph0S6A95+2"
  1405. },
  1406. {
  1407. "__type__": "cc.Layout",
  1408. "_name": "",
  1409. "_objFlags": 0,
  1410. "node": {
  1411. "__id__": 28
  1412. },
  1413. "_enabled": true,
  1414. "__prefab": {
  1415. "__id__": 60
  1416. },
  1417. "_resizeMode": 1,
  1418. "_layoutType": 1,
  1419. "_cellSize": {
  1420. "__type__": "cc.Size",
  1421. "width": 40,
  1422. "height": 40
  1423. },
  1424. "_startAxis": 0,
  1425. "_paddingLeft": 0,
  1426. "_paddingRight": 0,
  1427. "_paddingTop": 0,
  1428. "_paddingBottom": 0,
  1429. "_spacingX": 320,
  1430. "_spacingY": 0,
  1431. "_verticalDirection": 1,
  1432. "_horizontalDirection": 0,
  1433. "_constraint": 0,
  1434. "_constraintNum": 2,
  1435. "_affectedByScale": false,
  1436. "_isAlign": true,
  1437. "_id": ""
  1438. },
  1439. {
  1440. "__type__": "cc.CompPrefabInfo",
  1441. "fileId": "22KAbb1i1OSbBAxJkJkS1F"
  1442. },
  1443. {
  1444. "__type__": "cc.Widget",
  1445. "_name": "",
  1446. "_objFlags": 0,
  1447. "node": {
  1448. "__id__": 28
  1449. },
  1450. "_enabled": true,
  1451. "__prefab": {
  1452. "__id__": 62
  1453. },
  1454. "_alignFlags": 4,
  1455. "_target": null,
  1456. "_left": 0,
  1457. "_right": 0,
  1458. "_top": 0,
  1459. "_bottom": 80,
  1460. "_horizontalCenter": 0,
  1461. "_verticalCenter": 0,
  1462. "_isAbsLeft": true,
  1463. "_isAbsRight": true,
  1464. "_isAbsTop": true,
  1465. "_isAbsBottom": true,
  1466. "_isAbsHorizontalCenter": true,
  1467. "_isAbsVerticalCenter": true,
  1468. "_originalWidth": 0,
  1469. "_originalHeight": 0,
  1470. "_alignMode": 2,
  1471. "_lockFlags": 0,
  1472. "_id": ""
  1473. },
  1474. {
  1475. "__type__": "cc.CompPrefabInfo",
  1476. "fileId": "96H2ZNYKhDgoy63Xx2ZN6j"
  1477. },
  1478. {
  1479. "__type__": "cc.PrefabInfo",
  1480. "root": {
  1481. "__id__": 1
  1482. },
  1483. "asset": {
  1484. "__id__": 0
  1485. },
  1486. "fileId": "73QaVTUvJPhoQfv1Q2qSzG"
  1487. },
  1488. {
  1489. "__type__": "cc.Node",
  1490. "_name": "行-3",
  1491. "_objFlags": 0,
  1492. "_parent": {
  1493. "__id__": 3
  1494. },
  1495. "_children": [
  1496. {
  1497. "__id__": 65
  1498. },
  1499. {
  1500. "__id__": 90
  1501. },
  1502. {
  1503. "__id__": 115
  1504. },
  1505. {
  1506. "__id__": 141
  1507. }
  1508. ],
  1509. "_active": true,
  1510. "_components": [
  1511. {
  1512. "__id__": 166
  1513. },
  1514. {
  1515. "__id__": 168
  1516. }
  1517. ],
  1518. "_prefab": {
  1519. "__id__": 170
  1520. },
  1521. "_lpos": {
  1522. "__type__": "cc.Vec3",
  1523. "x": 0,
  1524. "y": 0,
  1525. "z": 0
  1526. },
  1527. "_lrot": {
  1528. "__type__": "cc.Quat",
  1529. "x": 0,
  1530. "y": 0,
  1531. "z": 0,
  1532. "w": 1
  1533. },
  1534. "_lscale": {
  1535. "__type__": "cc.Vec3",
  1536. "x": 1,
  1537. "y": 1,
  1538. "z": 1
  1539. },
  1540. "_layer": 1073741824,
  1541. "_euler": {
  1542. "__type__": "cc.Vec3",
  1543. "x": 0,
  1544. "y": 0,
  1545. "z": 0
  1546. },
  1547. "_id": ""
  1548. },
  1549. {
  1550. "__type__": "cc.Node",
  1551. "_name": "一键领取",
  1552. "_objFlags": 0,
  1553. "_parent": {
  1554. "__id__": 64
  1555. },
  1556. "_children": [
  1557. {
  1558. "__id__": 66
  1559. },
  1560. {
  1561. "__id__": 72
  1562. }
  1563. ],
  1564. "_active": true,
  1565. "_components": [
  1566. {
  1567. "__id__": 78
  1568. },
  1569. {
  1570. "__id__": 80
  1571. },
  1572. {
  1573. "__id__": 82
  1574. },
  1575. {
  1576. "__id__": 85
  1577. },
  1578. {
  1579. "__id__": 87
  1580. }
  1581. ],
  1582. "_prefab": {
  1583. "__id__": 89
  1584. },
  1585. "_lpos": {
  1586. "__type__": "cc.Vec3",
  1587. "x": 315,
  1588. "y": 497,
  1589. "z": 0
  1590. },
  1591. "_lrot": {
  1592. "__type__": "cc.Quat",
  1593. "x": 0,
  1594. "y": 0,
  1595. "z": 0,
  1596. "w": 1
  1597. },
  1598. "_lscale": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 1,
  1601. "y": 1,
  1602. "z": 1
  1603. },
  1604. "_layer": 1073741824,
  1605. "_euler": {
  1606. "__type__": "cc.Vec3",
  1607. "x": 0,
  1608. "y": 0,
  1609. "z": 0
  1610. },
  1611. "_id": ""
  1612. },
  1613. {
  1614. "__type__": "cc.Node",
  1615. "_name": "invite_icon_3",
  1616. "_objFlags": 0,
  1617. "_parent": {
  1618. "__id__": 65
  1619. },
  1620. "_children": [],
  1621. "_active": true,
  1622. "_components": [
  1623. {
  1624. "__id__": 67
  1625. },
  1626. {
  1627. "__id__": 69
  1628. }
  1629. ],
  1630. "_prefab": {
  1631. "__id__": 71
  1632. },
  1633. "_lpos": {
  1634. "__type__": "cc.Vec3",
  1635. "x": 0,
  1636. "y": 0,
  1637. "z": 0
  1638. },
  1639. "_lrot": {
  1640. "__type__": "cc.Quat",
  1641. "x": 0,
  1642. "y": 0,
  1643. "z": 0,
  1644. "w": 1
  1645. },
  1646. "_lscale": {
  1647. "__type__": "cc.Vec3",
  1648. "x": 1,
  1649. "y": 1,
  1650. "z": 1
  1651. },
  1652. "_layer": 1073741824,
  1653. "_euler": {
  1654. "__type__": "cc.Vec3",
  1655. "x": 0,
  1656. "y": 0,
  1657. "z": 0
  1658. },
  1659. "_id": ""
  1660. },
  1661. {
  1662. "__type__": "cc.UITransform",
  1663. "_name": "",
  1664. "_objFlags": 0,
  1665. "node": {
  1666. "__id__": 66
  1667. },
  1668. "_enabled": true,
  1669. "__prefab": {
  1670. "__id__": 68
  1671. },
  1672. "_priority": 0,
  1673. "_contentSize": {
  1674. "__type__": "cc.Size",
  1675. "width": 43,
  1676. "height": 56
  1677. },
  1678. "_anchorPoint": {
  1679. "__type__": "cc.Vec2",
  1680. "x": 0.5,
  1681. "y": 0.5
  1682. },
  1683. "_id": ""
  1684. },
  1685. {
  1686. "__type__": "cc.CompPrefabInfo",
  1687. "fileId": "e8L2EhVONPeaYAht47yaWV"
  1688. },
  1689. {
  1690. "__type__": "cc.Sprite",
  1691. "_name": "",
  1692. "_objFlags": 0,
  1693. "node": {
  1694. "__id__": 66
  1695. },
  1696. "_enabled": true,
  1697. "__prefab": {
  1698. "__id__": 70
  1699. },
  1700. "_visFlags": 0,
  1701. "_customMaterial": null,
  1702. "_srcBlendFactor": 2,
  1703. "_dstBlendFactor": 4,
  1704. "_color": {
  1705. "__type__": "cc.Color",
  1706. "r": 255,
  1707. "g": 255,
  1708. "b": 255,
  1709. "a": 255
  1710. },
  1711. "_spriteFrame": {
  1712. "__uuid__": "32320bcc-a37e-4671-8a43-68eddac8a311@f9941"
  1713. },
  1714. "_type": 0,
  1715. "_fillType": 0,
  1716. "_sizeMode": 1,
  1717. "_fillCenter": {
  1718. "__type__": "cc.Vec2",
  1719. "x": 0,
  1720. "y": 0
  1721. },
  1722. "_fillStart": 0,
  1723. "_fillRange": 0,
  1724. "_isTrimmedMode": true,
  1725. "_useGrayscale": false,
  1726. "_atlas": null,
  1727. "_id": ""
  1728. },
  1729. {
  1730. "__type__": "cc.CompPrefabInfo",
  1731. "fileId": "9cufQKV4dIdpN3AHvAK3EA"
  1732. },
  1733. {
  1734. "__type__": "cc.PrefabInfo",
  1735. "root": {
  1736. "__id__": 1
  1737. },
  1738. "asset": {
  1739. "__id__": 0
  1740. },
  1741. "fileId": "04xnUw/R9GBobgxSewf2ro"
  1742. },
  1743. {
  1744. "__type__": "cc.Node",
  1745. "_name": "文字",
  1746. "_objFlags": 0,
  1747. "_parent": {
  1748. "__id__": 65
  1749. },
  1750. "_children": [],
  1751. "_active": true,
  1752. "_components": [
  1753. {
  1754. "__id__": 73
  1755. },
  1756. {
  1757. "__id__": 75
  1758. }
  1759. ],
  1760. "_prefab": {
  1761. "__id__": 77
  1762. },
  1763. "_lpos": {
  1764. "__type__": "cc.Vec3",
  1765. "x": 0,
  1766. "y": -28.15,
  1767. "z": 0
  1768. },
  1769. "_lrot": {
  1770. "__type__": "cc.Quat",
  1771. "x": 0,
  1772. "y": 0,
  1773. "z": 0,
  1774. "w": 1
  1775. },
  1776. "_lscale": {
  1777. "__type__": "cc.Vec3",
  1778. "x": 1,
  1779. "y": 1,
  1780. "z": 1
  1781. },
  1782. "_layer": 1073741824,
  1783. "_euler": {
  1784. "__type__": "cc.Vec3",
  1785. "x": 0,
  1786. "y": 0,
  1787. "z": 0
  1788. },
  1789. "_id": ""
  1790. },
  1791. {
  1792. "__type__": "cc.UITransform",
  1793. "_name": "",
  1794. "_objFlags": 0,
  1795. "node": {
  1796. "__id__": 72
  1797. },
  1798. "_enabled": true,
  1799. "__prefab": {
  1800. "__id__": 74
  1801. },
  1802. "_priority": 0,
  1803. "_contentSize": {
  1804. "__type__": "cc.Size",
  1805. "width": 76,
  1806. "height": 21
  1807. },
  1808. "_anchorPoint": {
  1809. "__type__": "cc.Vec2",
  1810. "x": 0.5,
  1811. "y": 0.5
  1812. },
  1813. "_id": ""
  1814. },
  1815. {
  1816. "__type__": "cc.CompPrefabInfo",
  1817. "fileId": "59PEfvxHtAo6F7mbaib3f2"
  1818. },
  1819. {
  1820. "__type__": "cc.Sprite",
  1821. "_name": "",
  1822. "_objFlags": 0,
  1823. "node": {
  1824. "__id__": 72
  1825. },
  1826. "_enabled": true,
  1827. "__prefab": {
  1828. "__id__": 76
  1829. },
  1830. "_visFlags": 0,
  1831. "_customMaterial": null,
  1832. "_srcBlendFactor": 2,
  1833. "_dstBlendFactor": 4,
  1834. "_color": {
  1835. "__type__": "cc.Color",
  1836. "r": 255,
  1837. "g": 255,
  1838. "b": 255,
  1839. "a": 255
  1840. },
  1841. "_spriteFrame": {
  1842. "__uuid__": "c150c63d-9f62-4bce-a80a-ac89f4f4bfc8@f9941"
  1843. },
  1844. "_type": 0,
  1845. "_fillType": 0,
  1846. "_sizeMode": 1,
  1847. "_fillCenter": {
  1848. "__type__": "cc.Vec2",
  1849. "x": 0,
  1850. "y": 0
  1851. },
  1852. "_fillStart": 0,
  1853. "_fillRange": 0,
  1854. "_isTrimmedMode": true,
  1855. "_useGrayscale": false,
  1856. "_atlas": null,
  1857. "_id": ""
  1858. },
  1859. {
  1860. "__type__": "cc.CompPrefabInfo",
  1861. "fileId": "e2nigR675Lx6U/esMN1X5J"
  1862. },
  1863. {
  1864. "__type__": "cc.PrefabInfo",
  1865. "root": {
  1866. "__id__": 1
  1867. },
  1868. "asset": {
  1869. "__id__": 0
  1870. },
  1871. "fileId": "83DlntcnJDKKe2bNk3T4or"
  1872. },
  1873. {
  1874. "__type__": "cc.UITransform",
  1875. "_name": "",
  1876. "_objFlags": 0,
  1877. "node": {
  1878. "__id__": 65
  1879. },
  1880. "_enabled": true,
  1881. "__prefab": {
  1882. "__id__": 79
  1883. },
  1884. "_priority": 0,
  1885. "_contentSize": {
  1886. "__type__": "cc.Size",
  1887. "width": 80,
  1888. "height": 80
  1889. },
  1890. "_anchorPoint": {
  1891. "__type__": "cc.Vec2",
  1892. "x": 0.5,
  1893. "y": 0.5
  1894. },
  1895. "_id": ""
  1896. },
  1897. {
  1898. "__type__": "cc.CompPrefabInfo",
  1899. "fileId": "15K95M7ipNhp0zVYpVF36u"
  1900. },
  1901. {
  1902. "__type__": "cc.Sprite",
  1903. "_name": "",
  1904. "_objFlags": 0,
  1905. "node": {
  1906. "__id__": 65
  1907. },
  1908. "_enabled": true,
  1909. "__prefab": {
  1910. "__id__": 81
  1911. },
  1912. "_visFlags": 0,
  1913. "_customMaterial": null,
  1914. "_srcBlendFactor": 2,
  1915. "_dstBlendFactor": 4,
  1916. "_color": {
  1917. "__type__": "cc.Color",
  1918. "r": 255,
  1919. "g": 255,
  1920. "b": 255,
  1921. "a": 255
  1922. },
  1923. "_spriteFrame": {
  1924. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  1925. },
  1926. "_type": 0,
  1927. "_fillType": 0,
  1928. "_sizeMode": 1,
  1929. "_fillCenter": {
  1930. "__type__": "cc.Vec2",
  1931. "x": 0,
  1932. "y": 0
  1933. },
  1934. "_fillStart": 0,
  1935. "_fillRange": 0,
  1936. "_isTrimmedMode": true,
  1937. "_useGrayscale": false,
  1938. "_atlas": null,
  1939. "_id": ""
  1940. },
  1941. {
  1942. "__type__": "cc.CompPrefabInfo",
  1943. "fileId": "94fPXr98xD7LL+zkcYY/TS"
  1944. },
  1945. {
  1946. "__type__": "cc.Button",
  1947. "_name": "",
  1948. "_objFlags": 0,
  1949. "node": {
  1950. "__id__": 65
  1951. },
  1952. "_enabled": true,
  1953. "__prefab": {
  1954. "__id__": 83
  1955. },
  1956. "clickEvents": [
  1957. {
  1958. "__id__": 84
  1959. }
  1960. ],
  1961. "_interactable": true,
  1962. "_transition": 3,
  1963. "_normalColor": {
  1964. "__type__": "cc.Color",
  1965. "r": 255,
  1966. "g": 255,
  1967. "b": 255,
  1968. "a": 255
  1969. },
  1970. "_hoverColor": {
  1971. "__type__": "cc.Color",
  1972. "r": 211,
  1973. "g": 211,
  1974. "b": 211,
  1975. "a": 255
  1976. },
  1977. "_pressedColor": {
  1978. "__type__": "cc.Color",
  1979. "r": 255,
  1980. "g": 255,
  1981. "b": 255,
  1982. "a": 255
  1983. },
  1984. "_disabledColor": {
  1985. "__type__": "cc.Color",
  1986. "r": 124,
  1987. "g": 124,
  1988. "b": 124,
  1989. "a": 255
  1990. },
  1991. "_normalSprite": {
  1992. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  1993. },
  1994. "_hoverSprite": null,
  1995. "_pressedSprite": null,
  1996. "_disabledSprite": null,
  1997. "_duration": 0.1,
  1998. "_zoomScale": 1.2,
  1999. "_target": null,
  2000. "_id": ""
  2001. },
  2002. {
  2003. "__type__": "cc.CompPrefabInfo",
  2004. "fileId": "36I0LO32pCrr+tup8KvPzK"
  2005. },
  2006. {
  2007. "__type__": "cc.ClickEvent",
  2008. "target": {
  2009. "__id__": 1
  2010. },
  2011. "component": "",
  2012. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  2013. "handler": "oneKeyGet",
  2014. "customEventData": ""
  2015. },
  2016. {
  2017. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2018. "_name": "",
  2019. "_objFlags": 0,
  2020. "node": {
  2021. "__id__": 65
  2022. },
  2023. "_enabled": true,
  2024. "__prefab": {
  2025. "__id__": 86
  2026. },
  2027. "clips": [
  2028. {
  2029. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  2030. }
  2031. ],
  2032. "_volume": 1,
  2033. "useGlobalVolume": true,
  2034. "playOnLoad": true,
  2035. "playOnTouch": false,
  2036. "oneShot": true,
  2037. "loop": false,
  2038. "_id": ""
  2039. },
  2040. {
  2041. "__type__": "cc.CompPrefabInfo",
  2042. "fileId": "64hBK0ep5CRIoCeC/2kNs1"
  2043. },
  2044. {
  2045. "__type__": "cc.Widget",
  2046. "_name": "",
  2047. "_objFlags": 0,
  2048. "node": {
  2049. "__id__": 65
  2050. },
  2051. "_enabled": true,
  2052. "__prefab": {
  2053. "__id__": 88
  2054. },
  2055. "_alignFlags": 33,
  2056. "_target": null,
  2057. "_left": 0,
  2058. "_right": 20,
  2059. "_top": 130,
  2060. "_bottom": 0,
  2061. "_horizontalCenter": 0,
  2062. "_verticalCenter": 0,
  2063. "_isAbsLeft": true,
  2064. "_isAbsRight": true,
  2065. "_isAbsTop": true,
  2066. "_isAbsBottom": true,
  2067. "_isAbsHorizontalCenter": true,
  2068. "_isAbsVerticalCenter": true,
  2069. "_originalWidth": 0,
  2070. "_originalHeight": 0,
  2071. "_alignMode": 2,
  2072. "_lockFlags": 0,
  2073. "_id": ""
  2074. },
  2075. {
  2076. "__type__": "cc.CompPrefabInfo",
  2077. "fileId": "4d3LHYib9OI5jzrhRNx0El"
  2078. },
  2079. {
  2080. "__type__": "cc.PrefabInfo",
  2081. "root": {
  2082. "__id__": 1
  2083. },
  2084. "asset": {
  2085. "__id__": 0
  2086. },
  2087. "fileId": "0eaOiPtIBI1bH0cVyDKwEh"
  2088. },
  2089. {
  2090. "__type__": "cc.Node",
  2091. "_name": "我的上级",
  2092. "_objFlags": 0,
  2093. "_parent": {
  2094. "__id__": 64
  2095. },
  2096. "_children": [
  2097. {
  2098. "__id__": 91
  2099. },
  2100. {
  2101. "__id__": 97
  2102. }
  2103. ],
  2104. "_active": true,
  2105. "_components": [
  2106. {
  2107. "__id__": 103
  2108. },
  2109. {
  2110. "__id__": 105
  2111. },
  2112. {
  2113. "__id__": 107
  2114. },
  2115. {
  2116. "__id__": 110
  2117. },
  2118. {
  2119. "__id__": 112
  2120. }
  2121. ],
  2122. "_prefab": {
  2123. "__id__": 114
  2124. },
  2125. "_lpos": {
  2126. "__type__": "cc.Vec3",
  2127. "x": 315,
  2128. "y": 397,
  2129. "z": 0
  2130. },
  2131. "_lrot": {
  2132. "__type__": "cc.Quat",
  2133. "x": 0,
  2134. "y": 0,
  2135. "z": 0,
  2136. "w": 1
  2137. },
  2138. "_lscale": {
  2139. "__type__": "cc.Vec3",
  2140. "x": 1,
  2141. "y": 1,
  2142. "z": 1
  2143. },
  2144. "_layer": 1073741824,
  2145. "_euler": {
  2146. "__type__": "cc.Vec3",
  2147. "x": 0,
  2148. "y": 0,
  2149. "z": 0
  2150. },
  2151. "_id": ""
  2152. },
  2153. {
  2154. "__type__": "cc.Node",
  2155. "_name": "invite_icon_1",
  2156. "_objFlags": 0,
  2157. "_parent": {
  2158. "__id__": 90
  2159. },
  2160. "_children": [],
  2161. "_active": true,
  2162. "_components": [
  2163. {
  2164. "__id__": 92
  2165. },
  2166. {
  2167. "__id__": 94
  2168. }
  2169. ],
  2170. "_prefab": {
  2171. "__id__": 96
  2172. },
  2173. "_lpos": {
  2174. "__type__": "cc.Vec3",
  2175. "x": 0,
  2176. "y": 0,
  2177. "z": 0
  2178. },
  2179. "_lrot": {
  2180. "__type__": "cc.Quat",
  2181. "x": 0,
  2182. "y": 0,
  2183. "z": 0,
  2184. "w": 1
  2185. },
  2186. "_lscale": {
  2187. "__type__": "cc.Vec3",
  2188. "x": 1,
  2189. "y": 1,
  2190. "z": 1
  2191. },
  2192. "_layer": 1073741824,
  2193. "_euler": {
  2194. "__type__": "cc.Vec3",
  2195. "x": 0,
  2196. "y": 0,
  2197. "z": 0
  2198. },
  2199. "_id": ""
  2200. },
  2201. {
  2202. "__type__": "cc.UITransform",
  2203. "_name": "",
  2204. "_objFlags": 0,
  2205. "node": {
  2206. "__id__": 91
  2207. },
  2208. "_enabled": true,
  2209. "__prefab": {
  2210. "__id__": 93
  2211. },
  2212. "_priority": 0,
  2213. "_contentSize": {
  2214. "__type__": "cc.Size",
  2215. "width": 61,
  2216. "height": 45
  2217. },
  2218. "_anchorPoint": {
  2219. "__type__": "cc.Vec2",
  2220. "x": 0.5,
  2221. "y": 0.5
  2222. },
  2223. "_id": ""
  2224. },
  2225. {
  2226. "__type__": "cc.CompPrefabInfo",
  2227. "fileId": "ceHWqWdJ5JHqjmW2fd/m6t"
  2228. },
  2229. {
  2230. "__type__": "cc.Sprite",
  2231. "_name": "",
  2232. "_objFlags": 0,
  2233. "node": {
  2234. "__id__": 91
  2235. },
  2236. "_enabled": true,
  2237. "__prefab": {
  2238. "__id__": 95
  2239. },
  2240. "_visFlags": 0,
  2241. "_customMaterial": null,
  2242. "_srcBlendFactor": 2,
  2243. "_dstBlendFactor": 4,
  2244. "_color": {
  2245. "__type__": "cc.Color",
  2246. "r": 255,
  2247. "g": 255,
  2248. "b": 255,
  2249. "a": 255
  2250. },
  2251. "_spriteFrame": {
  2252. "__uuid__": "9842e2c4-e3b4-4a8f-ba71-0957ade5c312@f9941"
  2253. },
  2254. "_type": 0,
  2255. "_fillType": 0,
  2256. "_sizeMode": 1,
  2257. "_fillCenter": {
  2258. "__type__": "cc.Vec2",
  2259. "x": 0,
  2260. "y": 0
  2261. },
  2262. "_fillStart": 0,
  2263. "_fillRange": 0,
  2264. "_isTrimmedMode": true,
  2265. "_useGrayscale": false,
  2266. "_atlas": null,
  2267. "_id": ""
  2268. },
  2269. {
  2270. "__type__": "cc.CompPrefabInfo",
  2271. "fileId": "3dK3X3Xi5MPYuJdLcsyGqN"
  2272. },
  2273. {
  2274. "__type__": "cc.PrefabInfo",
  2275. "root": {
  2276. "__id__": 1
  2277. },
  2278. "asset": {
  2279. "__id__": 0
  2280. },
  2281. "fileId": "68MXuHPNBCF6Zq6RiR+RNg"
  2282. },
  2283. {
  2284. "__type__": "cc.Node",
  2285. "_name": "文字",
  2286. "_objFlags": 0,
  2287. "_parent": {
  2288. "__id__": 90
  2289. },
  2290. "_children": [],
  2291. "_active": true,
  2292. "_components": [
  2293. {
  2294. "__id__": 98
  2295. },
  2296. {
  2297. "__id__": 100
  2298. }
  2299. ],
  2300. "_prefab": {
  2301. "__id__": 102
  2302. },
  2303. "_lpos": {
  2304. "__type__": "cc.Vec3",
  2305. "x": 0,
  2306. "y": -28.15,
  2307. "z": 0
  2308. },
  2309. "_lrot": {
  2310. "__type__": "cc.Quat",
  2311. "x": 0,
  2312. "y": 0,
  2313. "z": 0,
  2314. "w": 1
  2315. },
  2316. "_lscale": {
  2317. "__type__": "cc.Vec3",
  2318. "x": 1,
  2319. "y": 1,
  2320. "z": 1
  2321. },
  2322. "_layer": 1073741824,
  2323. "_euler": {
  2324. "__type__": "cc.Vec3",
  2325. "x": 0,
  2326. "y": 0,
  2327. "z": 0
  2328. },
  2329. "_id": ""
  2330. },
  2331. {
  2332. "__type__": "cc.UITransform",
  2333. "_name": "",
  2334. "_objFlags": 0,
  2335. "node": {
  2336. "__id__": 97
  2337. },
  2338. "_enabled": true,
  2339. "__prefab": {
  2340. "__id__": 99
  2341. },
  2342. "_priority": 0,
  2343. "_contentSize": {
  2344. "__type__": "cc.Size",
  2345. "width": 76,
  2346. "height": 21
  2347. },
  2348. "_anchorPoint": {
  2349. "__type__": "cc.Vec2",
  2350. "x": 0.5,
  2351. "y": 0.5
  2352. },
  2353. "_id": ""
  2354. },
  2355. {
  2356. "__type__": "cc.CompPrefabInfo",
  2357. "fileId": "d9RVvDl0tP/7pHVmS4ic7D"
  2358. },
  2359. {
  2360. "__type__": "cc.Sprite",
  2361. "_name": "",
  2362. "_objFlags": 0,
  2363. "node": {
  2364. "__id__": 97
  2365. },
  2366. "_enabled": true,
  2367. "__prefab": {
  2368. "__id__": 101
  2369. },
  2370. "_visFlags": 0,
  2371. "_customMaterial": null,
  2372. "_srcBlendFactor": 2,
  2373. "_dstBlendFactor": 4,
  2374. "_color": {
  2375. "__type__": "cc.Color",
  2376. "r": 255,
  2377. "g": 255,
  2378. "b": 255,
  2379. "a": 255
  2380. },
  2381. "_spriteFrame": {
  2382. "__uuid__": "e904b186-665a-44e8-b8a2-81af65269e8f@f9941"
  2383. },
  2384. "_type": 0,
  2385. "_fillType": 0,
  2386. "_sizeMode": 1,
  2387. "_fillCenter": {
  2388. "__type__": "cc.Vec2",
  2389. "x": 0,
  2390. "y": 0
  2391. },
  2392. "_fillStart": 0,
  2393. "_fillRange": 0,
  2394. "_isTrimmedMode": true,
  2395. "_useGrayscale": false,
  2396. "_atlas": null,
  2397. "_id": ""
  2398. },
  2399. {
  2400. "__type__": "cc.CompPrefabInfo",
  2401. "fileId": "13hY9Z6EdFTpqQvVJ3dF3S"
  2402. },
  2403. {
  2404. "__type__": "cc.PrefabInfo",
  2405. "root": {
  2406. "__id__": 1
  2407. },
  2408. "asset": {
  2409. "__id__": 0
  2410. },
  2411. "fileId": "32wPs8luFEOLKTveGfZym4"
  2412. },
  2413. {
  2414. "__type__": "cc.UITransform",
  2415. "_name": "",
  2416. "_objFlags": 0,
  2417. "node": {
  2418. "__id__": 90
  2419. },
  2420. "_enabled": true,
  2421. "__prefab": {
  2422. "__id__": 104
  2423. },
  2424. "_priority": 0,
  2425. "_contentSize": {
  2426. "__type__": "cc.Size",
  2427. "width": 80,
  2428. "height": 80
  2429. },
  2430. "_anchorPoint": {
  2431. "__type__": "cc.Vec2",
  2432. "x": 0.5,
  2433. "y": 0.5
  2434. },
  2435. "_id": ""
  2436. },
  2437. {
  2438. "__type__": "cc.CompPrefabInfo",
  2439. "fileId": "1f7thmzf1DkJGLZ+OrNs7K"
  2440. },
  2441. {
  2442. "__type__": "cc.Sprite",
  2443. "_name": "",
  2444. "_objFlags": 0,
  2445. "node": {
  2446. "__id__": 90
  2447. },
  2448. "_enabled": true,
  2449. "__prefab": {
  2450. "__id__": 106
  2451. },
  2452. "_visFlags": 0,
  2453. "_customMaterial": null,
  2454. "_srcBlendFactor": 2,
  2455. "_dstBlendFactor": 4,
  2456. "_color": {
  2457. "__type__": "cc.Color",
  2458. "r": 255,
  2459. "g": 255,
  2460. "b": 255,
  2461. "a": 255
  2462. },
  2463. "_spriteFrame": {
  2464. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  2465. },
  2466. "_type": 0,
  2467. "_fillType": 0,
  2468. "_sizeMode": 1,
  2469. "_fillCenter": {
  2470. "__type__": "cc.Vec2",
  2471. "x": 0,
  2472. "y": 0
  2473. },
  2474. "_fillStart": 0,
  2475. "_fillRange": 0,
  2476. "_isTrimmedMode": true,
  2477. "_useGrayscale": false,
  2478. "_atlas": null,
  2479. "_id": ""
  2480. },
  2481. {
  2482. "__type__": "cc.CompPrefabInfo",
  2483. "fileId": "fbaT5oD49FooZL7qfCr2Pf"
  2484. },
  2485. {
  2486. "__type__": "cc.Button",
  2487. "_name": "",
  2488. "_objFlags": 0,
  2489. "node": {
  2490. "__id__": 90
  2491. },
  2492. "_enabled": true,
  2493. "__prefab": {
  2494. "__id__": 108
  2495. },
  2496. "clickEvents": [
  2497. {
  2498. "__id__": 109
  2499. }
  2500. ],
  2501. "_interactable": true,
  2502. "_transition": 3,
  2503. "_normalColor": {
  2504. "__type__": "cc.Color",
  2505. "r": 255,
  2506. "g": 255,
  2507. "b": 255,
  2508. "a": 255
  2509. },
  2510. "_hoverColor": {
  2511. "__type__": "cc.Color",
  2512. "r": 211,
  2513. "g": 211,
  2514. "b": 211,
  2515. "a": 255
  2516. },
  2517. "_pressedColor": {
  2518. "__type__": "cc.Color",
  2519. "r": 255,
  2520. "g": 255,
  2521. "b": 255,
  2522. "a": 255
  2523. },
  2524. "_disabledColor": {
  2525. "__type__": "cc.Color",
  2526. "r": 124,
  2527. "g": 124,
  2528. "b": 124,
  2529. "a": 255
  2530. },
  2531. "_normalSprite": {
  2532. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  2533. },
  2534. "_hoverSprite": null,
  2535. "_pressedSprite": null,
  2536. "_disabledSprite": null,
  2537. "_duration": 0.1,
  2538. "_zoomScale": 1.2,
  2539. "_target": null,
  2540. "_id": ""
  2541. },
  2542. {
  2543. "__type__": "cc.CompPrefabInfo",
  2544. "fileId": "c6V4Vjp01AsKJ3Ut35tyPg"
  2545. },
  2546. {
  2547. "__type__": "cc.ClickEvent",
  2548. "target": {
  2549. "__id__": 1
  2550. },
  2551. "component": "",
  2552. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  2553. "handler": "myTeacher",
  2554. "customEventData": ""
  2555. },
  2556. {
  2557. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2558. "_name": "",
  2559. "_objFlags": 0,
  2560. "node": {
  2561. "__id__": 90
  2562. },
  2563. "_enabled": true,
  2564. "__prefab": {
  2565. "__id__": 111
  2566. },
  2567. "clips": [
  2568. {
  2569. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  2570. }
  2571. ],
  2572. "_volume": 1,
  2573. "useGlobalVolume": true,
  2574. "playOnLoad": true,
  2575. "playOnTouch": false,
  2576. "oneShot": true,
  2577. "loop": false,
  2578. "_id": ""
  2579. },
  2580. {
  2581. "__type__": "cc.CompPrefabInfo",
  2582. "fileId": "31NVETGN9Ok6KX77M59CE8"
  2583. },
  2584. {
  2585. "__type__": "cc.Widget",
  2586. "_name": "",
  2587. "_objFlags": 0,
  2588. "node": {
  2589. "__id__": 90
  2590. },
  2591. "_enabled": true,
  2592. "__prefab": {
  2593. "__id__": 113
  2594. },
  2595. "_alignFlags": 33,
  2596. "_target": null,
  2597. "_left": 0,
  2598. "_right": 20,
  2599. "_top": 230,
  2600. "_bottom": 0,
  2601. "_horizontalCenter": 0,
  2602. "_verticalCenter": 0,
  2603. "_isAbsLeft": true,
  2604. "_isAbsRight": true,
  2605. "_isAbsTop": true,
  2606. "_isAbsBottom": true,
  2607. "_isAbsHorizontalCenter": true,
  2608. "_isAbsVerticalCenter": true,
  2609. "_originalWidth": 0,
  2610. "_originalHeight": 0,
  2611. "_alignMode": 2,
  2612. "_lockFlags": 0,
  2613. "_id": ""
  2614. },
  2615. {
  2616. "__type__": "cc.CompPrefabInfo",
  2617. "fileId": "4bJhMEhK9FHZzuGfoqHq3F"
  2618. },
  2619. {
  2620. "__type__": "cc.PrefabInfo",
  2621. "root": {
  2622. "__id__": 1
  2623. },
  2624. "asset": {
  2625. "__id__": 0
  2626. },
  2627. "fileId": "des4OJ5BNDM5DdpVw3HCPv"
  2628. },
  2629. {
  2630. "__type__": "cc.Node",
  2631. "_name": "规则说明",
  2632. "_objFlags": 0,
  2633. "_parent": {
  2634. "__id__": 64
  2635. },
  2636. "_children": [
  2637. {
  2638. "__id__": 116
  2639. },
  2640. {
  2641. "__id__": 122
  2642. }
  2643. ],
  2644. "_active": true,
  2645. "_components": [
  2646. {
  2647. "__id__": 128
  2648. },
  2649. {
  2650. "__id__": 130
  2651. },
  2652. {
  2653. "__id__": 132
  2654. },
  2655. {
  2656. "__id__": 134
  2657. },
  2658. {
  2659. "__id__": 136
  2660. },
  2661. {
  2662. "__id__": 138
  2663. }
  2664. ],
  2665. "_prefab": {
  2666. "__id__": 140
  2667. },
  2668. "_lpos": {
  2669. "__type__": "cc.Vec3",
  2670. "x": 315,
  2671. "y": 297,
  2672. "z": 0
  2673. },
  2674. "_lrot": {
  2675. "__type__": "cc.Quat",
  2676. "x": 0,
  2677. "y": 0,
  2678. "z": 0,
  2679. "w": 1
  2680. },
  2681. "_lscale": {
  2682. "__type__": "cc.Vec3",
  2683. "x": 1,
  2684. "y": 1,
  2685. "z": 1
  2686. },
  2687. "_layer": 1073741824,
  2688. "_euler": {
  2689. "__type__": "cc.Vec3",
  2690. "x": 0,
  2691. "y": 0,
  2692. "z": 0
  2693. },
  2694. "_id": ""
  2695. },
  2696. {
  2697. "__type__": "cc.Node",
  2698. "_name": "invite_icon_0",
  2699. "_objFlags": 0,
  2700. "_parent": {
  2701. "__id__": 115
  2702. },
  2703. "_children": [],
  2704. "_active": true,
  2705. "_components": [
  2706. {
  2707. "__id__": 117
  2708. },
  2709. {
  2710. "__id__": 119
  2711. }
  2712. ],
  2713. "_prefab": {
  2714. "__id__": 121
  2715. },
  2716. "_lpos": {
  2717. "__type__": "cc.Vec3",
  2718. "x": 0,
  2719. "y": 0,
  2720. "z": 0
  2721. },
  2722. "_lrot": {
  2723. "__type__": "cc.Quat",
  2724. "x": 0,
  2725. "y": 0,
  2726. "z": 0,
  2727. "w": 1
  2728. },
  2729. "_lscale": {
  2730. "__type__": "cc.Vec3",
  2731. "x": 1,
  2732. "y": 1,
  2733. "z": 1
  2734. },
  2735. "_layer": 1073741824,
  2736. "_euler": {
  2737. "__type__": "cc.Vec3",
  2738. "x": 0,
  2739. "y": 0,
  2740. "z": 0
  2741. },
  2742. "_id": ""
  2743. },
  2744. {
  2745. "__type__": "cc.UITransform",
  2746. "_name": "",
  2747. "_objFlags": 0,
  2748. "node": {
  2749. "__id__": 116
  2750. },
  2751. "_enabled": true,
  2752. "__prefab": {
  2753. "__id__": 118
  2754. },
  2755. "_priority": 0,
  2756. "_contentSize": {
  2757. "__type__": "cc.Size",
  2758. "width": 43,
  2759. "height": 53
  2760. },
  2761. "_anchorPoint": {
  2762. "__type__": "cc.Vec2",
  2763. "x": 0.5,
  2764. "y": 0.5
  2765. },
  2766. "_id": ""
  2767. },
  2768. {
  2769. "__type__": "cc.CompPrefabInfo",
  2770. "fileId": "6be5/9Gf9HpYawwWAekJSH"
  2771. },
  2772. {
  2773. "__type__": "cc.Sprite",
  2774. "_name": "",
  2775. "_objFlags": 0,
  2776. "node": {
  2777. "__id__": 116
  2778. },
  2779. "_enabled": true,
  2780. "__prefab": {
  2781. "__id__": 120
  2782. },
  2783. "_visFlags": 0,
  2784. "_customMaterial": null,
  2785. "_srcBlendFactor": 2,
  2786. "_dstBlendFactor": 4,
  2787. "_color": {
  2788. "__type__": "cc.Color",
  2789. "r": 255,
  2790. "g": 255,
  2791. "b": 255,
  2792. "a": 255
  2793. },
  2794. "_spriteFrame": {
  2795. "__uuid__": "65e9a846-145c-47ef-8490-2ab8bf4b7fa9@f9941"
  2796. },
  2797. "_type": 0,
  2798. "_fillType": 0,
  2799. "_sizeMode": 1,
  2800. "_fillCenter": {
  2801. "__type__": "cc.Vec2",
  2802. "x": 0,
  2803. "y": 0
  2804. },
  2805. "_fillStart": 0,
  2806. "_fillRange": 0,
  2807. "_isTrimmedMode": true,
  2808. "_useGrayscale": false,
  2809. "_atlas": null,
  2810. "_id": ""
  2811. },
  2812. {
  2813. "__type__": "cc.CompPrefabInfo",
  2814. "fileId": "cfO29Hyz5OhJb5mILwieLk"
  2815. },
  2816. {
  2817. "__type__": "cc.PrefabInfo",
  2818. "root": {
  2819. "__id__": 1
  2820. },
  2821. "asset": {
  2822. "__id__": 0
  2823. },
  2824. "fileId": "ber6cE319ItocH0bQLXAwz"
  2825. },
  2826. {
  2827. "__type__": "cc.Node",
  2828. "_name": "文字",
  2829. "_objFlags": 0,
  2830. "_parent": {
  2831. "__id__": 115
  2832. },
  2833. "_children": [],
  2834. "_active": true,
  2835. "_components": [
  2836. {
  2837. "__id__": 123
  2838. },
  2839. {
  2840. "__id__": 125
  2841. }
  2842. ],
  2843. "_prefab": {
  2844. "__id__": 127
  2845. },
  2846. "_lpos": {
  2847. "__type__": "cc.Vec3",
  2848. "x": 0,
  2849. "y": -28.15,
  2850. "z": 0
  2851. },
  2852. "_lrot": {
  2853. "__type__": "cc.Quat",
  2854. "x": 0,
  2855. "y": 0,
  2856. "z": 0,
  2857. "w": 1
  2858. },
  2859. "_lscale": {
  2860. "__type__": "cc.Vec3",
  2861. "x": 1,
  2862. "y": 1,
  2863. "z": 1
  2864. },
  2865. "_layer": 1073741824,
  2866. "_euler": {
  2867. "__type__": "cc.Vec3",
  2868. "x": 0,
  2869. "y": 0,
  2870. "z": 0
  2871. },
  2872. "_id": ""
  2873. },
  2874. {
  2875. "__type__": "cc.UITransform",
  2876. "_name": "",
  2877. "_objFlags": 0,
  2878. "node": {
  2879. "__id__": 122
  2880. },
  2881. "_enabled": true,
  2882. "__prefab": {
  2883. "__id__": 124
  2884. },
  2885. "_priority": 0,
  2886. "_contentSize": {
  2887. "__type__": "cc.Size",
  2888. "width": 76,
  2889. "height": 21
  2890. },
  2891. "_anchorPoint": {
  2892. "__type__": "cc.Vec2",
  2893. "x": 0.5,
  2894. "y": 0.5
  2895. },
  2896. "_id": ""
  2897. },
  2898. {
  2899. "__type__": "cc.CompPrefabInfo",
  2900. "fileId": "0arjbMKDFGF46iV0WEOVve"
  2901. },
  2902. {
  2903. "__type__": "cc.Sprite",
  2904. "_name": "",
  2905. "_objFlags": 0,
  2906. "node": {
  2907. "__id__": 122
  2908. },
  2909. "_enabled": true,
  2910. "__prefab": {
  2911. "__id__": 126
  2912. },
  2913. "_visFlags": 0,
  2914. "_customMaterial": null,
  2915. "_srcBlendFactor": 2,
  2916. "_dstBlendFactor": 4,
  2917. "_color": {
  2918. "__type__": "cc.Color",
  2919. "r": 255,
  2920. "g": 255,
  2921. "b": 255,
  2922. "a": 255
  2923. },
  2924. "_spriteFrame": {
  2925. "__uuid__": "59a39228-d8c2-4b69-b336-a84e2de1f313@f9941"
  2926. },
  2927. "_type": 0,
  2928. "_fillType": 0,
  2929. "_sizeMode": 1,
  2930. "_fillCenter": {
  2931. "__type__": "cc.Vec2",
  2932. "x": 0,
  2933. "y": 0
  2934. },
  2935. "_fillStart": 0,
  2936. "_fillRange": 0,
  2937. "_isTrimmedMode": true,
  2938. "_useGrayscale": false,
  2939. "_atlas": null,
  2940. "_id": ""
  2941. },
  2942. {
  2943. "__type__": "cc.CompPrefabInfo",
  2944. "fileId": "421mAL2pxDf4fYeIssaWRa"
  2945. },
  2946. {
  2947. "__type__": "cc.PrefabInfo",
  2948. "root": {
  2949. "__id__": 1
  2950. },
  2951. "asset": {
  2952. "__id__": 0
  2953. },
  2954. "fileId": "5fEaChncFBJbEfwp7ZTcm7"
  2955. },
  2956. {
  2957. "__type__": "cc.UITransform",
  2958. "_name": "",
  2959. "_objFlags": 0,
  2960. "node": {
  2961. "__id__": 115
  2962. },
  2963. "_enabled": true,
  2964. "__prefab": {
  2965. "__id__": 129
  2966. },
  2967. "_priority": 0,
  2968. "_contentSize": {
  2969. "__type__": "cc.Size",
  2970. "width": 80,
  2971. "height": 80
  2972. },
  2973. "_anchorPoint": {
  2974. "__type__": "cc.Vec2",
  2975. "x": 0.5,
  2976. "y": 0.5
  2977. },
  2978. "_id": ""
  2979. },
  2980. {
  2981. "__type__": "cc.CompPrefabInfo",
  2982. "fileId": "fcEvVw7wdE4p0b95zMM3h/"
  2983. },
  2984. {
  2985. "__type__": "cc.Sprite",
  2986. "_name": "",
  2987. "_objFlags": 0,
  2988. "node": {
  2989. "__id__": 115
  2990. },
  2991. "_enabled": true,
  2992. "__prefab": {
  2993. "__id__": 131
  2994. },
  2995. "_visFlags": 0,
  2996. "_customMaterial": null,
  2997. "_srcBlendFactor": 2,
  2998. "_dstBlendFactor": 4,
  2999. "_color": {
  3000. "__type__": "cc.Color",
  3001. "r": 255,
  3002. "g": 255,
  3003. "b": 255,
  3004. "a": 255
  3005. },
  3006. "_spriteFrame": {
  3007. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  3008. },
  3009. "_type": 0,
  3010. "_fillType": 0,
  3011. "_sizeMode": 1,
  3012. "_fillCenter": {
  3013. "__type__": "cc.Vec2",
  3014. "x": 0,
  3015. "y": 0
  3016. },
  3017. "_fillStart": 0,
  3018. "_fillRange": 0,
  3019. "_isTrimmedMode": true,
  3020. "_useGrayscale": false,
  3021. "_atlas": null,
  3022. "_id": ""
  3023. },
  3024. {
  3025. "__type__": "cc.CompPrefabInfo",
  3026. "fileId": "c1Y/7RZ2pE2524wkzgVkqH"
  3027. },
  3028. {
  3029. "__type__": "cc.Button",
  3030. "_name": "",
  3031. "_objFlags": 0,
  3032. "node": {
  3033. "__id__": 115
  3034. },
  3035. "_enabled": true,
  3036. "__prefab": {
  3037. "__id__": 133
  3038. },
  3039. "clickEvents": [],
  3040. "_interactable": true,
  3041. "_transition": 3,
  3042. "_normalColor": {
  3043. "__type__": "cc.Color",
  3044. "r": 255,
  3045. "g": 255,
  3046. "b": 255,
  3047. "a": 255
  3048. },
  3049. "_hoverColor": {
  3050. "__type__": "cc.Color",
  3051. "r": 211,
  3052. "g": 211,
  3053. "b": 211,
  3054. "a": 255
  3055. },
  3056. "_pressedColor": {
  3057. "__type__": "cc.Color",
  3058. "r": 255,
  3059. "g": 255,
  3060. "b": 255,
  3061. "a": 255
  3062. },
  3063. "_disabledColor": {
  3064. "__type__": "cc.Color",
  3065. "r": 124,
  3066. "g": 124,
  3067. "b": 124,
  3068. "a": 255
  3069. },
  3070. "_normalSprite": {
  3071. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  3072. },
  3073. "_hoverSprite": null,
  3074. "_pressedSprite": null,
  3075. "_disabledSprite": null,
  3076. "_duration": 0.1,
  3077. "_zoomScale": 1.2,
  3078. "_target": null,
  3079. "_id": ""
  3080. },
  3081. {
  3082. "__type__": "cc.CompPrefabInfo",
  3083. "fileId": "a5akMmPzNLt73NuAcme8c9"
  3084. },
  3085. {
  3086. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  3087. "_name": "",
  3088. "_objFlags": 0,
  3089. "node": {
  3090. "__id__": 115
  3091. },
  3092. "_enabled": true,
  3093. "__prefab": {
  3094. "__id__": 135
  3095. },
  3096. "clips": [
  3097. {
  3098. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  3099. }
  3100. ],
  3101. "_volume": 1,
  3102. "useGlobalVolume": true,
  3103. "playOnLoad": true,
  3104. "playOnTouch": false,
  3105. "oneShot": true,
  3106. "loop": false,
  3107. "_id": ""
  3108. },
  3109. {
  3110. "__type__": "cc.CompPrefabInfo",
  3111. "fileId": "3a7cL3Y5VLAIXG5l1xOUy7"
  3112. },
  3113. {
  3114. "__type__": "cc.Widget",
  3115. "_name": "",
  3116. "_objFlags": 0,
  3117. "node": {
  3118. "__id__": 115
  3119. },
  3120. "_enabled": true,
  3121. "__prefab": {
  3122. "__id__": 137
  3123. },
  3124. "_alignFlags": 33,
  3125. "_target": null,
  3126. "_left": 0,
  3127. "_right": 20,
  3128. "_top": 330,
  3129. "_bottom": 0,
  3130. "_horizontalCenter": 0,
  3131. "_verticalCenter": 0,
  3132. "_isAbsLeft": true,
  3133. "_isAbsRight": true,
  3134. "_isAbsTop": true,
  3135. "_isAbsBottom": true,
  3136. "_isAbsHorizontalCenter": true,
  3137. "_isAbsVerticalCenter": true,
  3138. "_originalWidth": 0,
  3139. "_originalHeight": 0,
  3140. "_alignMode": 2,
  3141. "_lockFlags": 0,
  3142. "_id": ""
  3143. },
  3144. {
  3145. "__type__": "cc.CompPrefabInfo",
  3146. "fileId": "d04tMNZ/9PqadUp6wgiHGu"
  3147. },
  3148. {
  3149. "__type__": "5dbc7RZgppH0phbd/ybYswr",
  3150. "_name": "",
  3151. "_objFlags": 0,
  3152. "node": {
  3153. "__id__": 115
  3154. },
  3155. "_enabled": true,
  3156. "__prefab": {
  3157. "__id__": 139
  3158. },
  3159. "prefabPath": "Prefabs/InviteWindow/InviteRoleWindow",
  3160. "openMode": 0,
  3161. "params": [],
  3162. "openFroms": [
  3163. {
  3164. "__id__": 115
  3165. }
  3166. ],
  3167. "_id": ""
  3168. },
  3169. {
  3170. "__type__": "cc.CompPrefabInfo",
  3171. "fileId": "6ehX+m4fZNFqI+f5kVElWK"
  3172. },
  3173. {
  3174. "__type__": "cc.PrefabInfo",
  3175. "root": {
  3176. "__id__": 1
  3177. },
  3178. "asset": {
  3179. "__id__": 0
  3180. },
  3181. "fileId": "a5SpLDVapAeLbsXeLFcanI"
  3182. },
  3183. {
  3184. "__type__": "cc.Node",
  3185. "_name": "更多好友",
  3186. "_objFlags": 0,
  3187. "_parent": {
  3188. "__id__": 64
  3189. },
  3190. "_children": [
  3191. {
  3192. "__id__": 142
  3193. },
  3194. {
  3195. "__id__": 148
  3196. }
  3197. ],
  3198. "_active": true,
  3199. "_components": [
  3200. {
  3201. "__id__": 154
  3202. },
  3203. {
  3204. "__id__": 156
  3205. },
  3206. {
  3207. "__id__": 158
  3208. },
  3209. {
  3210. "__id__": 161
  3211. },
  3212. {
  3213. "__id__": 163
  3214. }
  3215. ],
  3216. "_prefab": {
  3217. "__id__": 165
  3218. },
  3219. "_lpos": {
  3220. "__type__": "cc.Vec3",
  3221. "x": -315,
  3222. "y": 497,
  3223. "z": 0
  3224. },
  3225. "_lrot": {
  3226. "__type__": "cc.Quat",
  3227. "x": 0,
  3228. "y": 0,
  3229. "z": 0,
  3230. "w": 1
  3231. },
  3232. "_lscale": {
  3233. "__type__": "cc.Vec3",
  3234. "x": 1,
  3235. "y": 1,
  3236. "z": 1
  3237. },
  3238. "_layer": 1073741824,
  3239. "_euler": {
  3240. "__type__": "cc.Vec3",
  3241. "x": 0,
  3242. "y": 0,
  3243. "z": 0
  3244. },
  3245. "_id": ""
  3246. },
  3247. {
  3248. "__type__": "cc.Node",
  3249. "_name": "invite_icon_2",
  3250. "_objFlags": 0,
  3251. "_parent": {
  3252. "__id__": 141
  3253. },
  3254. "_children": [],
  3255. "_active": true,
  3256. "_components": [
  3257. {
  3258. "__id__": 143
  3259. },
  3260. {
  3261. "__id__": 145
  3262. }
  3263. ],
  3264. "_prefab": {
  3265. "__id__": 147
  3266. },
  3267. "_lpos": {
  3268. "__type__": "cc.Vec3",
  3269. "x": 0,
  3270. "y": 0,
  3271. "z": 0
  3272. },
  3273. "_lrot": {
  3274. "__type__": "cc.Quat",
  3275. "x": 0,
  3276. "y": 0,
  3277. "z": 0,
  3278. "w": 1
  3279. },
  3280. "_lscale": {
  3281. "__type__": "cc.Vec3",
  3282. "x": 1,
  3283. "y": 1,
  3284. "z": 1
  3285. },
  3286. "_layer": 1073741824,
  3287. "_euler": {
  3288. "__type__": "cc.Vec3",
  3289. "x": 0,
  3290. "y": 0,
  3291. "z": 0
  3292. },
  3293. "_id": ""
  3294. },
  3295. {
  3296. "__type__": "cc.UITransform",
  3297. "_name": "",
  3298. "_objFlags": 0,
  3299. "node": {
  3300. "__id__": 142
  3301. },
  3302. "_enabled": true,
  3303. "__prefab": {
  3304. "__id__": 144
  3305. },
  3306. "_priority": 0,
  3307. "_contentSize": {
  3308. "__type__": "cc.Size",
  3309. "width": 52,
  3310. "height": 56
  3311. },
  3312. "_anchorPoint": {
  3313. "__type__": "cc.Vec2",
  3314. "x": 0.5,
  3315. "y": 0.5
  3316. },
  3317. "_id": ""
  3318. },
  3319. {
  3320. "__type__": "cc.CompPrefabInfo",
  3321. "fileId": "3fZykLm7xCPIOFTFUUF1On"
  3322. },
  3323. {
  3324. "__type__": "cc.Sprite",
  3325. "_name": "",
  3326. "_objFlags": 0,
  3327. "node": {
  3328. "__id__": 142
  3329. },
  3330. "_enabled": true,
  3331. "__prefab": {
  3332. "__id__": 146
  3333. },
  3334. "_visFlags": 0,
  3335. "_customMaterial": null,
  3336. "_srcBlendFactor": 2,
  3337. "_dstBlendFactor": 4,
  3338. "_color": {
  3339. "__type__": "cc.Color",
  3340. "r": 255,
  3341. "g": 255,
  3342. "b": 255,
  3343. "a": 255
  3344. },
  3345. "_spriteFrame": {
  3346. "__uuid__": "1984d258-fe55-489e-8e1b-753ef148877b@f9941"
  3347. },
  3348. "_type": 0,
  3349. "_fillType": 0,
  3350. "_sizeMode": 1,
  3351. "_fillCenter": {
  3352. "__type__": "cc.Vec2",
  3353. "x": 0,
  3354. "y": 0
  3355. },
  3356. "_fillStart": 0,
  3357. "_fillRange": 0,
  3358. "_isTrimmedMode": true,
  3359. "_useGrayscale": false,
  3360. "_atlas": null,
  3361. "_id": ""
  3362. },
  3363. {
  3364. "__type__": "cc.CompPrefabInfo",
  3365. "fileId": "e76Z7077ZEoYEhVqW3kKt1"
  3366. },
  3367. {
  3368. "__type__": "cc.PrefabInfo",
  3369. "root": {
  3370. "__id__": 1
  3371. },
  3372. "asset": {
  3373. "__id__": 0
  3374. },
  3375. "fileId": "f352ug0xxJPZe/G5cfwUlO"
  3376. },
  3377. {
  3378. "__type__": "cc.Node",
  3379. "_name": "文字",
  3380. "_objFlags": 0,
  3381. "_parent": {
  3382. "__id__": 141
  3383. },
  3384. "_children": [],
  3385. "_active": true,
  3386. "_components": [
  3387. {
  3388. "__id__": 149
  3389. },
  3390. {
  3391. "__id__": 151
  3392. }
  3393. ],
  3394. "_prefab": {
  3395. "__id__": 153
  3396. },
  3397. "_lpos": {
  3398. "__type__": "cc.Vec3",
  3399. "x": 0,
  3400. "y": -28.15,
  3401. "z": 0
  3402. },
  3403. "_lrot": {
  3404. "__type__": "cc.Quat",
  3405. "x": 0,
  3406. "y": 0,
  3407. "z": 0,
  3408. "w": 1
  3409. },
  3410. "_lscale": {
  3411. "__type__": "cc.Vec3",
  3412. "x": 1,
  3413. "y": 1,
  3414. "z": 1
  3415. },
  3416. "_layer": 1073741824,
  3417. "_euler": {
  3418. "__type__": "cc.Vec3",
  3419. "x": 0,
  3420. "y": 0,
  3421. "z": 0
  3422. },
  3423. "_id": ""
  3424. },
  3425. {
  3426. "__type__": "cc.UITransform",
  3427. "_name": "",
  3428. "_objFlags": 0,
  3429. "node": {
  3430. "__id__": 148
  3431. },
  3432. "_enabled": true,
  3433. "__prefab": {
  3434. "__id__": 150
  3435. },
  3436. "_priority": 0,
  3437. "_contentSize": {
  3438. "__type__": "cc.Size",
  3439. "width": 76,
  3440. "height": 20
  3441. },
  3442. "_anchorPoint": {
  3443. "__type__": "cc.Vec2",
  3444. "x": 0.5,
  3445. "y": 0.5
  3446. },
  3447. "_id": ""
  3448. },
  3449. {
  3450. "__type__": "cc.CompPrefabInfo",
  3451. "fileId": "b5T1N1CJxEFb6+E6syNJS0"
  3452. },
  3453. {
  3454. "__type__": "cc.Sprite",
  3455. "_name": "",
  3456. "_objFlags": 0,
  3457. "node": {
  3458. "__id__": 148
  3459. },
  3460. "_enabled": true,
  3461. "__prefab": {
  3462. "__id__": 152
  3463. },
  3464. "_visFlags": 0,
  3465. "_customMaterial": null,
  3466. "_srcBlendFactor": 2,
  3467. "_dstBlendFactor": 4,
  3468. "_color": {
  3469. "__type__": "cc.Color",
  3470. "r": 255,
  3471. "g": 255,
  3472. "b": 255,
  3473. "a": 255
  3474. },
  3475. "_spriteFrame": {
  3476. "__uuid__": "72081937-cd9d-4c25-b53d-4b44fd84f4fc@f9941"
  3477. },
  3478. "_type": 0,
  3479. "_fillType": 0,
  3480. "_sizeMode": 1,
  3481. "_fillCenter": {
  3482. "__type__": "cc.Vec2",
  3483. "x": 0,
  3484. "y": 0
  3485. },
  3486. "_fillStart": 0,
  3487. "_fillRange": 0,
  3488. "_isTrimmedMode": true,
  3489. "_useGrayscale": false,
  3490. "_atlas": null,
  3491. "_id": ""
  3492. },
  3493. {
  3494. "__type__": "cc.CompPrefabInfo",
  3495. "fileId": "f4j/WLFK5DJJy4u60qpota"
  3496. },
  3497. {
  3498. "__type__": "cc.PrefabInfo",
  3499. "root": {
  3500. "__id__": 1
  3501. },
  3502. "asset": {
  3503. "__id__": 0
  3504. },
  3505. "fileId": "6e3hBiH2hNBI0pEVmAt/RH"
  3506. },
  3507. {
  3508. "__type__": "cc.UITransform",
  3509. "_name": "",
  3510. "_objFlags": 0,
  3511. "node": {
  3512. "__id__": 141
  3513. },
  3514. "_enabled": true,
  3515. "__prefab": {
  3516. "__id__": 155
  3517. },
  3518. "_priority": 0,
  3519. "_contentSize": {
  3520. "__type__": "cc.Size",
  3521. "width": 80,
  3522. "height": 80
  3523. },
  3524. "_anchorPoint": {
  3525. "__type__": "cc.Vec2",
  3526. "x": 0.5,
  3527. "y": 0.5
  3528. },
  3529. "_id": ""
  3530. },
  3531. {
  3532. "__type__": "cc.CompPrefabInfo",
  3533. "fileId": "43UfsSKjxP6aHcwSx8KZ4O"
  3534. },
  3535. {
  3536. "__type__": "cc.Sprite",
  3537. "_name": "",
  3538. "_objFlags": 0,
  3539. "node": {
  3540. "__id__": 141
  3541. },
  3542. "_enabled": true,
  3543. "__prefab": {
  3544. "__id__": 157
  3545. },
  3546. "_visFlags": 0,
  3547. "_customMaterial": null,
  3548. "_srcBlendFactor": 2,
  3549. "_dstBlendFactor": 4,
  3550. "_color": {
  3551. "__type__": "cc.Color",
  3552. "r": 255,
  3553. "g": 255,
  3554. "b": 255,
  3555. "a": 255
  3556. },
  3557. "_spriteFrame": {
  3558. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  3559. },
  3560. "_type": 0,
  3561. "_fillType": 0,
  3562. "_sizeMode": 1,
  3563. "_fillCenter": {
  3564. "__type__": "cc.Vec2",
  3565. "x": 0,
  3566. "y": 0
  3567. },
  3568. "_fillStart": 0,
  3569. "_fillRange": 0,
  3570. "_isTrimmedMode": true,
  3571. "_useGrayscale": false,
  3572. "_atlas": null,
  3573. "_id": ""
  3574. },
  3575. {
  3576. "__type__": "cc.CompPrefabInfo",
  3577. "fileId": "7aGsLR7WFDcoq3T38heW5O"
  3578. },
  3579. {
  3580. "__type__": "cc.Button",
  3581. "_name": "",
  3582. "_objFlags": 0,
  3583. "node": {
  3584. "__id__": 141
  3585. },
  3586. "_enabled": true,
  3587. "__prefab": {
  3588. "__id__": 159
  3589. },
  3590. "clickEvents": [
  3591. {
  3592. "__id__": 160
  3593. }
  3594. ],
  3595. "_interactable": true,
  3596. "_transition": 3,
  3597. "_normalColor": {
  3598. "__type__": "cc.Color",
  3599. "r": 255,
  3600. "g": 255,
  3601. "b": 255,
  3602. "a": 255
  3603. },
  3604. "_hoverColor": {
  3605. "__type__": "cc.Color",
  3606. "r": 211,
  3607. "g": 211,
  3608. "b": 211,
  3609. "a": 255
  3610. },
  3611. "_pressedColor": {
  3612. "__type__": "cc.Color",
  3613. "r": 255,
  3614. "g": 255,
  3615. "b": 255,
  3616. "a": 255
  3617. },
  3618. "_disabledColor": {
  3619. "__type__": "cc.Color",
  3620. "r": 124,
  3621. "g": 124,
  3622. "b": 124,
  3623. "a": 255
  3624. },
  3625. "_normalSprite": {
  3626. "__uuid__": "e59efd2b-4b4f-4ae9-9aea-c6913a685563@f9941"
  3627. },
  3628. "_hoverSprite": null,
  3629. "_pressedSprite": null,
  3630. "_disabledSprite": null,
  3631. "_duration": 0.1,
  3632. "_zoomScale": 1.2,
  3633. "_target": null,
  3634. "_id": ""
  3635. },
  3636. {
  3637. "__type__": "cc.CompPrefabInfo",
  3638. "fileId": "f3W7ETt/RCO6PvHxrQbzEN"
  3639. },
  3640. {
  3641. "__type__": "cc.ClickEvent",
  3642. "target": {
  3643. "__id__": 1
  3644. },
  3645. "component": "",
  3646. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  3647. "handler": "moreFriend",
  3648. "customEventData": ""
  3649. },
  3650. {
  3651. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  3652. "_name": "",
  3653. "_objFlags": 0,
  3654. "node": {
  3655. "__id__": 141
  3656. },
  3657. "_enabled": true,
  3658. "__prefab": {
  3659. "__id__": 162
  3660. },
  3661. "clips": [
  3662. {
  3663. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  3664. }
  3665. ],
  3666. "_volume": 1,
  3667. "useGlobalVolume": true,
  3668. "playOnLoad": true,
  3669. "playOnTouch": false,
  3670. "oneShot": true,
  3671. "loop": false,
  3672. "_id": ""
  3673. },
  3674. {
  3675. "__type__": "cc.CompPrefabInfo",
  3676. "fileId": "3aDwlS+B9AWr199t3CltGD"
  3677. },
  3678. {
  3679. "__type__": "cc.Widget",
  3680. "_name": "",
  3681. "_objFlags": 0,
  3682. "node": {
  3683. "__id__": 141
  3684. },
  3685. "_enabled": true,
  3686. "__prefab": {
  3687. "__id__": 164
  3688. },
  3689. "_alignFlags": 9,
  3690. "_target": null,
  3691. "_left": 20,
  3692. "_right": 0,
  3693. "_top": 130,
  3694. "_bottom": 0,
  3695. "_horizontalCenter": 0,
  3696. "_verticalCenter": 0,
  3697. "_isAbsLeft": true,
  3698. "_isAbsRight": true,
  3699. "_isAbsTop": true,
  3700. "_isAbsBottom": true,
  3701. "_isAbsHorizontalCenter": true,
  3702. "_isAbsVerticalCenter": true,
  3703. "_originalWidth": 0,
  3704. "_originalHeight": 0,
  3705. "_alignMode": 2,
  3706. "_lockFlags": 0,
  3707. "_id": ""
  3708. },
  3709. {
  3710. "__type__": "cc.CompPrefabInfo",
  3711. "fileId": "4d28UA41BMdpbaS0Y73qYL"
  3712. },
  3713. {
  3714. "__type__": "cc.PrefabInfo",
  3715. "root": {
  3716. "__id__": 1
  3717. },
  3718. "asset": {
  3719. "__id__": 0
  3720. },
  3721. "fileId": "14NmN4tCpEgY6u+xpXoXeQ"
  3722. },
  3723. {
  3724. "__type__": "cc.UITransform",
  3725. "_name": "",
  3726. "_objFlags": 0,
  3727. "node": {
  3728. "__id__": 64
  3729. },
  3730. "_enabled": true,
  3731. "__prefab": {
  3732. "__id__": 167
  3733. },
  3734. "_priority": 0,
  3735. "_contentSize": {
  3736. "__type__": "cc.Size",
  3737. "width": 750,
  3738. "height": 1334
  3739. },
  3740. "_anchorPoint": {
  3741. "__type__": "cc.Vec2",
  3742. "x": 0.5,
  3743. "y": 0.5
  3744. },
  3745. "_id": ""
  3746. },
  3747. {
  3748. "__type__": "cc.CompPrefabInfo",
  3749. "fileId": "0aJqTtjxdBtbXDYmpsROMf"
  3750. },
  3751. {
  3752. "__type__": "cc.Widget",
  3753. "_name": "",
  3754. "_objFlags": 0,
  3755. "node": {
  3756. "__id__": 64
  3757. },
  3758. "_enabled": true,
  3759. "__prefab": {
  3760. "__id__": 169
  3761. },
  3762. "_alignFlags": 45,
  3763. "_target": null,
  3764. "_left": 0,
  3765. "_right": 0,
  3766. "_top": 0,
  3767. "_bottom": 0,
  3768. "_horizontalCenter": 0,
  3769. "_verticalCenter": 0,
  3770. "_isAbsLeft": true,
  3771. "_isAbsRight": true,
  3772. "_isAbsTop": true,
  3773. "_isAbsBottom": true,
  3774. "_isAbsHorizontalCenter": true,
  3775. "_isAbsVerticalCenter": true,
  3776. "_originalWidth": 0,
  3777. "_originalHeight": 0,
  3778. "_alignMode": 2,
  3779. "_lockFlags": 0,
  3780. "_id": ""
  3781. },
  3782. {
  3783. "__type__": "cc.CompPrefabInfo",
  3784. "fileId": "92JwO+X7FMLodDtbCPqGIW"
  3785. },
  3786. {
  3787. "__type__": "cc.PrefabInfo",
  3788. "root": {
  3789. "__id__": 1
  3790. },
  3791. "asset": {
  3792. "__id__": 0
  3793. },
  3794. "fileId": "5avs6e+jBHaJ15ap5x8Ozl"
  3795. },
  3796. {
  3797. "__type__": "cc.Node",
  3798. "_name": "主界面",
  3799. "_objFlags": 0,
  3800. "_parent": {
  3801. "__id__": 3
  3802. },
  3803. "_children": [
  3804. {
  3805. "__id__": 172
  3806. },
  3807. {
  3808. "__id__": 274
  3809. },
  3810. {
  3811. "__id__": 298
  3812. },
  3813. {
  3814. "__id__": 320
  3815. },
  3816. {
  3817. "__id__": 342
  3818. },
  3819. {
  3820. "__id__": 364
  3821. },
  3822. {
  3823. "__id__": 386
  3824. }
  3825. ],
  3826. "_active": true,
  3827. "_components": [
  3828. {
  3829. "__id__": 408
  3830. },
  3831. {
  3832. "__id__": 410
  3833. }
  3834. ],
  3835. "_prefab": {
  3836. "__id__": 412
  3837. },
  3838. "_lpos": {
  3839. "__type__": "cc.Vec3",
  3840. "x": 0,
  3841. "y": 0,
  3842. "z": 0
  3843. },
  3844. "_lrot": {
  3845. "__type__": "cc.Quat",
  3846. "x": 0,
  3847. "y": 0,
  3848. "z": 0,
  3849. "w": 1
  3850. },
  3851. "_lscale": {
  3852. "__type__": "cc.Vec3",
  3853. "x": 1,
  3854. "y": 1,
  3855. "z": 1
  3856. },
  3857. "_layer": 1073741824,
  3858. "_euler": {
  3859. "__type__": "cc.Vec3",
  3860. "x": 0,
  3861. "y": 0,
  3862. "z": 0
  3863. },
  3864. "_id": ""
  3865. },
  3866. {
  3867. "__type__": "cc.Node",
  3868. "_name": "水壶",
  3869. "_objFlags": 0,
  3870. "_parent": {
  3871. "__id__": 171
  3872. },
  3873. "_children": [
  3874. {
  3875. "__id__": 173
  3876. },
  3877. {
  3878. "__id__": 181
  3879. },
  3880. {
  3881. "__id__": 261
  3882. }
  3883. ],
  3884. "_active": true,
  3885. "_components": [
  3886. {
  3887. "__id__": 269
  3888. },
  3889. {
  3890. "__id__": 271
  3891. }
  3892. ],
  3893. "_prefab": {
  3894. "__id__": 273
  3895. },
  3896. "_lpos": {
  3897. "__type__": "cc.Vec3",
  3898. "x": 0,
  3899. "y": -450,
  3900. "z": 0
  3901. },
  3902. "_lrot": {
  3903. "__type__": "cc.Quat",
  3904. "x": 0,
  3905. "y": 0,
  3906. "z": 0,
  3907. "w": 1
  3908. },
  3909. "_lscale": {
  3910. "__type__": "cc.Vec3",
  3911. "x": 1,
  3912. "y": 1,
  3913. "z": 1
  3914. },
  3915. "_layer": 1073741824,
  3916. "_euler": {
  3917. "__type__": "cc.Vec3",
  3918. "x": 0,
  3919. "y": 0,
  3920. "z": 0
  3921. },
  3922. "_id": ""
  3923. },
  3924. {
  3925. "__type__": "cc.Node",
  3926. "_name": "水",
  3927. "_objFlags": 0,
  3928. "_parent": {
  3929. "__id__": 172
  3930. },
  3931. "_children": [],
  3932. "_active": true,
  3933. "_components": [
  3934. {
  3935. "__id__": 174
  3936. },
  3937. {
  3938. "__id__": 176
  3939. },
  3940. {
  3941. "__id__": 178
  3942. }
  3943. ],
  3944. "_prefab": {
  3945. "__id__": 180
  3946. },
  3947. "_lpos": {
  3948. "__type__": "cc.Vec3",
  3949. "x": 17,
  3950. "y": -15,
  3951. "z": 0
  3952. },
  3953. "_lrot": {
  3954. "__type__": "cc.Quat",
  3955. "x": 0,
  3956. "y": 0,
  3957. "z": 0,
  3958. "w": 1
  3959. },
  3960. "_lscale": {
  3961. "__type__": "cc.Vec3",
  3962. "x": 1,
  3963. "y": 1,
  3964. "z": 1
  3965. },
  3966. "_layer": 1073741824,
  3967. "_euler": {
  3968. "__type__": "cc.Vec3",
  3969. "x": 0,
  3970. "y": 0,
  3971. "z": 0
  3972. },
  3973. "_id": ""
  3974. },
  3975. {
  3976. "__type__": "cc.UITransform",
  3977. "_name": "",
  3978. "_objFlags": 0,
  3979. "node": {
  3980. "__id__": 173
  3981. },
  3982. "_enabled": true,
  3983. "__prefab": {
  3984. "__id__": 175
  3985. },
  3986. "_priority": 0,
  3987. "_contentSize": {
  3988. "__type__": "cc.Size",
  3989. "width": 150,
  3990. "height": 150
  3991. },
  3992. "_anchorPoint": {
  3993. "__type__": "cc.Vec2",
  3994. "x": 0.5,
  3995. "y": 0.5
  3996. },
  3997. "_id": ""
  3998. },
  3999. {
  4000. "__type__": "cc.CompPrefabInfo",
  4001. "fileId": "a4QdC2OwNI3YIMVnUaJwMu"
  4002. },
  4003. {
  4004. "__type__": "cc.Sprite",
  4005. "_name": "",
  4006. "_objFlags": 0,
  4007. "node": {
  4008. "__id__": 173
  4009. },
  4010. "_enabled": true,
  4011. "__prefab": {
  4012. "__id__": 177
  4013. },
  4014. "_visFlags": 0,
  4015. "_customMaterial": null,
  4016. "_srcBlendFactor": 2,
  4017. "_dstBlendFactor": 4,
  4018. "_color": {
  4019. "__type__": "cc.Color",
  4020. "r": 255,
  4021. "g": 255,
  4022. "b": 255,
  4023. "a": 255
  4024. },
  4025. "_spriteFrame": {
  4026. "__uuid__": "94fa4503-0edf-469d-a9a4-a079f2c9c11c@f9941"
  4027. },
  4028. "_type": 3,
  4029. "_fillType": 1,
  4030. "_sizeMode": 1,
  4031. "_fillCenter": {
  4032. "__type__": "cc.Vec2",
  4033. "x": 0,
  4034. "y": 0
  4035. },
  4036. "_fillStart": 0,
  4037. "_fillRange": 0.5,
  4038. "_isTrimmedMode": true,
  4039. "_useGrayscale": false,
  4040. "_atlas": null,
  4041. "_id": ""
  4042. },
  4043. {
  4044. "__type__": "cc.CompPrefabInfo",
  4045. "fileId": "ffPrFZZ89Ieq4LEPX6fao2"
  4046. },
  4047. {
  4048. "__type__": "cc.ProgressBar",
  4049. "_name": "",
  4050. "_objFlags": 0,
  4051. "node": {
  4052. "__id__": 173
  4053. },
  4054. "_enabled": true,
  4055. "__prefab": {
  4056. "__id__": 179
  4057. },
  4058. "_barSprite": {
  4059. "__id__": 176
  4060. },
  4061. "_mode": 2,
  4062. "_totalLength": 1,
  4063. "_progress": 0.5,
  4064. "_reverse": false,
  4065. "_id": ""
  4066. },
  4067. {
  4068. "__type__": "cc.CompPrefabInfo",
  4069. "fileId": "2aKHfvVIBMSIudNz7iZimL"
  4070. },
  4071. {
  4072. "__type__": "cc.PrefabInfo",
  4073. "root": {
  4074. "__id__": 1
  4075. },
  4076. "asset": {
  4077. "__id__": 0
  4078. },
  4079. "fileId": "03wIR41jlMnYqcnUG8LZ8M"
  4080. },
  4081. {
  4082. "__type__": "cc.Node",
  4083. "_name": "我的金额",
  4084. "_objFlags": 0,
  4085. "_parent": {
  4086. "__id__": 172
  4087. },
  4088. "_children": [
  4089. {
  4090. "__id__": 182
  4091. },
  4092. {
  4093. "__id__": 188
  4094. },
  4095. {
  4096. "__id__": 194
  4097. },
  4098. {
  4099. "__id__": 200
  4100. },
  4101. {
  4102. "__id__": 206
  4103. },
  4104. {
  4105. "__id__": 212
  4106. },
  4107. {
  4108. "__id__": 218
  4109. },
  4110. {
  4111. "__id__": 224
  4112. },
  4113. {
  4114. "__id__": 230
  4115. },
  4116. {
  4117. "__id__": 236
  4118. }
  4119. ],
  4120. "_active": true,
  4121. "_components": [
  4122. {
  4123. "__id__": 242
  4124. },
  4125. {
  4126. "__id__": 244
  4127. },
  4128. {
  4129. "__id__": 258
  4130. }
  4131. ],
  4132. "_prefab": {
  4133. "__id__": 260
  4134. },
  4135. "_lpos": {
  4136. "__type__": "cc.Vec3",
  4137. "x": 17,
  4138. "y": -16,
  4139. "z": 0
  4140. },
  4141. "_lrot": {
  4142. "__type__": "cc.Quat",
  4143. "x": 0,
  4144. "y": 0,
  4145. "z": 0,
  4146. "w": 1
  4147. },
  4148. "_lscale": {
  4149. "__type__": "cc.Vec3",
  4150. "x": 1,
  4151. "y": 1,
  4152. "z": 1
  4153. },
  4154. "_layer": 1073741824,
  4155. "_euler": {
  4156. "__type__": "cc.Vec3",
  4157. "x": 0,
  4158. "y": 0,
  4159. "z": 0
  4160. },
  4161. "_id": ""
  4162. },
  4163. {
  4164. "__type__": "cc.Node",
  4165. "_name": "+",
  4166. "_objFlags": 0,
  4167. "_parent": {
  4168. "__id__": 181
  4169. },
  4170. "_children": [],
  4171. "_active": true,
  4172. "_components": [
  4173. {
  4174. "__id__": 183
  4175. },
  4176. {
  4177. "__id__": 185
  4178. }
  4179. ],
  4180. "_prefab": {
  4181. "__id__": 187
  4182. },
  4183. "_lpos": {
  4184. "__type__": "cc.Vec3",
  4185. "x": -46.5,
  4186. "y": 0,
  4187. "z": 0
  4188. },
  4189. "_lrot": {
  4190. "__type__": "cc.Quat",
  4191. "x": 0,
  4192. "y": 0,
  4193. "z": 0,
  4194. "w": 1
  4195. },
  4196. "_lscale": {
  4197. "__type__": "cc.Vec3",
  4198. "x": 1,
  4199. "y": 1,
  4200. "z": 1
  4201. },
  4202. "_layer": 1073741824,
  4203. "_euler": {
  4204. "__type__": "cc.Vec3",
  4205. "x": 0,
  4206. "y": 0,
  4207. "z": 0
  4208. },
  4209. "_id": ""
  4210. },
  4211. {
  4212. "__type__": "cc.UITransform",
  4213. "_name": "",
  4214. "_objFlags": 0,
  4215. "node": {
  4216. "__id__": 182
  4217. },
  4218. "_enabled": true,
  4219. "__prefab": {
  4220. "__id__": 184
  4221. },
  4222. "_priority": 0,
  4223. "_contentSize": {
  4224. "__type__": "cc.Size",
  4225. "width": 24,
  4226. "height": 23
  4227. },
  4228. "_anchorPoint": {
  4229. "__type__": "cc.Vec2",
  4230. "x": 0.5,
  4231. "y": 0.5
  4232. },
  4233. "_id": ""
  4234. },
  4235. {
  4236. "__type__": "cc.CompPrefabInfo",
  4237. "fileId": "15I/W7z6hKFYCYrUYPBCsk"
  4238. },
  4239. {
  4240. "__type__": "cc.Sprite",
  4241. "_name": "",
  4242. "_objFlags": 0,
  4243. "node": {
  4244. "__id__": 182
  4245. },
  4246. "_enabled": true,
  4247. "__prefab": {
  4248. "__id__": 186
  4249. },
  4250. "_visFlags": 0,
  4251. "_customMaterial": null,
  4252. "_srcBlendFactor": 2,
  4253. "_dstBlendFactor": 4,
  4254. "_color": {
  4255. "__type__": "cc.Color",
  4256. "r": 255,
  4257. "g": 255,
  4258. "b": 255,
  4259. "a": 255
  4260. },
  4261. "_spriteFrame": {
  4262. "__uuid__": "90631075-f68d-4c5b-9ae0-e811feb32f41@f9941"
  4263. },
  4264. "_type": 0,
  4265. "_fillType": 0,
  4266. "_sizeMode": 1,
  4267. "_fillCenter": {
  4268. "__type__": "cc.Vec2",
  4269. "x": 0,
  4270. "y": 0
  4271. },
  4272. "_fillStart": 0,
  4273. "_fillRange": 0,
  4274. "_isTrimmedMode": true,
  4275. "_useGrayscale": false,
  4276. "_atlas": null,
  4277. "_id": ""
  4278. },
  4279. {
  4280. "__type__": "cc.CompPrefabInfo",
  4281. "fileId": "3f4oFiSfFGrqm8ir1pEtci"
  4282. },
  4283. {
  4284. "__type__": "cc.PrefabInfo",
  4285. "root": {
  4286. "__id__": 1
  4287. },
  4288. "asset": {
  4289. "__id__": 0
  4290. },
  4291. "fileId": "a7vHS+jzVD3rnj8qIYcUdp"
  4292. },
  4293. {
  4294. "__type__": "cc.Node",
  4295. "_name": "1",
  4296. "_objFlags": 0,
  4297. "_parent": {
  4298. "__id__": 181
  4299. },
  4300. "_children": [],
  4301. "_active": true,
  4302. "_components": [
  4303. {
  4304. "__id__": 189
  4305. },
  4306. {
  4307. "__id__": 191
  4308. }
  4309. ],
  4310. "_prefab": {
  4311. "__id__": 193
  4312. },
  4313. "_lpos": {
  4314. "__type__": "cc.Vec3",
  4315. "x": -29,
  4316. "y": 0,
  4317. "z": 0
  4318. },
  4319. "_lrot": {
  4320. "__type__": "cc.Quat",
  4321. "x": 0,
  4322. "y": 0,
  4323. "z": 0,
  4324. "w": 1
  4325. },
  4326. "_lscale": {
  4327. "__type__": "cc.Vec3",
  4328. "x": 1,
  4329. "y": 1,
  4330. "z": 1
  4331. },
  4332. "_layer": 1073741824,
  4333. "_euler": {
  4334. "__type__": "cc.Vec3",
  4335. "x": 0,
  4336. "y": 0,
  4337. "z": 0
  4338. },
  4339. "_id": ""
  4340. },
  4341. {
  4342. "__type__": "cc.UITransform",
  4343. "_name": "",
  4344. "_objFlags": 0,
  4345. "node": {
  4346. "__id__": 188
  4347. },
  4348. "_enabled": true,
  4349. "__prefab": {
  4350. "__id__": 190
  4351. },
  4352. "_priority": 0,
  4353. "_contentSize": {
  4354. "__type__": "cc.Size",
  4355. "width": 11,
  4356. "height": 30
  4357. },
  4358. "_anchorPoint": {
  4359. "__type__": "cc.Vec2",
  4360. "x": 0.5,
  4361. "y": 0.5
  4362. },
  4363. "_id": ""
  4364. },
  4365. {
  4366. "__type__": "cc.CompPrefabInfo",
  4367. "fileId": "aeXj80rSRPt6ABV4YlzbvF"
  4368. },
  4369. {
  4370. "__type__": "cc.Sprite",
  4371. "_name": "",
  4372. "_objFlags": 0,
  4373. "node": {
  4374. "__id__": 188
  4375. },
  4376. "_enabled": true,
  4377. "__prefab": {
  4378. "__id__": 192
  4379. },
  4380. "_visFlags": 0,
  4381. "_customMaterial": null,
  4382. "_srcBlendFactor": 2,
  4383. "_dstBlendFactor": 4,
  4384. "_color": {
  4385. "__type__": "cc.Color",
  4386. "r": 255,
  4387. "g": 255,
  4388. "b": 255,
  4389. "a": 255
  4390. },
  4391. "_spriteFrame": {
  4392. "__uuid__": "947e35a0-825b-49cf-845a-eaebaca4d57f@f9941"
  4393. },
  4394. "_type": 0,
  4395. "_fillType": 0,
  4396. "_sizeMode": 1,
  4397. "_fillCenter": {
  4398. "__type__": "cc.Vec2",
  4399. "x": 0,
  4400. "y": 0
  4401. },
  4402. "_fillStart": 0,
  4403. "_fillRange": 0,
  4404. "_isTrimmedMode": true,
  4405. "_useGrayscale": false,
  4406. "_atlas": null,
  4407. "_id": ""
  4408. },
  4409. {
  4410. "__type__": "cc.CompPrefabInfo",
  4411. "fileId": "e4ow16+tZDWLnQOl2wrF0R"
  4412. },
  4413. {
  4414. "__type__": "cc.PrefabInfo",
  4415. "root": {
  4416. "__id__": 1
  4417. },
  4418. "asset": {
  4419. "__id__": 0
  4420. },
  4421. "fileId": "d6d7cAYWVMo4zAKmKz8IY+"
  4422. },
  4423. {
  4424. "__type__": "cc.Node",
  4425. "_name": "2",
  4426. "_objFlags": 0,
  4427. "_parent": {
  4428. "__id__": 181
  4429. },
  4430. "_children": [],
  4431. "_active": true,
  4432. "_components": [
  4433. {
  4434. "__id__": 195
  4435. },
  4436. {
  4437. "__id__": 197
  4438. }
  4439. ],
  4440. "_prefab": {
  4441. "__id__": 199
  4442. },
  4443. "_lpos": {
  4444. "__type__": "cc.Vec3",
  4445. "x": -13,
  4446. "y": 0,
  4447. "z": 0
  4448. },
  4449. "_lrot": {
  4450. "__type__": "cc.Quat",
  4451. "x": 0,
  4452. "y": 0,
  4453. "z": 0,
  4454. "w": 1
  4455. },
  4456. "_lscale": {
  4457. "__type__": "cc.Vec3",
  4458. "x": 1,
  4459. "y": 1,
  4460. "z": 1
  4461. },
  4462. "_layer": 1073741824,
  4463. "_euler": {
  4464. "__type__": "cc.Vec3",
  4465. "x": 0,
  4466. "y": 0,
  4467. "z": 0
  4468. },
  4469. "_id": ""
  4470. },
  4471. {
  4472. "__type__": "cc.UITransform",
  4473. "_name": "",
  4474. "_objFlags": 0,
  4475. "node": {
  4476. "__id__": 194
  4477. },
  4478. "_enabled": true,
  4479. "__prefab": {
  4480. "__id__": 196
  4481. },
  4482. "_priority": 0,
  4483. "_contentSize": {
  4484. "__type__": "cc.Size",
  4485. "width": 21,
  4486. "height": 31
  4487. },
  4488. "_anchorPoint": {
  4489. "__type__": "cc.Vec2",
  4490. "x": 0.5,
  4491. "y": 0.5
  4492. },
  4493. "_id": ""
  4494. },
  4495. {
  4496. "__type__": "cc.CompPrefabInfo",
  4497. "fileId": "b8r7ykCnVJgK2Sx8PMrRMy"
  4498. },
  4499. {
  4500. "__type__": "cc.Sprite",
  4501. "_name": "",
  4502. "_objFlags": 0,
  4503. "node": {
  4504. "__id__": 194
  4505. },
  4506. "_enabled": true,
  4507. "__prefab": {
  4508. "__id__": 198
  4509. },
  4510. "_visFlags": 0,
  4511. "_customMaterial": null,
  4512. "_srcBlendFactor": 2,
  4513. "_dstBlendFactor": 4,
  4514. "_color": {
  4515. "__type__": "cc.Color",
  4516. "r": 255,
  4517. "g": 255,
  4518. "b": 255,
  4519. "a": 255
  4520. },
  4521. "_spriteFrame": {
  4522. "__uuid__": "ad85b810-1027-4d60-8c59-2f62ca99a022@f9941"
  4523. },
  4524. "_type": 0,
  4525. "_fillType": 0,
  4526. "_sizeMode": 1,
  4527. "_fillCenter": {
  4528. "__type__": "cc.Vec2",
  4529. "x": 0,
  4530. "y": 0
  4531. },
  4532. "_fillStart": 0,
  4533. "_fillRange": 0,
  4534. "_isTrimmedMode": true,
  4535. "_useGrayscale": false,
  4536. "_atlas": null,
  4537. "_id": ""
  4538. },
  4539. {
  4540. "__type__": "cc.CompPrefabInfo",
  4541. "fileId": "e11irl7nJLhKSOuhQ41XPx"
  4542. },
  4543. {
  4544. "__type__": "cc.PrefabInfo",
  4545. "root": {
  4546. "__id__": 1
  4547. },
  4548. "asset": {
  4549. "__id__": 0
  4550. },
  4551. "fileId": "75Lqi8rfBI8J9soS0TFfFy"
  4552. },
  4553. {
  4554. "__type__": "cc.Node",
  4555. "_name": "0",
  4556. "_objFlags": 0,
  4557. "_parent": {
  4558. "__id__": 181
  4559. },
  4560. "_children": [],
  4561. "_active": true,
  4562. "_components": [
  4563. {
  4564. "__id__": 201
  4565. },
  4566. {
  4567. "__id__": 203
  4568. }
  4569. ],
  4570. "_prefab": {
  4571. "__id__": 205
  4572. },
  4573. "_lpos": {
  4574. "__type__": "cc.Vec3",
  4575. "x": 5,
  4576. "y": 0,
  4577. "z": 0
  4578. },
  4579. "_lrot": {
  4580. "__type__": "cc.Quat",
  4581. "x": 0,
  4582. "y": 0,
  4583. "z": 0,
  4584. "w": 1
  4585. },
  4586. "_lscale": {
  4587. "__type__": "cc.Vec3",
  4588. "x": 1,
  4589. "y": 1,
  4590. "z": 1
  4591. },
  4592. "_layer": 1073741824,
  4593. "_euler": {
  4594. "__type__": "cc.Vec3",
  4595. "x": 0,
  4596. "y": 0,
  4597. "z": 0
  4598. },
  4599. "_id": ""
  4600. },
  4601. {
  4602. "__type__": "cc.UITransform",
  4603. "_name": "",
  4604. "_objFlags": 0,
  4605. "node": {
  4606. "__id__": 200
  4607. },
  4608. "_enabled": true,
  4609. "__prefab": {
  4610. "__id__": 202
  4611. },
  4612. "_priority": 0,
  4613. "_contentSize": {
  4614. "__type__": "cc.Size",
  4615. "width": 15,
  4616. "height": 32
  4617. },
  4618. "_anchorPoint": {
  4619. "__type__": "cc.Vec2",
  4620. "x": 0.5,
  4621. "y": 0.5
  4622. },
  4623. "_id": ""
  4624. },
  4625. {
  4626. "__type__": "cc.CompPrefabInfo",
  4627. "fileId": "b2il0xx5lIl70E2XspOTgO"
  4628. },
  4629. {
  4630. "__type__": "cc.Sprite",
  4631. "_name": "",
  4632. "_objFlags": 0,
  4633. "node": {
  4634. "__id__": 200
  4635. },
  4636. "_enabled": true,
  4637. "__prefab": {
  4638. "__id__": 204
  4639. },
  4640. "_visFlags": 0,
  4641. "_customMaterial": null,
  4642. "_srcBlendFactor": 2,
  4643. "_dstBlendFactor": 4,
  4644. "_color": {
  4645. "__type__": "cc.Color",
  4646. "r": 255,
  4647. "g": 255,
  4648. "b": 255,
  4649. "a": 255
  4650. },
  4651. "_spriteFrame": {
  4652. "__uuid__": "e44acbc9-e9c6-4434-9d50-297d286ce022@f9941"
  4653. },
  4654. "_type": 0,
  4655. "_fillType": 0,
  4656. "_sizeMode": 1,
  4657. "_fillCenter": {
  4658. "__type__": "cc.Vec2",
  4659. "x": 0,
  4660. "y": 0
  4661. },
  4662. "_fillStart": 0,
  4663. "_fillRange": 0,
  4664. "_isTrimmedMode": true,
  4665. "_useGrayscale": false,
  4666. "_atlas": null,
  4667. "_id": ""
  4668. },
  4669. {
  4670. "__type__": "cc.CompPrefabInfo",
  4671. "fileId": "e7vWp0e+JLOZ3yR95o1EdQ"
  4672. },
  4673. {
  4674. "__type__": "cc.PrefabInfo",
  4675. "root": {
  4676. "__id__": 1
  4677. },
  4678. "asset": {
  4679. "__id__": 0
  4680. },
  4681. "fileId": "8aCXOoezBMG5XvGBb+Ok5+"
  4682. },
  4683. {
  4684. "__type__": "cc.Node",
  4685. "_name": ".",
  4686. "_objFlags": 0,
  4687. "_parent": {
  4688. "__id__": 181
  4689. },
  4690. "_children": [],
  4691. "_active": true,
  4692. "_components": [
  4693. {
  4694. "__id__": 207
  4695. },
  4696. {
  4697. "__id__": 209
  4698. }
  4699. ],
  4700. "_prefab": {
  4701. "__id__": 211
  4702. },
  4703. "_lpos": {
  4704. "__type__": "cc.Vec3",
  4705. "x": 24,
  4706. "y": 0,
  4707. "z": 0
  4708. },
  4709. "_lrot": {
  4710. "__type__": "cc.Quat",
  4711. "x": 0,
  4712. "y": 0,
  4713. "z": 0,
  4714. "w": 1
  4715. },
  4716. "_lscale": {
  4717. "__type__": "cc.Vec3",
  4718. "x": 1,
  4719. "y": 1,
  4720. "z": 1
  4721. },
  4722. "_layer": 1073741824,
  4723. "_euler": {
  4724. "__type__": "cc.Vec3",
  4725. "x": 0,
  4726. "y": 0,
  4727. "z": 0
  4728. },
  4729. "_id": ""
  4730. },
  4731. {
  4732. "__type__": "cc.UITransform",
  4733. "_name": "",
  4734. "_objFlags": 0,
  4735. "node": {
  4736. "__id__": 206
  4737. },
  4738. "_enabled": true,
  4739. "__prefab": {
  4740. "__id__": 208
  4741. },
  4742. "_priority": 0,
  4743. "_contentSize": {
  4744. "__type__": "cc.Size",
  4745. "width": 23,
  4746. "height": 31
  4747. },
  4748. "_anchorPoint": {
  4749. "__type__": "cc.Vec2",
  4750. "x": 0.5,
  4751. "y": 0.5
  4752. },
  4753. "_id": ""
  4754. },
  4755. {
  4756. "__type__": "cc.CompPrefabInfo",
  4757. "fileId": "6beTDpppNL0KhffERPqbMM"
  4758. },
  4759. {
  4760. "__type__": "cc.Sprite",
  4761. "_name": "",
  4762. "_objFlags": 0,
  4763. "node": {
  4764. "__id__": 206
  4765. },
  4766. "_enabled": true,
  4767. "__prefab": {
  4768. "__id__": 210
  4769. },
  4770. "_visFlags": 0,
  4771. "_customMaterial": null,
  4772. "_srcBlendFactor": 2,
  4773. "_dstBlendFactor": 4,
  4774. "_color": {
  4775. "__type__": "cc.Color",
  4776. "r": 255,
  4777. "g": 255,
  4778. "b": 255,
  4779. "a": 255
  4780. },
  4781. "_spriteFrame": {
  4782. "__uuid__": "86200122-2b2c-4816-964d-34216da3e45d@f9941"
  4783. },
  4784. "_type": 0,
  4785. "_fillType": 0,
  4786. "_sizeMode": 1,
  4787. "_fillCenter": {
  4788. "__type__": "cc.Vec2",
  4789. "x": 0,
  4790. "y": 0
  4791. },
  4792. "_fillStart": 0,
  4793. "_fillRange": 0,
  4794. "_isTrimmedMode": true,
  4795. "_useGrayscale": false,
  4796. "_atlas": null,
  4797. "_id": ""
  4798. },
  4799. {
  4800. "__type__": "cc.CompPrefabInfo",
  4801. "fileId": "7c+RIKwqxArYjQ5loJSLZO"
  4802. },
  4803. {
  4804. "__type__": "cc.PrefabInfo",
  4805. "root": {
  4806. "__id__": 1
  4807. },
  4808. "asset": {
  4809. "__id__": 0
  4810. },
  4811. "fileId": "dcBje74fpOCp1cimywyX5w"
  4812. },
  4813. {
  4814. "__type__": "cc.Node",
  4815. "_name": "0",
  4816. "_objFlags": 0,
  4817. "_parent": {
  4818. "__id__": 181
  4819. },
  4820. "_children": [],
  4821. "_active": true,
  4822. "_components": [
  4823. {
  4824. "__id__": 213
  4825. },
  4826. {
  4827. "__id__": 215
  4828. }
  4829. ],
  4830. "_prefab": {
  4831. "__id__": 217
  4832. },
  4833. "_lpos": {
  4834. "__type__": "cc.Vec3",
  4835. "x": 47,
  4836. "y": 0,
  4837. "z": 0
  4838. },
  4839. "_lrot": {
  4840. "__type__": "cc.Quat",
  4841. "x": 0,
  4842. "y": 0,
  4843. "z": 0,
  4844. "w": 1
  4845. },
  4846. "_lscale": {
  4847. "__type__": "cc.Vec3",
  4848. "x": 1,
  4849. "y": 1,
  4850. "z": 1
  4851. },
  4852. "_layer": 1073741824,
  4853. "_euler": {
  4854. "__type__": "cc.Vec3",
  4855. "x": 0,
  4856. "y": 0,
  4857. "z": 0
  4858. },
  4859. "_id": ""
  4860. },
  4861. {
  4862. "__type__": "cc.UITransform",
  4863. "_name": "",
  4864. "_objFlags": 0,
  4865. "node": {
  4866. "__id__": 212
  4867. },
  4868. "_enabled": true,
  4869. "__prefab": {
  4870. "__id__": 214
  4871. },
  4872. "_priority": 0,
  4873. "_contentSize": {
  4874. "__type__": "cc.Size",
  4875. "width": 23,
  4876. "height": 31
  4877. },
  4878. "_anchorPoint": {
  4879. "__type__": "cc.Vec2",
  4880. "x": 0.5,
  4881. "y": 0.5
  4882. },
  4883. "_id": ""
  4884. },
  4885. {
  4886. "__type__": "cc.CompPrefabInfo",
  4887. "fileId": "a5/1lV8ixAOKVQk0gS2oOO"
  4888. },
  4889. {
  4890. "__type__": "cc.Sprite",
  4891. "_name": "",
  4892. "_objFlags": 0,
  4893. "node": {
  4894. "__id__": 212
  4895. },
  4896. "_enabled": true,
  4897. "__prefab": {
  4898. "__id__": 216
  4899. },
  4900. "_visFlags": 0,
  4901. "_customMaterial": null,
  4902. "_srcBlendFactor": 2,
  4903. "_dstBlendFactor": 4,
  4904. "_color": {
  4905. "__type__": "cc.Color",
  4906. "r": 255,
  4907. "g": 255,
  4908. "b": 255,
  4909. "a": 255
  4910. },
  4911. "_spriteFrame": {
  4912. "__uuid__": "86200122-2b2c-4816-964d-34216da3e45d@f9941"
  4913. },
  4914. "_type": 0,
  4915. "_fillType": 0,
  4916. "_sizeMode": 1,
  4917. "_fillCenter": {
  4918. "__type__": "cc.Vec2",
  4919. "x": 0,
  4920. "y": 0
  4921. },
  4922. "_fillStart": 0,
  4923. "_fillRange": 0,
  4924. "_isTrimmedMode": true,
  4925. "_useGrayscale": false,
  4926. "_atlas": null,
  4927. "_id": ""
  4928. },
  4929. {
  4930. "__type__": "cc.CompPrefabInfo",
  4931. "fileId": "38d9M3FF9Kzrrjqor/V75p"
  4932. },
  4933. {
  4934. "__type__": "cc.PrefabInfo",
  4935. "root": {
  4936. "__id__": 1
  4937. },
  4938. "asset": {
  4939. "__id__": 0
  4940. },
  4941. "fileId": "ec6CJ3qNFKkKqo2oqfu9Et"
  4942. },
  4943. {
  4944. "__type__": "cc.Node",
  4945. "_name": "0",
  4946. "_objFlags": 0,
  4947. "_parent": {
  4948. "__id__": 181
  4949. },
  4950. "_children": [],
  4951. "_active": false,
  4952. "_components": [
  4953. {
  4954. "__id__": 219
  4955. },
  4956. {
  4957. "__id__": 221
  4958. }
  4959. ],
  4960. "_prefab": {
  4961. "__id__": 223
  4962. },
  4963. "_lpos": {
  4964. "__type__": "cc.Vec3",
  4965. "x": 58.5,
  4966. "y": 0,
  4967. "z": 0
  4968. },
  4969. "_lrot": {
  4970. "__type__": "cc.Quat",
  4971. "x": 0,
  4972. "y": 0,
  4973. "z": 0,
  4974. "w": 1
  4975. },
  4976. "_lscale": {
  4977. "__type__": "cc.Vec3",
  4978. "x": 1,
  4979. "y": 1,
  4980. "z": 1
  4981. },
  4982. "_layer": 1073741824,
  4983. "_euler": {
  4984. "__type__": "cc.Vec3",
  4985. "x": 0,
  4986. "y": 0,
  4987. "z": 0
  4988. },
  4989. "_id": ""
  4990. },
  4991. {
  4992. "__type__": "cc.UITransform",
  4993. "_name": "",
  4994. "_objFlags": 0,
  4995. "node": {
  4996. "__id__": 218
  4997. },
  4998. "_enabled": true,
  4999. "__prefab": {
  5000. "__id__": 220
  5001. },
  5002. "_priority": 0,
  5003. "_contentSize": {
  5004. "__type__": "cc.Size",
  5005. "width": 23,
  5006. "height": 31
  5007. },
  5008. "_anchorPoint": {
  5009. "__type__": "cc.Vec2",
  5010. "x": 0.5,
  5011. "y": 0.5
  5012. },
  5013. "_id": ""
  5014. },
  5015. {
  5016. "__type__": "cc.CompPrefabInfo",
  5017. "fileId": "d1+NZLjnFKzql83k+OmmMy"
  5018. },
  5019. {
  5020. "__type__": "cc.Sprite",
  5021. "_name": "",
  5022. "_objFlags": 0,
  5023. "node": {
  5024. "__id__": 218
  5025. },
  5026. "_enabled": true,
  5027. "__prefab": {
  5028. "__id__": 222
  5029. },
  5030. "_visFlags": 0,
  5031. "_customMaterial": null,
  5032. "_srcBlendFactor": 2,
  5033. "_dstBlendFactor": 4,
  5034. "_color": {
  5035. "__type__": "cc.Color",
  5036. "r": 255,
  5037. "g": 255,
  5038. "b": 255,
  5039. "a": 255
  5040. },
  5041. "_spriteFrame": {
  5042. "__uuid__": "86200122-2b2c-4816-964d-34216da3e45d@f9941"
  5043. },
  5044. "_type": 0,
  5045. "_fillType": 0,
  5046. "_sizeMode": 1,
  5047. "_fillCenter": {
  5048. "__type__": "cc.Vec2",
  5049. "x": 0,
  5050. "y": 0
  5051. },
  5052. "_fillStart": 0,
  5053. "_fillRange": 0,
  5054. "_isTrimmedMode": true,
  5055. "_useGrayscale": false,
  5056. "_atlas": null,
  5057. "_id": ""
  5058. },
  5059. {
  5060. "__type__": "cc.CompPrefabInfo",
  5061. "fileId": "62ZsknXu5I2JvJR00eXrpR"
  5062. },
  5063. {
  5064. "__type__": "cc.PrefabInfo",
  5065. "root": {
  5066. "__id__": 1
  5067. },
  5068. "asset": {
  5069. "__id__": 0
  5070. },
  5071. "fileId": "c2qf/sBg5PfbQbe/mwS8bM"
  5072. },
  5073. {
  5074. "__type__": "cc.Node",
  5075. "_name": "0",
  5076. "_objFlags": 0,
  5077. "_parent": {
  5078. "__id__": 181
  5079. },
  5080. "_children": [],
  5081. "_active": false,
  5082. "_components": [
  5083. {
  5084. "__id__": 225
  5085. },
  5086. {
  5087. "__id__": 227
  5088. }
  5089. ],
  5090. "_prefab": {
  5091. "__id__": 229
  5092. },
  5093. "_lpos": {
  5094. "__type__": "cc.Vec3",
  5095. "x": 70,
  5096. "y": 0,
  5097. "z": 0
  5098. },
  5099. "_lrot": {
  5100. "__type__": "cc.Quat",
  5101. "x": 0,
  5102. "y": 0,
  5103. "z": 0,
  5104. "w": 1
  5105. },
  5106. "_lscale": {
  5107. "__type__": "cc.Vec3",
  5108. "x": 1,
  5109. "y": 1,
  5110. "z": 1
  5111. },
  5112. "_layer": 1073741824,
  5113. "_euler": {
  5114. "__type__": "cc.Vec3",
  5115. "x": 0,
  5116. "y": 0,
  5117. "z": 0
  5118. },
  5119. "_id": ""
  5120. },
  5121. {
  5122. "__type__": "cc.UITransform",
  5123. "_name": "",
  5124. "_objFlags": 0,
  5125. "node": {
  5126. "__id__": 224
  5127. },
  5128. "_enabled": true,
  5129. "__prefab": {
  5130. "__id__": 226
  5131. },
  5132. "_priority": 0,
  5133. "_contentSize": {
  5134. "__type__": "cc.Size",
  5135. "width": 23,
  5136. "height": 31
  5137. },
  5138. "_anchorPoint": {
  5139. "__type__": "cc.Vec2",
  5140. "x": 0.5,
  5141. "y": 0.5
  5142. },
  5143. "_id": ""
  5144. },
  5145. {
  5146. "__type__": "cc.CompPrefabInfo",
  5147. "fileId": "efTmbhYLNFJI745Y6q5AEc"
  5148. },
  5149. {
  5150. "__type__": "cc.Sprite",
  5151. "_name": "",
  5152. "_objFlags": 0,
  5153. "node": {
  5154. "__id__": 224
  5155. },
  5156. "_enabled": true,
  5157. "__prefab": {
  5158. "__id__": 228
  5159. },
  5160. "_visFlags": 0,
  5161. "_customMaterial": null,
  5162. "_srcBlendFactor": 2,
  5163. "_dstBlendFactor": 4,
  5164. "_color": {
  5165. "__type__": "cc.Color",
  5166. "r": 255,
  5167. "g": 255,
  5168. "b": 255,
  5169. "a": 255
  5170. },
  5171. "_spriteFrame": {
  5172. "__uuid__": "86200122-2b2c-4816-964d-34216da3e45d@f9941"
  5173. },
  5174. "_type": 0,
  5175. "_fillType": 0,
  5176. "_sizeMode": 1,
  5177. "_fillCenter": {
  5178. "__type__": "cc.Vec2",
  5179. "x": 0,
  5180. "y": 0
  5181. },
  5182. "_fillStart": 0,
  5183. "_fillRange": 0,
  5184. "_isTrimmedMode": true,
  5185. "_useGrayscale": false,
  5186. "_atlas": null,
  5187. "_id": ""
  5188. },
  5189. {
  5190. "__type__": "cc.CompPrefabInfo",
  5191. "fileId": "5eUqH4ERxF/oH86u6Z0MvU"
  5192. },
  5193. {
  5194. "__type__": "cc.PrefabInfo",
  5195. "root": {
  5196. "__id__": 1
  5197. },
  5198. "asset": {
  5199. "__id__": 0
  5200. },
  5201. "fileId": "36aUQmtatP+5ITc6sSkLdI"
  5202. },
  5203. {
  5204. "__type__": "cc.Node",
  5205. "_name": "0",
  5206. "_objFlags": 0,
  5207. "_parent": {
  5208. "__id__": 181
  5209. },
  5210. "_children": [],
  5211. "_active": false,
  5212. "_components": [
  5213. {
  5214. "__id__": 231
  5215. },
  5216. {
  5217. "__id__": 233
  5218. }
  5219. ],
  5220. "_prefab": {
  5221. "__id__": 235
  5222. },
  5223. "_lpos": {
  5224. "__type__": "cc.Vec3",
  5225. "x": 81.5,
  5226. "y": 0,
  5227. "z": 0
  5228. },
  5229. "_lrot": {
  5230. "__type__": "cc.Quat",
  5231. "x": 0,
  5232. "y": 0,
  5233. "z": 0,
  5234. "w": 1
  5235. },
  5236. "_lscale": {
  5237. "__type__": "cc.Vec3",
  5238. "x": 1,
  5239. "y": 1,
  5240. "z": 1
  5241. },
  5242. "_layer": 1073741824,
  5243. "_euler": {
  5244. "__type__": "cc.Vec3",
  5245. "x": 0,
  5246. "y": 0,
  5247. "z": 0
  5248. },
  5249. "_id": ""
  5250. },
  5251. {
  5252. "__type__": "cc.UITransform",
  5253. "_name": "",
  5254. "_objFlags": 0,
  5255. "node": {
  5256. "__id__": 230
  5257. },
  5258. "_enabled": true,
  5259. "__prefab": {
  5260. "__id__": 232
  5261. },
  5262. "_priority": 0,
  5263. "_contentSize": {
  5264. "__type__": "cc.Size",
  5265. "width": 23,
  5266. "height": 31
  5267. },
  5268. "_anchorPoint": {
  5269. "__type__": "cc.Vec2",
  5270. "x": 0.5,
  5271. "y": 0.5
  5272. },
  5273. "_id": ""
  5274. },
  5275. {
  5276. "__type__": "cc.CompPrefabInfo",
  5277. "fileId": "4f9hYeGtpD+qxX4N7UUgg2"
  5278. },
  5279. {
  5280. "__type__": "cc.Sprite",
  5281. "_name": "",
  5282. "_objFlags": 0,
  5283. "node": {
  5284. "__id__": 230
  5285. },
  5286. "_enabled": true,
  5287. "__prefab": {
  5288. "__id__": 234
  5289. },
  5290. "_visFlags": 0,
  5291. "_customMaterial": null,
  5292. "_srcBlendFactor": 2,
  5293. "_dstBlendFactor": 4,
  5294. "_color": {
  5295. "__type__": "cc.Color",
  5296. "r": 255,
  5297. "g": 255,
  5298. "b": 255,
  5299. "a": 255
  5300. },
  5301. "_spriteFrame": {
  5302. "__uuid__": "86200122-2b2c-4816-964d-34216da3e45d@f9941"
  5303. },
  5304. "_type": 0,
  5305. "_fillType": 0,
  5306. "_sizeMode": 1,
  5307. "_fillCenter": {
  5308. "__type__": "cc.Vec2",
  5309. "x": 0,
  5310. "y": 0
  5311. },
  5312. "_fillStart": 0,
  5313. "_fillRange": 0,
  5314. "_isTrimmedMode": true,
  5315. "_useGrayscale": false,
  5316. "_atlas": null,
  5317. "_id": ""
  5318. },
  5319. {
  5320. "__type__": "cc.CompPrefabInfo",
  5321. "fileId": "34b0aAjchJmaJmVFM5shq3"
  5322. },
  5323. {
  5324. "__type__": "cc.PrefabInfo",
  5325. "root": {
  5326. "__id__": 1
  5327. },
  5328. "asset": {
  5329. "__id__": 0
  5330. },
  5331. "fileId": "1dyEOoeu1L+ZFknffHoPlQ"
  5332. },
  5333. {
  5334. "__type__": "cc.Node",
  5335. "_name": "0",
  5336. "_objFlags": 0,
  5337. "_parent": {
  5338. "__id__": 181
  5339. },
  5340. "_children": [],
  5341. "_active": false,
  5342. "_components": [
  5343. {
  5344. "__id__": 237
  5345. },
  5346. {
  5347. "__id__": 239
  5348. }
  5349. ],
  5350. "_prefab": {
  5351. "__id__": 241
  5352. },
  5353. "_lpos": {
  5354. "__type__": "cc.Vec3",
  5355. "x": 93,
  5356. "y": 0,
  5357. "z": 0
  5358. },
  5359. "_lrot": {
  5360. "__type__": "cc.Quat",
  5361. "x": 0,
  5362. "y": 0,
  5363. "z": 0,
  5364. "w": 1
  5365. },
  5366. "_lscale": {
  5367. "__type__": "cc.Vec3",
  5368. "x": 1,
  5369. "y": 1,
  5370. "z": 1
  5371. },
  5372. "_layer": 1073741824,
  5373. "_euler": {
  5374. "__type__": "cc.Vec3",
  5375. "x": 0,
  5376. "y": 0,
  5377. "z": 0
  5378. },
  5379. "_id": ""
  5380. },
  5381. {
  5382. "__type__": "cc.UITransform",
  5383. "_name": "",
  5384. "_objFlags": 0,
  5385. "node": {
  5386. "__id__": 236
  5387. },
  5388. "_enabled": true,
  5389. "__prefab": {
  5390. "__id__": 238
  5391. },
  5392. "_priority": 0,
  5393. "_contentSize": {
  5394. "__type__": "cc.Size",
  5395. "width": 23,
  5396. "height": 31
  5397. },
  5398. "_anchorPoint": {
  5399. "__type__": "cc.Vec2",
  5400. "x": 0.5,
  5401. "y": 0.5
  5402. },
  5403. "_id": ""
  5404. },
  5405. {
  5406. "__type__": "cc.CompPrefabInfo",
  5407. "fileId": "1clnkNXMZF6rjGlMu85Oq3"
  5408. },
  5409. {
  5410. "__type__": "cc.Sprite",
  5411. "_name": "",
  5412. "_objFlags": 0,
  5413. "node": {
  5414. "__id__": 236
  5415. },
  5416. "_enabled": true,
  5417. "__prefab": {
  5418. "__id__": 240
  5419. },
  5420. "_visFlags": 0,
  5421. "_customMaterial": null,
  5422. "_srcBlendFactor": 2,
  5423. "_dstBlendFactor": 4,
  5424. "_color": {
  5425. "__type__": "cc.Color",
  5426. "r": 255,
  5427. "g": 255,
  5428. "b": 255,
  5429. "a": 255
  5430. },
  5431. "_spriteFrame": {
  5432. "__uuid__": "86200122-2b2c-4816-964d-34216da3e45d@f9941"
  5433. },
  5434. "_type": 0,
  5435. "_fillType": 0,
  5436. "_sizeMode": 1,
  5437. "_fillCenter": {
  5438. "__type__": "cc.Vec2",
  5439. "x": 0,
  5440. "y": 0
  5441. },
  5442. "_fillStart": 0,
  5443. "_fillRange": 0,
  5444. "_isTrimmedMode": true,
  5445. "_useGrayscale": false,
  5446. "_atlas": null,
  5447. "_id": ""
  5448. },
  5449. {
  5450. "__type__": "cc.CompPrefabInfo",
  5451. "fileId": "97Lt8NiKtMp4pULQfVWZkw"
  5452. },
  5453. {
  5454. "__type__": "cc.PrefabInfo",
  5455. "root": {
  5456. "__id__": 1
  5457. },
  5458. "asset": {
  5459. "__id__": 0
  5460. },
  5461. "fileId": "0eYO4X6EtMjZg03gC5UBuA"
  5462. },
  5463. {
  5464. "__type__": "cc.UITransform",
  5465. "_name": "",
  5466. "_objFlags": 0,
  5467. "node": {
  5468. "__id__": 181
  5469. },
  5470. "_enabled": true,
  5471. "__prefab": {
  5472. "__id__": 243
  5473. },
  5474. "_priority": 0,
  5475. "_contentSize": {
  5476. "__type__": "cc.Size",
  5477. "width": 117,
  5478. "height": 100
  5479. },
  5480. "_anchorPoint": {
  5481. "__type__": "cc.Vec2",
  5482. "x": 0.5,
  5483. "y": 0.5
  5484. },
  5485. "_id": ""
  5486. },
  5487. {
  5488. "__type__": "cc.CompPrefabInfo",
  5489. "fileId": "741nWgoE5MEbrClZxcTKAa"
  5490. },
  5491. {
  5492. "__type__": "0399a2QOElBv7Vrq+PQeKPi",
  5493. "_name": "",
  5494. "_objFlags": 0,
  5495. "node": {
  5496. "__id__": 181
  5497. },
  5498. "_enabled": true,
  5499. "__prefab": {
  5500. "__id__": 245
  5501. },
  5502. "dataList": [
  5503. {
  5504. "__id__": 246
  5505. },
  5506. {
  5507. "__id__": 247
  5508. },
  5509. {
  5510. "__id__": 248
  5511. },
  5512. {
  5513. "__id__": 249
  5514. },
  5515. {
  5516. "__id__": 250
  5517. },
  5518. {
  5519. "__id__": 251
  5520. },
  5521. {
  5522. "__id__": 252
  5523. },
  5524. {
  5525. "__id__": 253
  5526. },
  5527. {
  5528. "__id__": 254
  5529. },
  5530. {
  5531. "__id__": 255
  5532. },
  5533. {
  5534. "__id__": 256
  5535. },
  5536. {
  5537. "__id__": 257
  5538. }
  5539. ],
  5540. "_string": "+12.00",
  5541. "_id": ""
  5542. },
  5543. {
  5544. "__type__": "cc.CompPrefabInfo",
  5545. "fileId": "a8Vu+iKTpKPY/t+3RAKka6"
  5546. },
  5547. {
  5548. "__type__": "BitmapFontData",
  5549. "chair": "0",
  5550. "spriteFrame": {
  5551. "__uuid__": "86200122-2b2c-4816-964d-34216da3e45d@f9941"
  5552. }
  5553. },
  5554. {
  5555. "__type__": "BitmapFontData",
  5556. "chair": "1",
  5557. "spriteFrame": {
  5558. "__uuid__": "947e35a0-825b-49cf-845a-eaebaca4d57f@f9941"
  5559. }
  5560. },
  5561. {
  5562. "__type__": "BitmapFontData",
  5563. "chair": "2",
  5564. "spriteFrame": {
  5565. "__uuid__": "ad85b810-1027-4d60-8c59-2f62ca99a022@f9941"
  5566. }
  5567. },
  5568. {
  5569. "__type__": "BitmapFontData",
  5570. "chair": "3",
  5571. "spriteFrame": {
  5572. "__uuid__": "776f9fd6-7775-4392-9365-3571dcf75d1d@f9941"
  5573. }
  5574. },
  5575. {
  5576. "__type__": "BitmapFontData",
  5577. "chair": "4",
  5578. "spriteFrame": {
  5579. "__uuid__": "6fbebaeb-2acd-47fc-b85f-d85494204bca@f9941"
  5580. }
  5581. },
  5582. {
  5583. "__type__": "BitmapFontData",
  5584. "chair": "5",
  5585. "spriteFrame": {
  5586. "__uuid__": "21b2a7d7-3594-4301-8516-309be2772fc4@f9941"
  5587. }
  5588. },
  5589. {
  5590. "__type__": "BitmapFontData",
  5591. "chair": "6",
  5592. "spriteFrame": {
  5593. "__uuid__": "eb265bca-ea59-4f8c-8ce6-013199e89bea@f9941"
  5594. }
  5595. },
  5596. {
  5597. "__type__": "BitmapFontData",
  5598. "chair": "7",
  5599. "spriteFrame": {
  5600. "__uuid__": "74531523-760d-455c-abfd-f3d8d8071a09@f9941"
  5601. }
  5602. },
  5603. {
  5604. "__type__": "BitmapFontData",
  5605. "chair": "8",
  5606. "spriteFrame": {
  5607. "__uuid__": "99d39689-555c-4614-8042-d2e8332389b6@f9941"
  5608. }
  5609. },
  5610. {
  5611. "__type__": "BitmapFontData",
  5612. "chair": "9",
  5613. "spriteFrame": {
  5614. "__uuid__": "02a3a433-5c1c-4bcf-bb0f-e31849189cec@f9941"
  5615. }
  5616. },
  5617. {
  5618. "__type__": "BitmapFontData",
  5619. "chair": "+",
  5620. "spriteFrame": {
  5621. "__uuid__": "90631075-f68d-4c5b-9ae0-e811feb32f41@f9941"
  5622. }
  5623. },
  5624. {
  5625. "__type__": "BitmapFontData",
  5626. "chair": ".",
  5627. "spriteFrame": {
  5628. "__uuid__": "e44acbc9-e9c6-4434-9d50-297d286ce022@f9941"
  5629. }
  5630. },
  5631. {
  5632. "__type__": "cc.Layout",
  5633. "_name": "",
  5634. "_objFlags": 0,
  5635. "node": {
  5636. "__id__": 181
  5637. },
  5638. "_enabled": true,
  5639. "__prefab": {
  5640. "__id__": 259
  5641. },
  5642. "_resizeMode": 1,
  5643. "_layoutType": 1,
  5644. "_cellSize": {
  5645. "__type__": "cc.Size",
  5646. "width": 40,
  5647. "height": 40
  5648. },
  5649. "_startAxis": 0,
  5650. "_paddingLeft": 0,
  5651. "_paddingRight": 0,
  5652. "_paddingTop": 0,
  5653. "_paddingBottom": 0,
  5654. "_spacingX": 0,
  5655. "_spacingY": 0,
  5656. "_verticalDirection": 1,
  5657. "_horizontalDirection": 0,
  5658. "_constraint": 0,
  5659. "_constraintNum": 2,
  5660. "_affectedByScale": false,
  5661. "_isAlign": true,
  5662. "_id": ""
  5663. },
  5664. {
  5665. "__type__": "cc.CompPrefabInfo",
  5666. "fileId": "9cxt/ymOZBipS7FIT4ZHVO"
  5667. },
  5668. {
  5669. "__type__": "cc.PrefabInfo",
  5670. "root": {
  5671. "__id__": 1
  5672. },
  5673. "asset": {
  5674. "__id__": 0
  5675. },
  5676. "fileId": "7eFd0VfdRKd6hl8j3cq4t1"
  5677. },
  5678. {
  5679. "__type__": "cc.Node",
  5680. "_name": "约等于",
  5681. "_objFlags": 0,
  5682. "_parent": {
  5683. "__id__": 172
  5684. },
  5685. "_children": [],
  5686. "_active": true,
  5687. "_components": [
  5688. {
  5689. "__id__": 262
  5690. },
  5691. {
  5692. "__id__": 264
  5693. },
  5694. {
  5695. "__id__": 266
  5696. }
  5697. ],
  5698. "_prefab": {
  5699. "__id__": 268
  5700. },
  5701. "_lpos": {
  5702. "__type__": "cc.Vec3",
  5703. "x": 20,
  5704. "y": -48,
  5705. "z": 0
  5706. },
  5707. "_lrot": {
  5708. "__type__": "cc.Quat",
  5709. "x": 0,
  5710. "y": 0,
  5711. "z": 0,
  5712. "w": 1
  5713. },
  5714. "_lscale": {
  5715. "__type__": "cc.Vec3",
  5716. "x": 1,
  5717. "y": 1,
  5718. "z": 1
  5719. },
  5720. "_layer": 1073741824,
  5721. "_euler": {
  5722. "__type__": "cc.Vec3",
  5723. "x": 0,
  5724. "y": 0,
  5725. "z": 0
  5726. },
  5727. "_id": ""
  5728. },
  5729. {
  5730. "__type__": "cc.UITransform",
  5731. "_name": "",
  5732. "_objFlags": 0,
  5733. "node": {
  5734. "__id__": 261
  5735. },
  5736. "_enabled": true,
  5737. "__prefab": {
  5738. "__id__": 263
  5739. },
  5740. "_priority": 0,
  5741. "_contentSize": {
  5742. "__type__": "cc.Size",
  5743. "width": 248,
  5744. "height": 50.4
  5745. },
  5746. "_anchorPoint": {
  5747. "__type__": "cc.Vec2",
  5748. "x": 0.5,
  5749. "y": 0.5
  5750. },
  5751. "_id": ""
  5752. },
  5753. {
  5754. "__type__": "cc.CompPrefabInfo",
  5755. "fileId": "252OIroINAGJRqfgJ4us7d"
  5756. },
  5757. {
  5758. "__type__": "cc.Label",
  5759. "_name": "",
  5760. "_objFlags": 0,
  5761. "node": {
  5762. "__id__": 261
  5763. },
  5764. "_enabled": true,
  5765. "__prefab": {
  5766. "__id__": 265
  5767. },
  5768. "_visFlags": 0,
  5769. "_customMaterial": null,
  5770. "_srcBlendFactor": 2,
  5771. "_dstBlendFactor": 4,
  5772. "_color": {
  5773. "__type__": "cc.Color",
  5774. "r": 235,
  5775. "g": 255,
  5776. "b": 0,
  5777. "a": 255
  5778. },
  5779. "_string": "约0.00元",
  5780. "_horizontalAlign": 1,
  5781. "_verticalAlign": 1,
  5782. "_actualFontSize": 29,
  5783. "_fontSize": 28,
  5784. "_fontFamily": "Arial",
  5785. "_lineHeight": 40,
  5786. "_overflow": 2,
  5787. "_enableWrapText": true,
  5788. "_font": null,
  5789. "_isSystemFontUsed": true,
  5790. "_isItalic": false,
  5791. "_isBold": true,
  5792. "_isUnderline": false,
  5793. "_underlineHeight": 2,
  5794. "_cacheMode": 0,
  5795. "_id": ""
  5796. },
  5797. {
  5798. "__type__": "cc.CompPrefabInfo",
  5799. "fileId": "2er373hx9L3pQBCqr7p8jD"
  5800. },
  5801. {
  5802. "__type__": "cc.LabelOutline",
  5803. "_name": "",
  5804. "_objFlags": 0,
  5805. "node": {
  5806. "__id__": 261
  5807. },
  5808. "_enabled": true,
  5809. "__prefab": {
  5810. "__id__": 267
  5811. },
  5812. "_color": {
  5813. "__type__": "cc.Color",
  5814. "r": 23,
  5815. "g": 82,
  5816. "b": 172,
  5817. "a": 255
  5818. },
  5819. "_width": 2,
  5820. "_id": ""
  5821. },
  5822. {
  5823. "__type__": "cc.CompPrefabInfo",
  5824. "fileId": "7bmc3OMmJI0r2ZX807s94I"
  5825. },
  5826. {
  5827. "__type__": "cc.PrefabInfo",
  5828. "root": {
  5829. "__id__": 1
  5830. },
  5831. "asset": {
  5832. "__id__": 0
  5833. },
  5834. "fileId": "1aP/B64IJMK4qcIKbpPWA+"
  5835. },
  5836. {
  5837. "__type__": "cc.UITransform",
  5838. "_name": "",
  5839. "_objFlags": 0,
  5840. "node": {
  5841. "__id__": 172
  5842. },
  5843. "_enabled": true,
  5844. "__prefab": {
  5845. "__id__": 270
  5846. },
  5847. "_priority": 0,
  5848. "_contentSize": {
  5849. "__type__": "cc.Size",
  5850. "width": 362,
  5851. "height": 236
  5852. },
  5853. "_anchorPoint": {
  5854. "__type__": "cc.Vec2",
  5855. "x": 0.5,
  5856. "y": 0.5
  5857. },
  5858. "_id": ""
  5859. },
  5860. {
  5861. "__type__": "cc.CompPrefabInfo",
  5862. "fileId": "e5SGwzYNlDlYXyF54UCU5Z"
  5863. },
  5864. {
  5865. "__type__": "cc.Sprite",
  5866. "_name": "",
  5867. "_objFlags": 0,
  5868. "node": {
  5869. "__id__": 172
  5870. },
  5871. "_enabled": true,
  5872. "__prefab": {
  5873. "__id__": 272
  5874. },
  5875. "_visFlags": 0,
  5876. "_customMaterial": null,
  5877. "_srcBlendFactor": 2,
  5878. "_dstBlendFactor": 4,
  5879. "_color": {
  5880. "__type__": "cc.Color",
  5881. "r": 255,
  5882. "g": 255,
  5883. "b": 255,
  5884. "a": 255
  5885. },
  5886. "_spriteFrame": {
  5887. "__uuid__": "f3bd7e39-08a1-42e7-b9b1-b775cb432540@f9941"
  5888. },
  5889. "_type": 0,
  5890. "_fillType": 0,
  5891. "_sizeMode": 0,
  5892. "_fillCenter": {
  5893. "__type__": "cc.Vec2",
  5894. "x": 0,
  5895. "y": 0
  5896. },
  5897. "_fillStart": 0,
  5898. "_fillRange": 0,
  5899. "_isTrimmedMode": true,
  5900. "_useGrayscale": false,
  5901. "_atlas": null,
  5902. "_id": ""
  5903. },
  5904. {
  5905. "__type__": "cc.CompPrefabInfo",
  5906. "fileId": "a1XPasBT5LPap1EurVEBp/"
  5907. },
  5908. {
  5909. "__type__": "cc.PrefabInfo",
  5910. "root": {
  5911. "__id__": 1
  5912. },
  5913. "asset": {
  5914. "__id__": 0
  5915. },
  5916. "fileId": "490cBfuM1Nx4q1ZRCucDDk"
  5917. },
  5918. {
  5919. "__type__": "cc.Node",
  5920. "_objFlags": 0,
  5921. "_parent": {
  5922. "__id__": 171
  5923. },
  5924. "_prefab": {
  5925. "__id__": 275
  5926. },
  5927. "_id": ""
  5928. },
  5929. {
  5930. "__type__": "cc.PrefabInfo",
  5931. "root": {
  5932. "__id__": 274
  5933. },
  5934. "asset": {
  5935. "__uuid__": "76aa91f3-9b08-4223-b4c8-7df03cbcedd7"
  5936. },
  5937. "fileId": "1dYFTwRb1JYqAOFn33DkHZ",
  5938. "instance": {
  5939. "__id__": 276
  5940. }
  5941. },
  5942. {
  5943. "__type__": "cc.PrefabInstance",
  5944. "fileId": "f7mEXWC35HeKt7Zr3O/blR",
  5945. "prefabRootNode": {
  5946. "__id__": 1
  5947. },
  5948. "mountedChildren": [],
  5949. "propertyOverrides": [
  5950. {
  5951. "__id__": 277
  5952. },
  5953. {
  5954. "__id__": 279
  5955. },
  5956. {
  5957. "__id__": 280
  5958. },
  5959. {
  5960. "__id__": 281
  5961. },
  5962. {
  5963. "__id__": 283
  5964. },
  5965. {
  5966. "__id__": 285
  5967. },
  5968. {
  5969. "__id__": 287
  5970. },
  5971. {
  5972. "__id__": 289
  5973. },
  5974. {
  5975. "__id__": 291
  5976. },
  5977. {
  5978. "__id__": 293
  5979. },
  5980. {
  5981. "__id__": 295
  5982. }
  5983. ],
  5984. "removedComponents": []
  5985. },
  5986. {
  5987. "__type__": "CCPropertyOverrideInfo",
  5988. "targetInfo": {
  5989. "__id__": 278
  5990. },
  5991. "propertyPath": [
  5992. "name"
  5993. ],
  5994. "value": "ChildItem"
  5995. },
  5996. {
  5997. "__type__": "cc.TargetInfo",
  5998. "localID": [
  5999. "1dYFTwRb1JYqAOFn33DkHZ"
  6000. ]
  6001. },
  6002. {
  6003. "__type__": "CCPropertyOverrideInfo",
  6004. "targetInfo": {
  6005. "__id__": 278
  6006. },
  6007. "propertyPath": [
  6008. "position"
  6009. ],
  6010. "value": {
  6011. "__type__": "cc.Vec3",
  6012. "x": -258.321,
  6013. "y": 41.868,
  6014. "z": 0
  6015. }
  6016. },
  6017. {
  6018. "__type__": "CCPropertyOverrideInfo",
  6019. "targetInfo": {
  6020. "__id__": 278
  6021. },
  6022. "propertyPath": [
  6023. "rotation"
  6024. ],
  6025. "value": {
  6026. "__type__": "cc.Quat",
  6027. "x": 0,
  6028. "y": 0,
  6029. "z": 0,
  6030. "w": 1
  6031. }
  6032. },
  6033. {
  6034. "__type__": "CCPropertyOverrideInfo",
  6035. "targetInfo": {
  6036. "__id__": 282
  6037. },
  6038. "propertyPath": [
  6039. "position"
  6040. ],
  6041. "value": {
  6042. "__type__": "cc.Vec3",
  6043. "x": -58,
  6044. "y": 0,
  6045. "z": 0
  6046. }
  6047. },
  6048. {
  6049. "__type__": "cc.TargetInfo",
  6050. "localID": [
  6051. "860DNO07pCr7Ha4IUkEC5Z"
  6052. ]
  6053. },
  6054. {
  6055. "__type__": "CCPropertyOverrideInfo",
  6056. "targetInfo": {
  6057. "__id__": 284
  6058. },
  6059. "propertyPath": [
  6060. "position"
  6061. ],
  6062. "value": {
  6063. "__type__": "cc.Vec3",
  6064. "x": -40.5,
  6065. "y": 0,
  6066. "z": 0
  6067. }
  6068. },
  6069. {
  6070. "__type__": "cc.TargetInfo",
  6071. "localID": [
  6072. "e0a8SL8NhFKI19zLpuLRkw"
  6073. ]
  6074. },
  6075. {
  6076. "__type__": "CCPropertyOverrideInfo",
  6077. "targetInfo": {
  6078. "__id__": 286
  6079. },
  6080. "propertyPath": [
  6081. "position"
  6082. ],
  6083. "value": {
  6084. "__type__": "cc.Vec3",
  6085. "x": -24.5,
  6086. "y": 0,
  6087. "z": 0
  6088. }
  6089. },
  6090. {
  6091. "__type__": "cc.TargetInfo",
  6092. "localID": [
  6093. "8bjlX/GoZIlo5WvNaAcCZz"
  6094. ]
  6095. },
  6096. {
  6097. "__type__": "CCPropertyOverrideInfo",
  6098. "targetInfo": {
  6099. "__id__": 288
  6100. },
  6101. "propertyPath": [
  6102. "position"
  6103. ],
  6104. "value": {
  6105. "__type__": "cc.Vec3",
  6106. "x": -2.5,
  6107. "y": 0,
  6108. "z": 0
  6109. }
  6110. },
  6111. {
  6112. "__type__": "cc.TargetInfo",
  6113. "localID": [
  6114. "4f+QZoz4tCWptGFl+B8K0+"
  6115. ]
  6116. },
  6117. {
  6118. "__type__": "CCPropertyOverrideInfo",
  6119. "targetInfo": {
  6120. "__id__": 290
  6121. },
  6122. "propertyPath": [
  6123. "position"
  6124. ],
  6125. "value": {
  6126. "__type__": "cc.Vec3",
  6127. "x": 16.5,
  6128. "y": 0,
  6129. "z": 0
  6130. }
  6131. },
  6132. {
  6133. "__type__": "cc.TargetInfo",
  6134. "localID": [
  6135. "4dS8CrgoNJupugMf9hWDpx"
  6136. ]
  6137. },
  6138. {
  6139. "__type__": "CCPropertyOverrideInfo",
  6140. "targetInfo": {
  6141. "__id__": 292
  6142. },
  6143. "propertyPath": [
  6144. "position"
  6145. ],
  6146. "value": {
  6147. "__type__": "cc.Vec3",
  6148. "x": 35.5,
  6149. "y": 0,
  6150. "z": 0
  6151. }
  6152. },
  6153. {
  6154. "__type__": "cc.TargetInfo",
  6155. "localID": [
  6156. "58xuxE6K5LkbrwYTrxNTJ7"
  6157. ]
  6158. },
  6159. {
  6160. "__type__": "CCPropertyOverrideInfo",
  6161. "targetInfo": {
  6162. "__id__": 294
  6163. },
  6164. "propertyPath": [
  6165. "position"
  6166. ],
  6167. "value": {
  6168. "__type__": "cc.Vec3",
  6169. "x": 58.5,
  6170. "y": 0,
  6171. "z": 0
  6172. }
  6173. },
  6174. {
  6175. "__type__": "cc.TargetInfo",
  6176. "localID": [
  6177. "9cRPA5e4xFgba/c/hk0o4k"
  6178. ]
  6179. },
  6180. {
  6181. "__type__": "CCPropertyOverrideInfo",
  6182. "targetInfo": {
  6183. "__id__": 296
  6184. },
  6185. "propertyPath": [
  6186. "handler"
  6187. ],
  6188. "value": {
  6189. "__id__": 297
  6190. }
  6191. },
  6192. {
  6193. "__type__": "cc.TargetInfo",
  6194. "localID": [
  6195. "98jkMt9GNElro6Heqqk5C5"
  6196. ]
  6197. },
  6198. {
  6199. "__type__": "cc.ClickEvent",
  6200. "target": {
  6201. "__id__": 1
  6202. },
  6203. "component": "",
  6204. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  6205. "handler": "onChildTweenOver",
  6206. "customEventData": ""
  6207. },
  6208. {
  6209. "__type__": "cc.Node",
  6210. "_objFlags": 0,
  6211. "_parent": {
  6212. "__id__": 171
  6213. },
  6214. "_prefab": {
  6215. "__id__": 299
  6216. },
  6217. "_id": ""
  6218. },
  6219. {
  6220. "__type__": "cc.PrefabInfo",
  6221. "root": {
  6222. "__id__": 298
  6223. },
  6224. "asset": {
  6225. "__uuid__": "76aa91f3-9b08-4223-b4c8-7df03cbcedd7"
  6226. },
  6227. "fileId": "1dYFTwRb1JYqAOFn33DkHZ",
  6228. "instance": {
  6229. "__id__": 300
  6230. }
  6231. },
  6232. {
  6233. "__type__": "cc.PrefabInstance",
  6234. "fileId": "0dR3WcUrdFHZMfAn6FfuV5",
  6235. "prefabRootNode": {
  6236. "__id__": 1
  6237. },
  6238. "mountedChildren": [],
  6239. "propertyOverrides": [
  6240. {
  6241. "__id__": 301
  6242. },
  6243. {
  6244. "__id__": 303
  6245. },
  6246. {
  6247. "__id__": 305
  6248. },
  6249. {
  6250. "__id__": 307
  6251. },
  6252. {
  6253. "__id__": 309
  6254. },
  6255. {
  6256. "__id__": 311
  6257. },
  6258. {
  6259. "__id__": 313
  6260. },
  6261. {
  6262. "__id__": 315
  6263. },
  6264. {
  6265. "__id__": 317
  6266. }
  6267. ],
  6268. "removedComponents": []
  6269. },
  6270. {
  6271. "__type__": "CCPropertyOverrideInfo",
  6272. "targetInfo": {
  6273. "__id__": 302
  6274. },
  6275. "propertyPath": [
  6276. "position"
  6277. ],
  6278. "value": {
  6279. "__type__": "cc.Vec3",
  6280. "x": -58,
  6281. "y": 0,
  6282. "z": 0
  6283. }
  6284. },
  6285. {
  6286. "__type__": "cc.TargetInfo",
  6287. "localID": [
  6288. "860DNO07pCr7Ha4IUkEC5Z"
  6289. ]
  6290. },
  6291. {
  6292. "__type__": "CCPropertyOverrideInfo",
  6293. "targetInfo": {
  6294. "__id__": 304
  6295. },
  6296. "propertyPath": [
  6297. "position"
  6298. ],
  6299. "value": {
  6300. "__type__": "cc.Vec3",
  6301. "x": -40.5,
  6302. "y": 0,
  6303. "z": 0
  6304. }
  6305. },
  6306. {
  6307. "__type__": "cc.TargetInfo",
  6308. "localID": [
  6309. "e0a8SL8NhFKI19zLpuLRkw"
  6310. ]
  6311. },
  6312. {
  6313. "__type__": "CCPropertyOverrideInfo",
  6314. "targetInfo": {
  6315. "__id__": 306
  6316. },
  6317. "propertyPath": [
  6318. "position"
  6319. ],
  6320. "value": {
  6321. "__type__": "cc.Vec3",
  6322. "x": -24.5,
  6323. "y": 0,
  6324. "z": 0
  6325. }
  6326. },
  6327. {
  6328. "__type__": "cc.TargetInfo",
  6329. "localID": [
  6330. "8bjlX/GoZIlo5WvNaAcCZz"
  6331. ]
  6332. },
  6333. {
  6334. "__type__": "CCPropertyOverrideInfo",
  6335. "targetInfo": {
  6336. "__id__": 308
  6337. },
  6338. "propertyPath": [
  6339. "position"
  6340. ],
  6341. "value": {
  6342. "__type__": "cc.Vec3",
  6343. "x": -2.5,
  6344. "y": 0,
  6345. "z": 0
  6346. }
  6347. },
  6348. {
  6349. "__type__": "cc.TargetInfo",
  6350. "localID": [
  6351. "4f+QZoz4tCWptGFl+B8K0+"
  6352. ]
  6353. },
  6354. {
  6355. "__type__": "CCPropertyOverrideInfo",
  6356. "targetInfo": {
  6357. "__id__": 310
  6358. },
  6359. "propertyPath": [
  6360. "position"
  6361. ],
  6362. "value": {
  6363. "__type__": "cc.Vec3",
  6364. "x": 16.5,
  6365. "y": 0,
  6366. "z": 0
  6367. }
  6368. },
  6369. {
  6370. "__type__": "cc.TargetInfo",
  6371. "localID": [
  6372. "4dS8CrgoNJupugMf9hWDpx"
  6373. ]
  6374. },
  6375. {
  6376. "__type__": "CCPropertyOverrideInfo",
  6377. "targetInfo": {
  6378. "__id__": 312
  6379. },
  6380. "propertyPath": [
  6381. "position"
  6382. ],
  6383. "value": {
  6384. "__type__": "cc.Vec3",
  6385. "x": 35.5,
  6386. "y": 0,
  6387. "z": 0
  6388. }
  6389. },
  6390. {
  6391. "__type__": "cc.TargetInfo",
  6392. "localID": [
  6393. "58xuxE6K5LkbrwYTrxNTJ7"
  6394. ]
  6395. },
  6396. {
  6397. "__type__": "CCPropertyOverrideInfo",
  6398. "targetInfo": {
  6399. "__id__": 314
  6400. },
  6401. "propertyPath": [
  6402. "position"
  6403. ],
  6404. "value": {
  6405. "__type__": "cc.Vec3",
  6406. "x": 58.5,
  6407. "y": 0,
  6408. "z": 0
  6409. }
  6410. },
  6411. {
  6412. "__type__": "cc.TargetInfo",
  6413. "localID": [
  6414. "9cRPA5e4xFgba/c/hk0o4k"
  6415. ]
  6416. },
  6417. {
  6418. "__type__": "CCPropertyOverrideInfo",
  6419. "targetInfo": {
  6420. "__id__": 316
  6421. },
  6422. "propertyPath": [
  6423. "position"
  6424. ],
  6425. "value": {
  6426. "__type__": "cc.Vec3",
  6427. "x": -183.304,
  6428. "y": 197.5,
  6429. "z": 0
  6430. }
  6431. },
  6432. {
  6433. "__type__": "cc.TargetInfo",
  6434. "localID": [
  6435. "1dYFTwRb1JYqAOFn33DkHZ"
  6436. ]
  6437. },
  6438. {
  6439. "__type__": "CCPropertyOverrideInfo",
  6440. "targetInfo": {
  6441. "__id__": 318
  6442. },
  6443. "propertyPath": [
  6444. "handler"
  6445. ],
  6446. "value": {
  6447. "__id__": 319
  6448. }
  6449. },
  6450. {
  6451. "__type__": "cc.TargetInfo",
  6452. "localID": [
  6453. "98jkMt9GNElro6Heqqk5C5"
  6454. ]
  6455. },
  6456. {
  6457. "__type__": "cc.ClickEvent",
  6458. "target": {
  6459. "__id__": 1
  6460. },
  6461. "component": "",
  6462. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  6463. "handler": "onChildTweenOver",
  6464. "customEventData": ""
  6465. },
  6466. {
  6467. "__type__": "cc.Node",
  6468. "_objFlags": 0,
  6469. "_parent": {
  6470. "__id__": 171
  6471. },
  6472. "_prefab": {
  6473. "__id__": 321
  6474. },
  6475. "_id": ""
  6476. },
  6477. {
  6478. "__type__": "cc.PrefabInfo",
  6479. "root": {
  6480. "__id__": 320
  6481. },
  6482. "asset": {
  6483. "__uuid__": "76aa91f3-9b08-4223-b4c8-7df03cbcedd7"
  6484. },
  6485. "fileId": "1dYFTwRb1JYqAOFn33DkHZ",
  6486. "instance": {
  6487. "__id__": 322
  6488. }
  6489. },
  6490. {
  6491. "__type__": "cc.PrefabInstance",
  6492. "fileId": "75AXr5DUBFS4niBSGQw7K2",
  6493. "prefabRootNode": {
  6494. "__id__": 1
  6495. },
  6496. "mountedChildren": [],
  6497. "propertyOverrides": [
  6498. {
  6499. "__id__": 323
  6500. },
  6501. {
  6502. "__id__": 325
  6503. },
  6504. {
  6505. "__id__": 327
  6506. },
  6507. {
  6508. "__id__": 329
  6509. },
  6510. {
  6511. "__id__": 331
  6512. },
  6513. {
  6514. "__id__": 333
  6515. },
  6516. {
  6517. "__id__": 335
  6518. },
  6519. {
  6520. "__id__": 337
  6521. },
  6522. {
  6523. "__id__": 339
  6524. }
  6525. ],
  6526. "removedComponents": []
  6527. },
  6528. {
  6529. "__type__": "CCPropertyOverrideInfo",
  6530. "targetInfo": {
  6531. "__id__": 324
  6532. },
  6533. "propertyPath": [
  6534. "position"
  6535. ],
  6536. "value": {
  6537. "__type__": "cc.Vec3",
  6538. "x": -58,
  6539. "y": 0,
  6540. "z": 0
  6541. }
  6542. },
  6543. {
  6544. "__type__": "cc.TargetInfo",
  6545. "localID": [
  6546. "860DNO07pCr7Ha4IUkEC5Z"
  6547. ]
  6548. },
  6549. {
  6550. "__type__": "CCPropertyOverrideInfo",
  6551. "targetInfo": {
  6552. "__id__": 326
  6553. },
  6554. "propertyPath": [
  6555. "position"
  6556. ],
  6557. "value": {
  6558. "__type__": "cc.Vec3",
  6559. "x": -40.5,
  6560. "y": 0,
  6561. "z": 0
  6562. }
  6563. },
  6564. {
  6565. "__type__": "cc.TargetInfo",
  6566. "localID": [
  6567. "e0a8SL8NhFKI19zLpuLRkw"
  6568. ]
  6569. },
  6570. {
  6571. "__type__": "CCPropertyOverrideInfo",
  6572. "targetInfo": {
  6573. "__id__": 328
  6574. },
  6575. "propertyPath": [
  6576. "position"
  6577. ],
  6578. "value": {
  6579. "__type__": "cc.Vec3",
  6580. "x": -24.5,
  6581. "y": 0,
  6582. "z": 0
  6583. }
  6584. },
  6585. {
  6586. "__type__": "cc.TargetInfo",
  6587. "localID": [
  6588. "8bjlX/GoZIlo5WvNaAcCZz"
  6589. ]
  6590. },
  6591. {
  6592. "__type__": "CCPropertyOverrideInfo",
  6593. "targetInfo": {
  6594. "__id__": 330
  6595. },
  6596. "propertyPath": [
  6597. "position"
  6598. ],
  6599. "value": {
  6600. "__type__": "cc.Vec3",
  6601. "x": -2.5,
  6602. "y": 0,
  6603. "z": 0
  6604. }
  6605. },
  6606. {
  6607. "__type__": "cc.TargetInfo",
  6608. "localID": [
  6609. "4f+QZoz4tCWptGFl+B8K0+"
  6610. ]
  6611. },
  6612. {
  6613. "__type__": "CCPropertyOverrideInfo",
  6614. "targetInfo": {
  6615. "__id__": 332
  6616. },
  6617. "propertyPath": [
  6618. "position"
  6619. ],
  6620. "value": {
  6621. "__type__": "cc.Vec3",
  6622. "x": 16.5,
  6623. "y": 0,
  6624. "z": 0
  6625. }
  6626. },
  6627. {
  6628. "__type__": "cc.TargetInfo",
  6629. "localID": [
  6630. "4dS8CrgoNJupugMf9hWDpx"
  6631. ]
  6632. },
  6633. {
  6634. "__type__": "CCPropertyOverrideInfo",
  6635. "targetInfo": {
  6636. "__id__": 334
  6637. },
  6638. "propertyPath": [
  6639. "position"
  6640. ],
  6641. "value": {
  6642. "__type__": "cc.Vec3",
  6643. "x": 35.5,
  6644. "y": 0,
  6645. "z": 0
  6646. }
  6647. },
  6648. {
  6649. "__type__": "cc.TargetInfo",
  6650. "localID": [
  6651. "58xuxE6K5LkbrwYTrxNTJ7"
  6652. ]
  6653. },
  6654. {
  6655. "__type__": "CCPropertyOverrideInfo",
  6656. "targetInfo": {
  6657. "__id__": 336
  6658. },
  6659. "propertyPath": [
  6660. "position"
  6661. ],
  6662. "value": {
  6663. "__type__": "cc.Vec3",
  6664. "x": 58.5,
  6665. "y": 0,
  6666. "z": 0
  6667. }
  6668. },
  6669. {
  6670. "__type__": "cc.TargetInfo",
  6671. "localID": [
  6672. "9cRPA5e4xFgba/c/hk0o4k"
  6673. ]
  6674. },
  6675. {
  6676. "__type__": "CCPropertyOverrideInfo",
  6677. "targetInfo": {
  6678. "__id__": 338
  6679. },
  6680. "propertyPath": [
  6681. "position"
  6682. ],
  6683. "value": {
  6684. "__type__": "cc.Vec3",
  6685. "x": -60.321,
  6686. "y": 313.407,
  6687. "z": 0
  6688. }
  6689. },
  6690. {
  6691. "__type__": "cc.TargetInfo",
  6692. "localID": [
  6693. "1dYFTwRb1JYqAOFn33DkHZ"
  6694. ]
  6695. },
  6696. {
  6697. "__type__": "CCPropertyOverrideInfo",
  6698. "targetInfo": {
  6699. "__id__": 340
  6700. },
  6701. "propertyPath": [
  6702. "handler"
  6703. ],
  6704. "value": {
  6705. "__id__": 341
  6706. }
  6707. },
  6708. {
  6709. "__type__": "cc.TargetInfo",
  6710. "localID": [
  6711. "98jkMt9GNElro6Heqqk5C5"
  6712. ]
  6713. },
  6714. {
  6715. "__type__": "cc.ClickEvent",
  6716. "target": {
  6717. "__id__": 1
  6718. },
  6719. "component": "",
  6720. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  6721. "handler": "onChildTweenOver",
  6722. "customEventData": ""
  6723. },
  6724. {
  6725. "__type__": "cc.Node",
  6726. "_objFlags": 0,
  6727. "_parent": {
  6728. "__id__": 171
  6729. },
  6730. "_prefab": {
  6731. "__id__": 343
  6732. },
  6733. "_id": ""
  6734. },
  6735. {
  6736. "__type__": "cc.PrefabInfo",
  6737. "root": {
  6738. "__id__": 342
  6739. },
  6740. "asset": {
  6741. "__uuid__": "76aa91f3-9b08-4223-b4c8-7df03cbcedd7"
  6742. },
  6743. "fileId": "1dYFTwRb1JYqAOFn33DkHZ",
  6744. "instance": {
  6745. "__id__": 344
  6746. }
  6747. },
  6748. {
  6749. "__type__": "cc.PrefabInstance",
  6750. "fileId": "6fkBt0WEZC6JR2gHgaoTKu",
  6751. "prefabRootNode": {
  6752. "__id__": 1
  6753. },
  6754. "mountedChildren": [],
  6755. "propertyOverrides": [
  6756. {
  6757. "__id__": 345
  6758. },
  6759. {
  6760. "__id__": 347
  6761. },
  6762. {
  6763. "__id__": 349
  6764. },
  6765. {
  6766. "__id__": 351
  6767. },
  6768. {
  6769. "__id__": 353
  6770. },
  6771. {
  6772. "__id__": 355
  6773. },
  6774. {
  6775. "__id__": 357
  6776. },
  6777. {
  6778. "__id__": 359
  6779. },
  6780. {
  6781. "__id__": 361
  6782. }
  6783. ],
  6784. "removedComponents": []
  6785. },
  6786. {
  6787. "__type__": "CCPropertyOverrideInfo",
  6788. "targetInfo": {
  6789. "__id__": 346
  6790. },
  6791. "propertyPath": [
  6792. "position"
  6793. ],
  6794. "value": {
  6795. "__type__": "cc.Vec3",
  6796. "x": -58,
  6797. "y": 0,
  6798. "z": 0
  6799. }
  6800. },
  6801. {
  6802. "__type__": "cc.TargetInfo",
  6803. "localID": [
  6804. "860DNO07pCr7Ha4IUkEC5Z"
  6805. ]
  6806. },
  6807. {
  6808. "__type__": "CCPropertyOverrideInfo",
  6809. "targetInfo": {
  6810. "__id__": 348
  6811. },
  6812. "propertyPath": [
  6813. "position"
  6814. ],
  6815. "value": {
  6816. "__type__": "cc.Vec3",
  6817. "x": -40.5,
  6818. "y": 0,
  6819. "z": 0
  6820. }
  6821. },
  6822. {
  6823. "__type__": "cc.TargetInfo",
  6824. "localID": [
  6825. "e0a8SL8NhFKI19zLpuLRkw"
  6826. ]
  6827. },
  6828. {
  6829. "__type__": "CCPropertyOverrideInfo",
  6830. "targetInfo": {
  6831. "__id__": 350
  6832. },
  6833. "propertyPath": [
  6834. "position"
  6835. ],
  6836. "value": {
  6837. "__type__": "cc.Vec3",
  6838. "x": -24.5,
  6839. "y": 0,
  6840. "z": 0
  6841. }
  6842. },
  6843. {
  6844. "__type__": "cc.TargetInfo",
  6845. "localID": [
  6846. "8bjlX/GoZIlo5WvNaAcCZz"
  6847. ]
  6848. },
  6849. {
  6850. "__type__": "CCPropertyOverrideInfo",
  6851. "targetInfo": {
  6852. "__id__": 352
  6853. },
  6854. "propertyPath": [
  6855. "position"
  6856. ],
  6857. "value": {
  6858. "__type__": "cc.Vec3",
  6859. "x": -2.5,
  6860. "y": 0,
  6861. "z": 0
  6862. }
  6863. },
  6864. {
  6865. "__type__": "cc.TargetInfo",
  6866. "localID": [
  6867. "4f+QZoz4tCWptGFl+B8K0+"
  6868. ]
  6869. },
  6870. {
  6871. "__type__": "CCPropertyOverrideInfo",
  6872. "targetInfo": {
  6873. "__id__": 354
  6874. },
  6875. "propertyPath": [
  6876. "position"
  6877. ],
  6878. "value": {
  6879. "__type__": "cc.Vec3",
  6880. "x": 16.5,
  6881. "y": 0,
  6882. "z": 0
  6883. }
  6884. },
  6885. {
  6886. "__type__": "cc.TargetInfo",
  6887. "localID": [
  6888. "4dS8CrgoNJupugMf9hWDpx"
  6889. ]
  6890. },
  6891. {
  6892. "__type__": "CCPropertyOverrideInfo",
  6893. "targetInfo": {
  6894. "__id__": 356
  6895. },
  6896. "propertyPath": [
  6897. "position"
  6898. ],
  6899. "value": {
  6900. "__type__": "cc.Vec3",
  6901. "x": 35.5,
  6902. "y": 0,
  6903. "z": 0
  6904. }
  6905. },
  6906. {
  6907. "__type__": "cc.TargetInfo",
  6908. "localID": [
  6909. "58xuxE6K5LkbrwYTrxNTJ7"
  6910. ]
  6911. },
  6912. {
  6913. "__type__": "CCPropertyOverrideInfo",
  6914. "targetInfo": {
  6915. "__id__": 358
  6916. },
  6917. "propertyPath": [
  6918. "position"
  6919. ],
  6920. "value": {
  6921. "__type__": "cc.Vec3",
  6922. "x": 58.5,
  6923. "y": 0,
  6924. "z": 0
  6925. }
  6926. },
  6927. {
  6928. "__type__": "cc.TargetInfo",
  6929. "localID": [
  6930. "9cRPA5e4xFgba/c/hk0o4k"
  6931. ]
  6932. },
  6933. {
  6934. "__type__": "CCPropertyOverrideInfo",
  6935. "targetInfo": {
  6936. "__id__": 360
  6937. },
  6938. "propertyPath": [
  6939. "position"
  6940. ],
  6941. "value": {
  6942. "__type__": "cc.Vec3",
  6943. "x": 89.891,
  6944. "y": 268.979,
  6945. "z": 0
  6946. }
  6947. },
  6948. {
  6949. "__type__": "cc.TargetInfo",
  6950. "localID": [
  6951. "1dYFTwRb1JYqAOFn33DkHZ"
  6952. ]
  6953. },
  6954. {
  6955. "__type__": "CCPropertyOverrideInfo",
  6956. "targetInfo": {
  6957. "__id__": 362
  6958. },
  6959. "propertyPath": [
  6960. "handler"
  6961. ],
  6962. "value": {
  6963. "__id__": 363
  6964. }
  6965. },
  6966. {
  6967. "__type__": "cc.TargetInfo",
  6968. "localID": [
  6969. "98jkMt9GNElro6Heqqk5C5"
  6970. ]
  6971. },
  6972. {
  6973. "__type__": "cc.ClickEvent",
  6974. "target": {
  6975. "__id__": 1
  6976. },
  6977. "component": "",
  6978. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  6979. "handler": "onChildTweenOver",
  6980. "customEventData": ""
  6981. },
  6982. {
  6983. "__type__": "cc.Node",
  6984. "_objFlags": 0,
  6985. "_parent": {
  6986. "__id__": 171
  6987. },
  6988. "_prefab": {
  6989. "__id__": 365
  6990. },
  6991. "_id": ""
  6992. },
  6993. {
  6994. "__type__": "cc.PrefabInfo",
  6995. "root": {
  6996. "__id__": 364
  6997. },
  6998. "asset": {
  6999. "__uuid__": "76aa91f3-9b08-4223-b4c8-7df03cbcedd7"
  7000. },
  7001. "fileId": "1dYFTwRb1JYqAOFn33DkHZ",
  7002. "instance": {
  7003. "__id__": 366
  7004. }
  7005. },
  7006. {
  7007. "__type__": "cc.PrefabInstance",
  7008. "fileId": "ecjr6WAFxPspy0b+3YOKFC",
  7009. "prefabRootNode": {
  7010. "__id__": 1
  7011. },
  7012. "mountedChildren": [],
  7013. "propertyOverrides": [
  7014. {
  7015. "__id__": 367
  7016. },
  7017. {
  7018. "__id__": 369
  7019. },
  7020. {
  7021. "__id__": 371
  7022. },
  7023. {
  7024. "__id__": 373
  7025. },
  7026. {
  7027. "__id__": 375
  7028. },
  7029. {
  7030. "__id__": 377
  7031. },
  7032. {
  7033. "__id__": 379
  7034. },
  7035. {
  7036. "__id__": 381
  7037. },
  7038. {
  7039. "__id__": 383
  7040. }
  7041. ],
  7042. "removedComponents": []
  7043. },
  7044. {
  7045. "__type__": "CCPropertyOverrideInfo",
  7046. "targetInfo": {
  7047. "__id__": 368
  7048. },
  7049. "propertyPath": [
  7050. "position"
  7051. ],
  7052. "value": {
  7053. "__type__": "cc.Vec3",
  7054. "x": -58,
  7055. "y": 0,
  7056. "z": 0
  7057. }
  7058. },
  7059. {
  7060. "__type__": "cc.TargetInfo",
  7061. "localID": [
  7062. "860DNO07pCr7Ha4IUkEC5Z"
  7063. ]
  7064. },
  7065. {
  7066. "__type__": "CCPropertyOverrideInfo",
  7067. "targetInfo": {
  7068. "__id__": 370
  7069. },
  7070. "propertyPath": [
  7071. "position"
  7072. ],
  7073. "value": {
  7074. "__type__": "cc.Vec3",
  7075. "x": -40.5,
  7076. "y": 0,
  7077. "z": 0
  7078. }
  7079. },
  7080. {
  7081. "__type__": "cc.TargetInfo",
  7082. "localID": [
  7083. "e0a8SL8NhFKI19zLpuLRkw"
  7084. ]
  7085. },
  7086. {
  7087. "__type__": "CCPropertyOverrideInfo",
  7088. "targetInfo": {
  7089. "__id__": 372
  7090. },
  7091. "propertyPath": [
  7092. "position"
  7093. ],
  7094. "value": {
  7095. "__type__": "cc.Vec3",
  7096. "x": -24.5,
  7097. "y": 0,
  7098. "z": 0
  7099. }
  7100. },
  7101. {
  7102. "__type__": "cc.TargetInfo",
  7103. "localID": [
  7104. "8bjlX/GoZIlo5WvNaAcCZz"
  7105. ]
  7106. },
  7107. {
  7108. "__type__": "CCPropertyOverrideInfo",
  7109. "targetInfo": {
  7110. "__id__": 374
  7111. },
  7112. "propertyPath": [
  7113. "position"
  7114. ],
  7115. "value": {
  7116. "__type__": "cc.Vec3",
  7117. "x": -2.5,
  7118. "y": 0,
  7119. "z": 0
  7120. }
  7121. },
  7122. {
  7123. "__type__": "cc.TargetInfo",
  7124. "localID": [
  7125. "4f+QZoz4tCWptGFl+B8K0+"
  7126. ]
  7127. },
  7128. {
  7129. "__type__": "CCPropertyOverrideInfo",
  7130. "targetInfo": {
  7131. "__id__": 376
  7132. },
  7133. "propertyPath": [
  7134. "position"
  7135. ],
  7136. "value": {
  7137. "__type__": "cc.Vec3",
  7138. "x": 16.5,
  7139. "y": 0,
  7140. "z": 0
  7141. }
  7142. },
  7143. {
  7144. "__type__": "cc.TargetInfo",
  7145. "localID": [
  7146. "4dS8CrgoNJupugMf9hWDpx"
  7147. ]
  7148. },
  7149. {
  7150. "__type__": "CCPropertyOverrideInfo",
  7151. "targetInfo": {
  7152. "__id__": 378
  7153. },
  7154. "propertyPath": [
  7155. "position"
  7156. ],
  7157. "value": {
  7158. "__type__": "cc.Vec3",
  7159. "x": 35.5,
  7160. "y": 0,
  7161. "z": 0
  7162. }
  7163. },
  7164. {
  7165. "__type__": "cc.TargetInfo",
  7166. "localID": [
  7167. "58xuxE6K5LkbrwYTrxNTJ7"
  7168. ]
  7169. },
  7170. {
  7171. "__type__": "CCPropertyOverrideInfo",
  7172. "targetInfo": {
  7173. "__id__": 380
  7174. },
  7175. "propertyPath": [
  7176. "position"
  7177. ],
  7178. "value": {
  7179. "__type__": "cc.Vec3",
  7180. "x": 58.5,
  7181. "y": 0,
  7182. "z": 0
  7183. }
  7184. },
  7185. {
  7186. "__type__": "cc.TargetInfo",
  7187. "localID": [
  7188. "9cRPA5e4xFgba/c/hk0o4k"
  7189. ]
  7190. },
  7191. {
  7192. "__type__": "CCPropertyOverrideInfo",
  7193. "targetInfo": {
  7194. "__id__": 382
  7195. },
  7196. "propertyPath": [
  7197. "position"
  7198. ],
  7199. "value": {
  7200. "__type__": "cc.Vec3",
  7201. "x": 197.558,
  7202. "y": 149.22,
  7203. "z": 0
  7204. }
  7205. },
  7206. {
  7207. "__type__": "cc.TargetInfo",
  7208. "localID": [
  7209. "1dYFTwRb1JYqAOFn33DkHZ"
  7210. ]
  7211. },
  7212. {
  7213. "__type__": "CCPropertyOverrideInfo",
  7214. "targetInfo": {
  7215. "__id__": 384
  7216. },
  7217. "propertyPath": [
  7218. "handler"
  7219. ],
  7220. "value": {
  7221. "__id__": 385
  7222. }
  7223. },
  7224. {
  7225. "__type__": "cc.TargetInfo",
  7226. "localID": [
  7227. "98jkMt9GNElro6Heqqk5C5"
  7228. ]
  7229. },
  7230. {
  7231. "__type__": "cc.ClickEvent",
  7232. "target": {
  7233. "__id__": 1
  7234. },
  7235. "component": "",
  7236. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  7237. "handler": "onChildTweenOver",
  7238. "customEventData": ""
  7239. },
  7240. {
  7241. "__type__": "cc.Node",
  7242. "_objFlags": 0,
  7243. "_parent": {
  7244. "__id__": 171
  7245. },
  7246. "_prefab": {
  7247. "__id__": 387
  7248. },
  7249. "_id": ""
  7250. },
  7251. {
  7252. "__type__": "cc.PrefabInfo",
  7253. "root": {
  7254. "__id__": 386
  7255. },
  7256. "asset": {
  7257. "__uuid__": "76aa91f3-9b08-4223-b4c8-7df03cbcedd7"
  7258. },
  7259. "fileId": "1dYFTwRb1JYqAOFn33DkHZ",
  7260. "instance": {
  7261. "__id__": 388
  7262. }
  7263. },
  7264. {
  7265. "__type__": "cc.PrefabInstance",
  7266. "fileId": "78YHpWVTtKhb0/tN1i1gyA",
  7267. "prefabRootNode": {
  7268. "__id__": 1
  7269. },
  7270. "mountedChildren": [],
  7271. "propertyOverrides": [
  7272. {
  7273. "__id__": 389
  7274. },
  7275. {
  7276. "__id__": 391
  7277. },
  7278. {
  7279. "__id__": 393
  7280. },
  7281. {
  7282. "__id__": 395
  7283. },
  7284. {
  7285. "__id__": 397
  7286. },
  7287. {
  7288. "__id__": 399
  7289. },
  7290. {
  7291. "__id__": 401
  7292. },
  7293. {
  7294. "__id__": 403
  7295. },
  7296. {
  7297. "__id__": 405
  7298. }
  7299. ],
  7300. "removedComponents": []
  7301. },
  7302. {
  7303. "__type__": "CCPropertyOverrideInfo",
  7304. "targetInfo": {
  7305. "__id__": 390
  7306. },
  7307. "propertyPath": [
  7308. "position"
  7309. ],
  7310. "value": {
  7311. "__type__": "cc.Vec3",
  7312. "x": -58,
  7313. "y": 0,
  7314. "z": 0
  7315. }
  7316. },
  7317. {
  7318. "__type__": "cc.TargetInfo",
  7319. "localID": [
  7320. "860DNO07pCr7Ha4IUkEC5Z"
  7321. ]
  7322. },
  7323. {
  7324. "__type__": "CCPropertyOverrideInfo",
  7325. "targetInfo": {
  7326. "__id__": 392
  7327. },
  7328. "propertyPath": [
  7329. "position"
  7330. ],
  7331. "value": {
  7332. "__type__": "cc.Vec3",
  7333. "x": -40.5,
  7334. "y": 0,
  7335. "z": 0
  7336. }
  7337. },
  7338. {
  7339. "__type__": "cc.TargetInfo",
  7340. "localID": [
  7341. "e0a8SL8NhFKI19zLpuLRkw"
  7342. ]
  7343. },
  7344. {
  7345. "__type__": "CCPropertyOverrideInfo",
  7346. "targetInfo": {
  7347. "__id__": 394
  7348. },
  7349. "propertyPath": [
  7350. "position"
  7351. ],
  7352. "value": {
  7353. "__type__": "cc.Vec3",
  7354. "x": -24.5,
  7355. "y": 0,
  7356. "z": 0
  7357. }
  7358. },
  7359. {
  7360. "__type__": "cc.TargetInfo",
  7361. "localID": [
  7362. "8bjlX/GoZIlo5WvNaAcCZz"
  7363. ]
  7364. },
  7365. {
  7366. "__type__": "CCPropertyOverrideInfo",
  7367. "targetInfo": {
  7368. "__id__": 396
  7369. },
  7370. "propertyPath": [
  7371. "position"
  7372. ],
  7373. "value": {
  7374. "__type__": "cc.Vec3",
  7375. "x": -2.5,
  7376. "y": 0,
  7377. "z": 0
  7378. }
  7379. },
  7380. {
  7381. "__type__": "cc.TargetInfo",
  7382. "localID": [
  7383. "4f+QZoz4tCWptGFl+B8K0+"
  7384. ]
  7385. },
  7386. {
  7387. "__type__": "CCPropertyOverrideInfo",
  7388. "targetInfo": {
  7389. "__id__": 398
  7390. },
  7391. "propertyPath": [
  7392. "position"
  7393. ],
  7394. "value": {
  7395. "__type__": "cc.Vec3",
  7396. "x": 16.5,
  7397. "y": 0,
  7398. "z": 0
  7399. }
  7400. },
  7401. {
  7402. "__type__": "cc.TargetInfo",
  7403. "localID": [
  7404. "4dS8CrgoNJupugMf9hWDpx"
  7405. ]
  7406. },
  7407. {
  7408. "__type__": "CCPropertyOverrideInfo",
  7409. "targetInfo": {
  7410. "__id__": 400
  7411. },
  7412. "propertyPath": [
  7413. "position"
  7414. ],
  7415. "value": {
  7416. "__type__": "cc.Vec3",
  7417. "x": 35.5,
  7418. "y": 0,
  7419. "z": 0
  7420. }
  7421. },
  7422. {
  7423. "__type__": "cc.TargetInfo",
  7424. "localID": [
  7425. "58xuxE6K5LkbrwYTrxNTJ7"
  7426. ]
  7427. },
  7428. {
  7429. "__type__": "CCPropertyOverrideInfo",
  7430. "targetInfo": {
  7431. "__id__": 402
  7432. },
  7433. "propertyPath": [
  7434. "position"
  7435. ],
  7436. "value": {
  7437. "__type__": "cc.Vec3",
  7438. "x": 58.5,
  7439. "y": 0,
  7440. "z": 0
  7441. }
  7442. },
  7443. {
  7444. "__type__": "cc.TargetInfo",
  7445. "localID": [
  7446. "9cRPA5e4xFgba/c/hk0o4k"
  7447. ]
  7448. },
  7449. {
  7450. "__type__": "CCPropertyOverrideInfo",
  7451. "targetInfo": {
  7452. "__id__": 404
  7453. },
  7454. "propertyPath": [
  7455. "position"
  7456. ],
  7457. "value": {
  7458. "__type__": "cc.Vec3",
  7459. "x": 279.023,
  7460. "y": 7.964,
  7461. "z": 0
  7462. }
  7463. },
  7464. {
  7465. "__type__": "cc.TargetInfo",
  7466. "localID": [
  7467. "1dYFTwRb1JYqAOFn33DkHZ"
  7468. ]
  7469. },
  7470. {
  7471. "__type__": "CCPropertyOverrideInfo",
  7472. "targetInfo": {
  7473. "__id__": 406
  7474. },
  7475. "propertyPath": [
  7476. "handler"
  7477. ],
  7478. "value": {
  7479. "__id__": 407
  7480. }
  7481. },
  7482. {
  7483. "__type__": "cc.TargetInfo",
  7484. "localID": [
  7485. "98jkMt9GNElro6Heqqk5C5"
  7486. ]
  7487. },
  7488. {
  7489. "__type__": "cc.ClickEvent",
  7490. "target": {
  7491. "__id__": 1
  7492. },
  7493. "component": "",
  7494. "_componentId": "68bbfg6NcxBHJUYVWwPz3Af",
  7495. "handler": "onChildTweenOver",
  7496. "customEventData": ""
  7497. },
  7498. {
  7499. "__type__": "cc.UITransform",
  7500. "_name": "",
  7501. "_objFlags": 0,
  7502. "node": {
  7503. "__id__": 171
  7504. },
  7505. "_enabled": true,
  7506. "__prefab": {
  7507. "__id__": 409
  7508. },
  7509. "_priority": 0,
  7510. "_contentSize": {
  7511. "__type__": "cc.Size",
  7512. "width": 750,
  7513. "height": 1334
  7514. },
  7515. "_anchorPoint": {
  7516. "__type__": "cc.Vec2",
  7517. "x": 0.5,
  7518. "y": 0.5
  7519. },
  7520. "_id": ""
  7521. },
  7522. {
  7523. "__type__": "cc.CompPrefabInfo",
  7524. "fileId": "4c4zWFY9ZIrY2P/L+0gLb8"
  7525. },
  7526. {
  7527. "__type__": "cc.Widget",
  7528. "_name": "",
  7529. "_objFlags": 0,
  7530. "node": {
  7531. "__id__": 171
  7532. },
  7533. "_enabled": true,
  7534. "__prefab": {
  7535. "__id__": 411
  7536. },
  7537. "_alignFlags": 45,
  7538. "_target": null,
  7539. "_left": 0,
  7540. "_right": 0,
  7541. "_top": 0,
  7542. "_bottom": 0,
  7543. "_horizontalCenter": 0,
  7544. "_verticalCenter": 0,
  7545. "_isAbsLeft": true,
  7546. "_isAbsRight": true,
  7547. "_isAbsTop": true,
  7548. "_isAbsBottom": true,
  7549. "_isAbsHorizontalCenter": true,
  7550. "_isAbsVerticalCenter": true,
  7551. "_originalWidth": 100,
  7552. "_originalHeight": 100,
  7553. "_alignMode": 2,
  7554. "_lockFlags": 0,
  7555. "_id": ""
  7556. },
  7557. {
  7558. "__type__": "cc.CompPrefabInfo",
  7559. "fileId": "b0uzJNNV5BxJc/aIkjBhQ4"
  7560. },
  7561. {
  7562. "__type__": "cc.PrefabInfo",
  7563. "root": {
  7564. "__id__": 1
  7565. },
  7566. "asset": {
  7567. "__id__": 0
  7568. },
  7569. "fileId": "01O/SL7ARPlL6johc5qws+"
  7570. },
  7571. {
  7572. "__type__": "cc.UITransform",
  7573. "_name": "",
  7574. "_objFlags": 0,
  7575. "node": {
  7576. "__id__": 3
  7577. },
  7578. "_enabled": true,
  7579. "__prefab": {
  7580. "__id__": 414
  7581. },
  7582. "_priority": 0,
  7583. "_contentSize": {
  7584. "__type__": "cc.Size",
  7585. "width": 750,
  7586. "height": 1334
  7587. },
  7588. "_anchorPoint": {
  7589. "__type__": "cc.Vec2",
  7590. "x": 0.5,
  7591. "y": 0.5
  7592. },
  7593. "_id": ""
  7594. },
  7595. {
  7596. "__type__": "cc.CompPrefabInfo",
  7597. "fileId": "5eVGipHvxMdKI6Aw6hSxJM"
  7598. },
  7599. {
  7600. "__type__": "cc.Widget",
  7601. "_name": "",
  7602. "_objFlags": 0,
  7603. "node": {
  7604. "__id__": 3
  7605. },
  7606. "_enabled": true,
  7607. "__prefab": {
  7608. "__id__": 416
  7609. },
  7610. "_alignFlags": 45,
  7611. "_target": null,
  7612. "_left": 0,
  7613. "_right": 0,
  7614. "_top": 0,
  7615. "_bottom": 0,
  7616. "_horizontalCenter": 0,
  7617. "_verticalCenter": 0,
  7618. "_isAbsLeft": true,
  7619. "_isAbsRight": true,
  7620. "_isAbsTop": true,
  7621. "_isAbsBottom": true,
  7622. "_isAbsHorizontalCenter": true,
  7623. "_isAbsVerticalCenter": true,
  7624. "_originalWidth": 100,
  7625. "_originalHeight": 100,
  7626. "_alignMode": 2,
  7627. "_lockFlags": 0,
  7628. "_id": ""
  7629. },
  7630. {
  7631. "__type__": "cc.CompPrefabInfo",
  7632. "fileId": "4ea8JvLFlA6ImaZxhR8uq3"
  7633. },
  7634. {
  7635. "__type__": "cc.SafeArea",
  7636. "_name": "",
  7637. "_objFlags": 0,
  7638. "node": {
  7639. "__id__": 3
  7640. },
  7641. "_enabled": true,
  7642. "__prefab": {
  7643. "__id__": 418
  7644. },
  7645. "_id": ""
  7646. },
  7647. {
  7648. "__type__": "cc.CompPrefabInfo",
  7649. "fileId": "6ffHEdR5dAJr61/fG2vq/Z"
  7650. },
  7651. {
  7652. "__type__": "cc.PrefabInfo",
  7653. "root": {
  7654. "__id__": 1
  7655. },
  7656. "asset": {
  7657. "__id__": 0
  7658. },
  7659. "fileId": "d6IxXrXkBE+pgV7akj7+w5"
  7660. },
  7661. {
  7662. "__type__": "cc.UITransform",
  7663. "_name": "",
  7664. "_objFlags": 0,
  7665. "node": {
  7666. "__id__": 2
  7667. },
  7668. "_enabled": true,
  7669. "__prefab": {
  7670. "__id__": 421
  7671. },
  7672. "_priority": 0,
  7673. "_contentSize": {
  7674. "__type__": "cc.Size",
  7675. "width": 750,
  7676. "height": 1334
  7677. },
  7678. "_anchorPoint": {
  7679. "__type__": "cc.Vec2",
  7680. "x": 0.5,
  7681. "y": 0.5
  7682. },
  7683. "_id": ""
  7684. },
  7685. {
  7686. "__type__": "cc.CompPrefabInfo",
  7687. "fileId": "7fDI5RD+ZIzZkT/OK37jFU"
  7688. },
  7689. {
  7690. "__type__": "cc.Sprite",
  7691. "_name": "",
  7692. "_objFlags": 0,
  7693. "node": {
  7694. "__id__": 2
  7695. },
  7696. "_enabled": true,
  7697. "__prefab": {
  7698. "__id__": 423
  7699. },
  7700. "_visFlags": 0,
  7701. "_customMaterial": null,
  7702. "_srcBlendFactor": 2,
  7703. "_dstBlendFactor": 4,
  7704. "_color": {
  7705. "__type__": "cc.Color",
  7706. "r": 255,
  7707. "g": 255,
  7708. "b": 255,
  7709. "a": 255
  7710. },
  7711. "_spriteFrame": {
  7712. "__uuid__": "89889e4d-fbe2-4c2c-8670-a9f7d8e1f4e1@f9941"
  7713. },
  7714. "_type": 0,
  7715. "_fillType": 0,
  7716. "_sizeMode": 1,
  7717. "_fillCenter": {
  7718. "__type__": "cc.Vec2",
  7719. "x": 0,
  7720. "y": 0
  7721. },
  7722. "_fillStart": 0,
  7723. "_fillRange": 0,
  7724. "_isTrimmedMode": true,
  7725. "_useGrayscale": false,
  7726. "_atlas": null,
  7727. "_id": ""
  7728. },
  7729. {
  7730. "__type__": "cc.CompPrefabInfo",
  7731. "fileId": "a9cfuVAbtH84QN/D0aQwxt"
  7732. },
  7733. {
  7734. "__type__": "cc.Widget",
  7735. "_name": "",
  7736. "_objFlags": 0,
  7737. "node": {
  7738. "__id__": 2
  7739. },
  7740. "_enabled": true,
  7741. "__prefab": {
  7742. "__id__": 425
  7743. },
  7744. "_alignFlags": 45,
  7745. "_target": null,
  7746. "_left": 0,
  7747. "_right": 0,
  7748. "_top": 0,
  7749. "_bottom": 0,
  7750. "_horizontalCenter": 0,
  7751. "_verticalCenter": 0,
  7752. "_isAbsLeft": true,
  7753. "_isAbsRight": true,
  7754. "_isAbsTop": true,
  7755. "_isAbsBottom": true,
  7756. "_isAbsHorizontalCenter": true,
  7757. "_isAbsVerticalCenter": true,
  7758. "_originalWidth": 750,
  7759. "_originalHeight": 1334,
  7760. "_alignMode": 2,
  7761. "_lockFlags": 0,
  7762. "_id": ""
  7763. },
  7764. {
  7765. "__type__": "cc.CompPrefabInfo",
  7766. "fileId": "c2r1e4F59C84ZvWpbgQ1FN"
  7767. },
  7768. {
  7769. "__type__": "cc.BlockInputEvents",
  7770. "_name": "",
  7771. "_objFlags": 0,
  7772. "node": {
  7773. "__id__": 2
  7774. },
  7775. "_enabled": true,
  7776. "__prefab": {
  7777. "__id__": 427
  7778. },
  7779. "_id": ""
  7780. },
  7781. {
  7782. "__type__": "cc.CompPrefabInfo",
  7783. "fileId": "26ll1VC8BHHpcKypyQTyg4"
  7784. },
  7785. {
  7786. "__type__": "cc.PrefabInfo",
  7787. "root": {
  7788. "__id__": 1
  7789. },
  7790. "asset": {
  7791. "__id__": 0
  7792. },
  7793. "fileId": "a0zbfAvhBE77y51Z3mJWyI"
  7794. },
  7795. {
  7796. "__type__": "cc.UITransform",
  7797. "_name": "",
  7798. "_objFlags": 0,
  7799. "node": {
  7800. "__id__": 1
  7801. },
  7802. "_enabled": true,
  7803. "__prefab": {
  7804. "__id__": 430
  7805. },
  7806. "_priority": 0,
  7807. "_contentSize": {
  7808. "__type__": "cc.Size",
  7809. "width": 750,
  7810. "height": 1334
  7811. },
  7812. "_anchorPoint": {
  7813. "__type__": "cc.Vec2",
  7814. "x": 0.5,
  7815. "y": 0.5
  7816. },
  7817. "_id": ""
  7818. },
  7819. {
  7820. "__type__": "cc.CompPrefabInfo",
  7821. "fileId": "9ewiN35b5D3aM5/wv4e+fa"
  7822. },
  7823. {
  7824. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  7825. "_name": "",
  7826. "_objFlags": 0,
  7827. "node": {
  7828. "__id__": 1
  7829. },
  7830. "_enabled": true,
  7831. "__prefab": {
  7832. "__id__": 432
  7833. },
  7834. "hostAlias": "",
  7835. "withCredentials": false,
  7836. "timeout": 0,
  7837. "responseType": 3,
  7838. "onProgress": null,
  7839. "useEncrypt": true,
  7840. "_id": ""
  7841. },
  7842. {
  7843. "__type__": "cc.CompPrefabInfo",
  7844. "fileId": "a5c0ixlTVGV6fgpLEGv+cH"
  7845. },
  7846. {
  7847. "__type__": "cc.Widget",
  7848. "_name": "",
  7849. "_objFlags": 0,
  7850. "node": {
  7851. "__id__": 1
  7852. },
  7853. "_enabled": true,
  7854. "__prefab": {
  7855. "__id__": 434
  7856. },
  7857. "_alignFlags": 45,
  7858. "_target": null,
  7859. "_left": 0,
  7860. "_right": 0,
  7861. "_top": 0,
  7862. "_bottom": 0,
  7863. "_horizontalCenter": 0,
  7864. "_verticalCenter": 0,
  7865. "_isAbsLeft": true,
  7866. "_isAbsRight": true,
  7867. "_isAbsTop": true,
  7868. "_isAbsBottom": true,
  7869. "_isAbsHorizontalCenter": true,
  7870. "_isAbsVerticalCenter": true,
  7871. "_originalWidth": 180,
  7872. "_originalHeight": 160,
  7873. "_alignMode": 2,
  7874. "_lockFlags": 0,
  7875. "_id": ""
  7876. },
  7877. {
  7878. "__type__": "cc.CompPrefabInfo",
  7879. "fileId": "bfIbbvQsxCaI47CVII6N1b"
  7880. },
  7881. {
  7882. "__type__": "bd869tPK79PH4A99v6jE8q0",
  7883. "_name": "",
  7884. "_objFlags": 0,
  7885. "node": {
  7886. "__id__": 1
  7887. },
  7888. "_enabled": true,
  7889. "__prefab": {
  7890. "__id__": 436
  7891. },
  7892. "closeNodes": [
  7893. {
  7894. "__id__": 5
  7895. }
  7896. ],
  7897. "onParams": null,
  7898. "onClosing": null,
  7899. "closeTween": null,
  7900. "_id": ""
  7901. },
  7902. {
  7903. "__type__": "cc.CompPrefabInfo",
  7904. "fileId": "61lZWwxetGdbJW/HL0sfbd"
  7905. },
  7906. {
  7907. "__type__": "68bbfg6NcxBHJUYVWwPz3Af",
  7908. "_name": "",
  7909. "_objFlags": 0,
  7910. "node": {
  7911. "__id__": 1
  7912. },
  7913. "_enabled": true,
  7914. "__prefab": {
  7915. "__id__": 438
  7916. },
  7917. "http": {
  7918. "__id__": 431
  7919. },
  7920. "moneyLabel": {
  7921. "__id__": 244
  7922. },
  7923. "paopaos": [
  7924. null,
  7925. null,
  7926. null,
  7927. null,
  7928. null,
  7929. null
  7930. ],
  7931. "moneyProgress": {
  7932. "__id__": 178
  7933. },
  7934. "aboutLabel": {
  7935. "__id__": 264
  7936. },
  7937. "_id": ""
  7938. },
  7939. {
  7940. "__type__": "cc.CompPrefabInfo",
  7941. "fileId": "672RmqxY9HiYP/2InLvCcR"
  7942. },
  7943. {
  7944. "__type__": "cc.BlockInputEvents",
  7945. "_name": "",
  7946. "_objFlags": 0,
  7947. "node": {
  7948. "__id__": 1
  7949. },
  7950. "_enabled": true,
  7951. "__prefab": {
  7952. "__id__": 440
  7953. },
  7954. "_id": ""
  7955. },
  7956. {
  7957. "__type__": "cc.CompPrefabInfo",
  7958. "fileId": "8c5GMg3YdKAYS6pjPp5xsX"
  7959. },
  7960. {
  7961. "__type__": "cc.PrefabInfo",
  7962. "root": {
  7963. "__id__": 1
  7964. },
  7965. "asset": {
  7966. "__id__": 0
  7967. },
  7968. "fileId": "1dYFTwRb1JYqAOFn33DkHZ",
  7969. "targetOverrides": [
  7970. {
  7971. "__id__": 442
  7972. },
  7973. {
  7974. "__id__": 444
  7975. },
  7976. {
  7977. "__id__": 446
  7978. },
  7979. {
  7980. "__id__": 448
  7981. },
  7982. {
  7983. "__id__": 450
  7984. },
  7985. {
  7986. "__id__": 452
  7987. }
  7988. ]
  7989. },
  7990. {
  7991. "__type__": "cc.TargetOverrideInfo",
  7992. "source": {
  7993. "__id__": 437
  7994. },
  7995. "sourceInfo": null,
  7996. "propertyPath": [
  7997. "paopaos",
  7998. "0"
  7999. ],
  8000. "target": {
  8001. "__id__": 274
  8002. },
  8003. "targetInfo": {
  8004. "__id__": 443
  8005. }
  8006. },
  8007. {
  8008. "__type__": "cc.TargetInfo",
  8009. "localID": [
  8010. "98jkMt9GNElro6Heqqk5C5"
  8011. ]
  8012. },
  8013. {
  8014. "__type__": "cc.TargetOverrideInfo",
  8015. "source": {
  8016. "__id__": 437
  8017. },
  8018. "sourceInfo": null,
  8019. "propertyPath": [
  8020. "paopaos",
  8021. "1"
  8022. ],
  8023. "target": {
  8024. "__id__": 298
  8025. },
  8026. "targetInfo": {
  8027. "__id__": 445
  8028. }
  8029. },
  8030. {
  8031. "__type__": "cc.TargetInfo",
  8032. "localID": [
  8033. "98jkMt9GNElro6Heqqk5C5"
  8034. ]
  8035. },
  8036. {
  8037. "__type__": "cc.TargetOverrideInfo",
  8038. "source": {
  8039. "__id__": 437
  8040. },
  8041. "sourceInfo": null,
  8042. "propertyPath": [
  8043. "paopaos",
  8044. "2"
  8045. ],
  8046. "target": {
  8047. "__id__": 320
  8048. },
  8049. "targetInfo": {
  8050. "__id__": 447
  8051. }
  8052. },
  8053. {
  8054. "__type__": "cc.TargetInfo",
  8055. "localID": [
  8056. "98jkMt9GNElro6Heqqk5C5"
  8057. ]
  8058. },
  8059. {
  8060. "__type__": "cc.TargetOverrideInfo",
  8061. "source": {
  8062. "__id__": 437
  8063. },
  8064. "sourceInfo": null,
  8065. "propertyPath": [
  8066. "paopaos",
  8067. "3"
  8068. ],
  8069. "target": {
  8070. "__id__": 342
  8071. },
  8072. "targetInfo": {
  8073. "__id__": 449
  8074. }
  8075. },
  8076. {
  8077. "__type__": "cc.TargetInfo",
  8078. "localID": [
  8079. "98jkMt9GNElro6Heqqk5C5"
  8080. ]
  8081. },
  8082. {
  8083. "__type__": "cc.TargetOverrideInfo",
  8084. "source": {
  8085. "__id__": 437
  8086. },
  8087. "sourceInfo": null,
  8088. "propertyPath": [
  8089. "paopaos",
  8090. "4"
  8091. ],
  8092. "target": {
  8093. "__id__": 364
  8094. },
  8095. "targetInfo": {
  8096. "__id__": 451
  8097. }
  8098. },
  8099. {
  8100. "__type__": "cc.TargetInfo",
  8101. "localID": [
  8102. "98jkMt9GNElro6Heqqk5C5"
  8103. ]
  8104. },
  8105. {
  8106. "__type__": "cc.TargetOverrideInfo",
  8107. "source": {
  8108. "__id__": 437
  8109. },
  8110. "sourceInfo": null,
  8111. "propertyPath": [
  8112. "paopaos",
  8113. "5"
  8114. ],
  8115. "target": {
  8116. "__id__": 386
  8117. },
  8118. "targetInfo": {
  8119. "__id__": 453
  8120. }
  8121. },
  8122. {
  8123. "__type__": "cc.TargetInfo",
  8124. "localID": [
  8125. "98jkMt9GNElro6Heqqk5C5"
  8126. ]
  8127. }
  8128. ]