wechatTransferring.prefab 161 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "WechatTransferring",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "WechatTransferring",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 229
  26. },
  27. {
  28. "__id__": 285
  29. },
  30. {
  31. "__id__": 369
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 433
  38. },
  39. {
  40. "__id__": 435
  41. },
  42. {
  43. "__id__": 437
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 439
  48. },
  49. "_lpos": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0
  54. },
  55. "_lrot": {
  56. "__type__": "cc.Quat",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0,
  60. "w": 1
  61. },
  62. "_lscale": {
  63. "__type__": "cc.Vec3",
  64. "x": 1,
  65. "y": 1,
  66. "z": 1
  67. },
  68. "_mobility": 0,
  69. "_layer": 33554432,
  70. "_euler": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_id": ""
  77. },
  78. {
  79. "__type__": "cc.Node",
  80. "_name": "mainNode",
  81. "_objFlags": 0,
  82. "__editorExtras__": {},
  83. "_parent": {
  84. "__id__": 1
  85. },
  86. "_children": [
  87. {
  88. "__id__": 3
  89. }
  90. ],
  91. "_active": false,
  92. "_components": [
  93. {
  94. "__id__": 226
  95. }
  96. ],
  97. "_prefab": {
  98. "__id__": 228
  99. },
  100. "_lpos": {
  101. "__type__": "cc.Vec3",
  102. "x": 0,
  103. "y": 0,
  104. "z": 0
  105. },
  106. "_lrot": {
  107. "__type__": "cc.Quat",
  108. "x": 0,
  109. "y": 0,
  110. "z": 0,
  111. "w": 1
  112. },
  113. "_lscale": {
  114. "__type__": "cc.Vec3",
  115. "x": 1,
  116. "y": 1,
  117. "z": 1
  118. },
  119. "_mobility": 0,
  120. "_layer": 33554432,
  121. "_euler": {
  122. "__type__": "cc.Vec3",
  123. "x": 0,
  124. "y": 0,
  125. "z": 0
  126. },
  127. "_id": ""
  128. },
  129. {
  130. "__type__": "cc.Node",
  131. "_name": "Bg",
  132. "_objFlags": 0,
  133. "__editorExtras__": {},
  134. "_parent": {
  135. "__id__": 2
  136. },
  137. "_children": [
  138. {
  139. "__id__": 4
  140. },
  141. {
  142. "__id__": 10
  143. },
  144. {
  145. "__id__": 16
  146. },
  147. {
  148. "__id__": 22
  149. },
  150. {
  151. "__id__": 28
  152. },
  153. {
  154. "__id__": 36
  155. },
  156. {
  157. "__id__": 42
  158. },
  159. {
  160. "__id__": 46
  161. },
  162. {
  163. "__id__": 209
  164. }
  165. ],
  166. "_active": true,
  167. "_components": [
  168. {
  169. "__id__": 223
  170. }
  171. ],
  172. "_prefab": {
  173. "__id__": 225
  174. },
  175. "_lpos": {
  176. "__type__": "cc.Vec3",
  177. "x": 2,
  178. "y": 43.32,
  179. "z": 0
  180. },
  181. "_lrot": {
  182. "__type__": "cc.Quat",
  183. "x": 0,
  184. "y": 0,
  185. "z": 0,
  186. "w": 1
  187. },
  188. "_lscale": {
  189. "__type__": "cc.Vec3",
  190. "x": 1,
  191. "y": 1,
  192. "z": 1
  193. },
  194. "_mobility": 0,
  195. "_layer": 33554432,
  196. "_euler": {
  197. "__type__": "cc.Vec3",
  198. "x": 0,
  199. "y": 0,
  200. "z": 0
  201. },
  202. "_id": ""
  203. },
  204. {
  205. "__type__": "cc.Node",
  206. "_name": "bg3",
  207. "_objFlags": 0,
  208. "__editorExtras__": {},
  209. "_parent": {
  210. "__id__": 3
  211. },
  212. "_children": [],
  213. "_active": true,
  214. "_components": [
  215. {
  216. "__id__": 5
  217. },
  218. {
  219. "__id__": 7
  220. }
  221. ],
  222. "_prefab": {
  223. "__id__": 9
  224. },
  225. "_lpos": {
  226. "__type__": "cc.Vec3",
  227. "x": 0,
  228. "y": -117.91,
  229. "z": 0
  230. },
  231. "_lrot": {
  232. "__type__": "cc.Quat",
  233. "x": 0,
  234. "y": 0,
  235. "z": 0,
  236. "w": 1
  237. },
  238. "_lscale": {
  239. "__type__": "cc.Vec3",
  240. "x": 1,
  241. "y": 1,
  242. "z": 1
  243. },
  244. "_mobility": 0,
  245. "_layer": 33554432,
  246. "_euler": {
  247. "__type__": "cc.Vec3",
  248. "x": 0,
  249. "y": 0,
  250. "z": 0
  251. },
  252. "_id": ""
  253. },
  254. {
  255. "__type__": "cc.UITransform",
  256. "_name": "",
  257. "_objFlags": 0,
  258. "__editorExtras__": {},
  259. "node": {
  260. "__id__": 4
  261. },
  262. "_enabled": true,
  263. "__prefab": {
  264. "__id__": 6
  265. },
  266. "_contentSize": {
  267. "__type__": "cc.Size",
  268. "width": 640,
  269. "height": 1120
  270. },
  271. "_anchorPoint": {
  272. "__type__": "cc.Vec2",
  273. "x": 0.5,
  274. "y": 0.5
  275. },
  276. "_id": ""
  277. },
  278. {
  279. "__type__": "cc.CompPrefabInfo",
  280. "fileId": "0fB47YjD5D67KFpXZY9MyJ"
  281. },
  282. {
  283. "__type__": "cc.Sprite",
  284. "_name": "",
  285. "_objFlags": 0,
  286. "__editorExtras__": {},
  287. "node": {
  288. "__id__": 4
  289. },
  290. "_enabled": true,
  291. "__prefab": {
  292. "__id__": 8
  293. },
  294. "_customMaterial": null,
  295. "_srcBlendFactor": 2,
  296. "_dstBlendFactor": 4,
  297. "_color": {
  298. "__type__": "cc.Color",
  299. "r": 255,
  300. "g": 255,
  301. "b": 255,
  302. "a": 255
  303. },
  304. "_spriteFrame": {
  305. "__uuid__": "c5a17437-1409-43d2-bfd2-3cef9ed01a47@f9941",
  306. "__expectedType__": "cc.SpriteFrame"
  307. },
  308. "_type": 0,
  309. "_fillType": 0,
  310. "_sizeMode": 0,
  311. "_fillCenter": {
  312. "__type__": "cc.Vec2",
  313. "x": 0,
  314. "y": 0
  315. },
  316. "_fillStart": 0,
  317. "_fillRange": 0,
  318. "_isTrimmedMode": true,
  319. "_useGrayscale": false,
  320. "_atlas": null,
  321. "_id": ""
  322. },
  323. {
  324. "__type__": "cc.CompPrefabInfo",
  325. "fileId": "ffBAo0nWBOWaz+TGvCg/hH"
  326. },
  327. {
  328. "__type__": "cc.PrefabInfo",
  329. "root": {
  330. "__id__": 1
  331. },
  332. "asset": {
  333. "__id__": 0
  334. },
  335. "fileId": "c6yUGMJr9G7JpJ71gCqwj+",
  336. "instance": null,
  337. "targetOverrides": null,
  338. "nestedPrefabInstanceRoots": null
  339. },
  340. {
  341. "__type__": "cc.Node",
  342. "_name": "title_txcg",
  343. "_objFlags": 0,
  344. "__editorExtras__": {},
  345. "_parent": {
  346. "__id__": 3
  347. },
  348. "_children": [],
  349. "_active": true,
  350. "_components": [
  351. {
  352. "__id__": 11
  353. },
  354. {
  355. "__id__": 13
  356. }
  357. ],
  358. "_prefab": {
  359. "__id__": 15
  360. },
  361. "_lpos": {
  362. "__type__": "cc.Vec3",
  363. "x": 2.6,
  364. "y": 519.987,
  365. "z": 0
  366. },
  367. "_lrot": {
  368. "__type__": "cc.Quat",
  369. "x": 0,
  370. "y": 0,
  371. "z": 0,
  372. "w": 1
  373. },
  374. "_lscale": {
  375. "__type__": "cc.Vec3",
  376. "x": 1,
  377. "y": 1,
  378. "z": 1
  379. },
  380. "_mobility": 0,
  381. "_layer": 33554432,
  382. "_euler": {
  383. "__type__": "cc.Vec3",
  384. "x": 0,
  385. "y": 0,
  386. "z": 0
  387. },
  388. "_id": ""
  389. },
  390. {
  391. "__type__": "cc.UITransform",
  392. "_name": "",
  393. "_objFlags": 0,
  394. "__editorExtras__": {},
  395. "node": {
  396. "__id__": 10
  397. },
  398. "_enabled": true,
  399. "__prefab": {
  400. "__id__": 12
  401. },
  402. "_contentSize": {
  403. "__type__": "cc.Size",
  404. "width": 542,
  405. "height": 100
  406. },
  407. "_anchorPoint": {
  408. "__type__": "cc.Vec2",
  409. "x": 0.5,
  410. "y": 0.5
  411. },
  412. "_id": ""
  413. },
  414. {
  415. "__type__": "cc.CompPrefabInfo",
  416. "fileId": "968Xh4n61Ho575quVXCrHl"
  417. },
  418. {
  419. "__type__": "cc.Sprite",
  420. "_name": "",
  421. "_objFlags": 0,
  422. "__editorExtras__": {},
  423. "node": {
  424. "__id__": 10
  425. },
  426. "_enabled": true,
  427. "__prefab": {
  428. "__id__": 14
  429. },
  430. "_customMaterial": null,
  431. "_srcBlendFactor": 2,
  432. "_dstBlendFactor": 4,
  433. "_color": {
  434. "__type__": "cc.Color",
  435. "r": 255,
  436. "g": 255,
  437. "b": 255,
  438. "a": 255
  439. },
  440. "_spriteFrame": {
  441. "__uuid__": "7c26b001-bb25-4c32-8d65-0cdfd0d6ae34@f9941",
  442. "__expectedType__": "cc.SpriteFrame"
  443. },
  444. "_type": 0,
  445. "_fillType": 0,
  446. "_sizeMode": 1,
  447. "_fillCenter": {
  448. "__type__": "cc.Vec2",
  449. "x": 0,
  450. "y": 0
  451. },
  452. "_fillStart": 0,
  453. "_fillRange": 0,
  454. "_isTrimmedMode": true,
  455. "_useGrayscale": false,
  456. "_atlas": {
  457. "__uuid__": "a1294f6e-9a1b-453c-af8e-2dbf033dc3e5",
  458. "__expectedType__": "cc.SpriteAtlas"
  459. },
  460. "_id": ""
  461. },
  462. {
  463. "__type__": "cc.CompPrefabInfo",
  464. "fileId": "e8iTUXdNVMzYOZ1ddS/9vd"
  465. },
  466. {
  467. "__type__": "cc.PrefabInfo",
  468. "root": {
  469. "__id__": 1
  470. },
  471. "asset": {
  472. "__id__": 0
  473. },
  474. "fileId": "8d+r7imihEqJa9bgqiuh/w",
  475. "instance": null,
  476. "targetOverrides": null,
  477. "nestedPrefabInstanceRoots": null
  478. },
  479. {
  480. "__type__": "cc.Node",
  481. "_name": "spriteFrame",
  482. "_objFlags": 0,
  483. "__editorExtras__": {},
  484. "_parent": {
  485. "__id__": 3
  486. },
  487. "_children": [],
  488. "_active": true,
  489. "_components": [
  490. {
  491. "__id__": 17
  492. },
  493. {
  494. "__id__": 19
  495. }
  496. ],
  497. "_prefab": {
  498. "__id__": 21
  499. },
  500. "_lpos": {
  501. "__type__": "cc.Vec3",
  502. "x": -2.497,
  503. "y": 323.738,
  504. "z": 0
  505. },
  506. "_lrot": {
  507. "__type__": "cc.Quat",
  508. "x": 0,
  509. "y": 0,
  510. "z": 0,
  511. "w": 1
  512. },
  513. "_lscale": {
  514. "__type__": "cc.Vec3",
  515. "x": 1,
  516. "y": 1,
  517. "z": 1
  518. },
  519. "_mobility": 0,
  520. "_layer": 33554432,
  521. "_euler": {
  522. "__type__": "cc.Vec3",
  523. "x": 0,
  524. "y": 0,
  525. "z": 0
  526. },
  527. "_id": ""
  528. },
  529. {
  530. "__type__": "cc.UITransform",
  531. "_name": "",
  532. "_objFlags": 0,
  533. "__editorExtras__": {},
  534. "node": {
  535. "__id__": 16
  536. },
  537. "_enabled": true,
  538. "__prefab": {
  539. "__id__": 18
  540. },
  541. "_contentSize": {
  542. "__type__": "cc.Size",
  543. "width": 96,
  544. "height": 97
  545. },
  546. "_anchorPoint": {
  547. "__type__": "cc.Vec2",
  548. "x": 0.5,
  549. "y": 0.5
  550. },
  551. "_id": ""
  552. },
  553. {
  554. "__type__": "cc.CompPrefabInfo",
  555. "fileId": "dbRF5YcGtG7rCg0pCdC4IL"
  556. },
  557. {
  558. "__type__": "cc.Sprite",
  559. "_name": "",
  560. "_objFlags": 0,
  561. "__editorExtras__": {},
  562. "node": {
  563. "__id__": 16
  564. },
  565. "_enabled": true,
  566. "__prefab": {
  567. "__id__": 20
  568. },
  569. "_customMaterial": null,
  570. "_srcBlendFactor": 2,
  571. "_dstBlendFactor": 4,
  572. "_color": {
  573. "__type__": "cc.Color",
  574. "r": 255,
  575. "g": 255,
  576. "b": 255,
  577. "a": 255
  578. },
  579. "_spriteFrame": {
  580. "__uuid__": "e33afa4b-9966-4e04-8305-2924099def3c@f9941",
  581. "__expectedType__": "cc.SpriteFrame"
  582. },
  583. "_type": 0,
  584. "_fillType": 0,
  585. "_sizeMode": 2,
  586. "_fillCenter": {
  587. "__type__": "cc.Vec2",
  588. "x": 0,
  589. "y": 0
  590. },
  591. "_fillStart": 0,
  592. "_fillRange": 0,
  593. "_isTrimmedMode": true,
  594. "_useGrayscale": false,
  595. "_atlas": null,
  596. "_id": ""
  597. },
  598. {
  599. "__type__": "cc.CompPrefabInfo",
  600. "fileId": "93JgXwZYlNKYa/u9UKkjRJ"
  601. },
  602. {
  603. "__type__": "cc.PrefabInfo",
  604. "root": {
  605. "__id__": 1
  606. },
  607. "asset": {
  608. "__id__": 0
  609. },
  610. "fileId": "dbrMfauhJF86QhCoUYIQKV",
  611. "instance": null,
  612. "targetOverrides": null,
  613. "nestedPrefabInstanceRoots": null
  614. },
  615. {
  616. "__type__": "cc.Node",
  617. "_name": "Label",
  618. "_objFlags": 0,
  619. "__editorExtras__": {},
  620. "_parent": {
  621. "__id__": 3
  622. },
  623. "_children": [],
  624. "_active": true,
  625. "_components": [
  626. {
  627. "__id__": 23
  628. },
  629. {
  630. "__id__": 25
  631. }
  632. ],
  633. "_prefab": {
  634. "__id__": 27
  635. },
  636. "_lpos": {
  637. "__type__": "cc.Vec3",
  638. "x": -5,
  639. "y": 141.477,
  640. "z": 0
  641. },
  642. "_lrot": {
  643. "__type__": "cc.Quat",
  644. "x": 0,
  645. "y": 0,
  646. "z": 0,
  647. "w": 1
  648. },
  649. "_lscale": {
  650. "__type__": "cc.Vec3",
  651. "x": 1,
  652. "y": 1,
  653. "z": 1
  654. },
  655. "_mobility": 0,
  656. "_layer": 33554432,
  657. "_euler": {
  658. "__type__": "cc.Vec3",
  659. "x": 0,
  660. "y": 0,
  661. "z": 0
  662. },
  663. "_id": ""
  664. },
  665. {
  666. "__type__": "cc.UITransform",
  667. "_name": "",
  668. "_objFlags": 0,
  669. "__editorExtras__": {},
  670. "node": {
  671. "__id__": 22
  672. },
  673. "_enabled": true,
  674. "__prefab": {
  675. "__id__": 24
  676. },
  677. "_contentSize": {
  678. "__type__": "cc.Size",
  679. "width": 261.32421875,
  680. "height": 50.4
  681. },
  682. "_anchorPoint": {
  683. "__type__": "cc.Vec2",
  684. "x": 0.5,
  685. "y": 0.5
  686. },
  687. "_id": ""
  688. },
  689. {
  690. "__type__": "cc.CompPrefabInfo",
  691. "fileId": "495z7x6kdPkYwjy97dVNDb"
  692. },
  693. {
  694. "__type__": "cc.Label",
  695. "_name": "",
  696. "_objFlags": 0,
  697. "__editorExtras__": {},
  698. "node": {
  699. "__id__": 22
  700. },
  701. "_enabled": true,
  702. "__prefab": {
  703. "__id__": 26
  704. },
  705. "_customMaterial": null,
  706. "_srcBlendFactor": 2,
  707. "_dstBlendFactor": 4,
  708. "_color": {
  709. "__type__": "cc.Color",
  710. "r": 32,
  711. "g": 32,
  712. "b": 32,
  713. "a": 255
  714. },
  715. "_string": "现金提现-到微信零钱",
  716. "_horizontalAlign": 1,
  717. "_verticalAlign": 1,
  718. "_actualFontSize": 28,
  719. "_fontSize": 28,
  720. "_fontFamily": "Arial",
  721. "_lineHeight": 40,
  722. "_overflow": 0,
  723. "_enableWrapText": true,
  724. "_font": null,
  725. "_isSystemFontUsed": true,
  726. "_spacingX": 0,
  727. "_isItalic": false,
  728. "_isBold": false,
  729. "_isUnderline": false,
  730. "_underlineHeight": 2,
  731. "_cacheMode": 0,
  732. "_enableOutline": false,
  733. "_outlineColor": {
  734. "__type__": "cc.Color",
  735. "r": 0,
  736. "g": 0,
  737. "b": 0,
  738. "a": 255
  739. },
  740. "_outlineWidth": 2,
  741. "_enableShadow": false,
  742. "_shadowColor": {
  743. "__type__": "cc.Color",
  744. "r": 0,
  745. "g": 0,
  746. "b": 0,
  747. "a": 255
  748. },
  749. "_shadowOffset": {
  750. "__type__": "cc.Vec2",
  751. "x": 2,
  752. "y": 2
  753. },
  754. "_shadowBlur": 2,
  755. "_id": ""
  756. },
  757. {
  758. "__type__": "cc.CompPrefabInfo",
  759. "fileId": "45Fw8K+fpC+qLh0RyRut/J"
  760. },
  761. {
  762. "__type__": "cc.PrefabInfo",
  763. "root": {
  764. "__id__": 1
  765. },
  766. "asset": {
  767. "__id__": 0
  768. },
  769. "fileId": "d5wx7bC0BBz4KzcaAbN6yf",
  770. "instance": null,
  771. "targetOverrides": null,
  772. "nestedPrefabInstanceRoots": null
  773. },
  774. {
  775. "__type__": "cc.Node",
  776. "_name": "lab_money",
  777. "_objFlags": 0,
  778. "__editorExtras__": {},
  779. "_parent": {
  780. "__id__": 3
  781. },
  782. "_children": [],
  783. "_active": true,
  784. "_components": [
  785. {
  786. "__id__": 29
  787. },
  788. {
  789. "__id__": 31
  790. },
  791. {
  792. "__id__": 33
  793. }
  794. ],
  795. "_prefab": {
  796. "__id__": 35
  797. },
  798. "_lpos": {
  799. "__type__": "cc.Vec3",
  800. "x": -1.912,
  801. "y": 211.089,
  802. "z": 0
  803. },
  804. "_lrot": {
  805. "__type__": "cc.Quat",
  806. "x": 0,
  807. "y": 0,
  808. "z": 0,
  809. "w": 1
  810. },
  811. "_lscale": {
  812. "__type__": "cc.Vec3",
  813. "x": 1,
  814. "y": 1,
  815. "z": 1
  816. },
  817. "_mobility": 0,
  818. "_layer": 33554432,
  819. "_euler": {
  820. "__type__": "cc.Vec3",
  821. "x": 0,
  822. "y": 0,
  823. "z": 0
  824. },
  825. "_id": ""
  826. },
  827. {
  828. "__type__": "cc.UITransform",
  829. "_name": "",
  830. "_objFlags": 0,
  831. "__editorExtras__": {},
  832. "node": {
  833. "__id__": 28
  834. },
  835. "_enabled": true,
  836. "__prefab": {
  837. "__id__": 30
  838. },
  839. "_contentSize": {
  840. "__type__": "cc.Size",
  841. "width": 249.0234375,
  842. "height": 90.72
  843. },
  844. "_anchorPoint": {
  845. "__type__": "cc.Vec2",
  846. "x": 0.5,
  847. "y": 0.5
  848. },
  849. "_id": ""
  850. },
  851. {
  852. "__type__": "cc.CompPrefabInfo",
  853. "fileId": "f9Z8GVSi1Ag42c4s42ila2"
  854. },
  855. {
  856. "__type__": "cc.Label",
  857. "_name": "",
  858. "_objFlags": 0,
  859. "__editorExtras__": {},
  860. "node": {
  861. "__id__": 28
  862. },
  863. "_enabled": true,
  864. "__prefab": {
  865. "__id__": 32
  866. },
  867. "_customMaterial": null,
  868. "_srcBlendFactor": 2,
  869. "_dstBlendFactor": 4,
  870. "_color": {
  871. "__type__": "cc.Color",
  872. "r": 0,
  873. "g": 0,
  874. "b": 0,
  875. "a": 255
  876. },
  877. "_string": "¥{{0}}",
  878. "_horizontalAlign": 1,
  879. "_verticalAlign": 1,
  880. "_actualFontSize": 80,
  881. "_fontSize": 80,
  882. "_fontFamily": "Arial",
  883. "_lineHeight": 72,
  884. "_overflow": 0,
  885. "_enableWrapText": true,
  886. "_font": null,
  887. "_isSystemFontUsed": true,
  888. "_spacingX": 0,
  889. "_isItalic": false,
  890. "_isBold": true,
  891. "_isUnderline": false,
  892. "_underlineHeight": 2,
  893. "_cacheMode": 0,
  894. "_enableOutline": false,
  895. "_outlineColor": {
  896. "__type__": "cc.Color",
  897. "r": 0,
  898. "g": 0,
  899. "b": 0,
  900. "a": 255
  901. },
  902. "_outlineWidth": 2,
  903. "_enableShadow": false,
  904. "_shadowColor": {
  905. "__type__": "cc.Color",
  906. "r": 0,
  907. "g": 0,
  908. "b": 0,
  909. "a": 255
  910. },
  911. "_shadowOffset": {
  912. "__type__": "cc.Vec2",
  913. "x": 2,
  914. "y": 2
  915. },
  916. "_shadowBlur": 2,
  917. "_id": ""
  918. },
  919. {
  920. "__type__": "cc.CompPrefabInfo",
  921. "fileId": "a2Tl5g2z1Ag4QW/8sMVFF2"
  922. },
  923. {
  924. "__type__": "545c05XsG9GDJispEGWKvYv",
  925. "_name": "",
  926. "_objFlags": 0,
  927. "__editorExtras__": {},
  928. "node": {
  929. "__id__": 28
  930. },
  931. "_enabled": true,
  932. "__prefab": {
  933. "__id__": 34
  934. },
  935. "templateMode": true,
  936. "watchPath": "*.money",
  937. "labelType": "cc.Label",
  938. "watchPathArr": [
  939. "*.money"
  940. ],
  941. "_id": ""
  942. },
  943. {
  944. "__type__": "cc.CompPrefabInfo",
  945. "fileId": "6dJXqdTwNOnJGvjoxWvJVP"
  946. },
  947. {
  948. "__type__": "cc.PrefabInfo",
  949. "root": {
  950. "__id__": 1
  951. },
  952. "asset": {
  953. "__id__": 0
  954. },
  955. "fileId": "acbZQtma5FVL3cmfVRFwB9",
  956. "instance": null,
  957. "targetOverrides": null,
  958. "nestedPrefabInstanceRoots": null
  959. },
  960. {
  961. "__type__": "cc.Node",
  962. "_name": "line",
  963. "_objFlags": 0,
  964. "__editorExtras__": {},
  965. "_parent": {
  966. "__id__": 3
  967. },
  968. "_children": [],
  969. "_active": true,
  970. "_components": [
  971. {
  972. "__id__": 37
  973. },
  974. {
  975. "__id__": 39
  976. }
  977. ],
  978. "_prefab": {
  979. "__id__": 41
  980. },
  981. "_lpos": {
  982. "__type__": "cc.Vec3",
  983. "x": 0,
  984. "y": 90.379,
  985. "z": 0
  986. },
  987. "_lrot": {
  988. "__type__": "cc.Quat",
  989. "x": 0,
  990. "y": 0,
  991. "z": 0,
  992. "w": 1
  993. },
  994. "_lscale": {
  995. "__type__": "cc.Vec3",
  996. "x": 1,
  997. "y": 1,
  998. "z": 1
  999. },
  1000. "_mobility": 0,
  1001. "_layer": 33554432,
  1002. "_euler": {
  1003. "__type__": "cc.Vec3",
  1004. "x": 0,
  1005. "y": 0,
  1006. "z": 0
  1007. },
  1008. "_id": ""
  1009. },
  1010. {
  1011. "__type__": "cc.UITransform",
  1012. "_name": "",
  1013. "_objFlags": 0,
  1014. "__editorExtras__": {},
  1015. "node": {
  1016. "__id__": 36
  1017. },
  1018. "_enabled": true,
  1019. "__prefab": {
  1020. "__id__": 38
  1021. },
  1022. "_contentSize": {
  1023. "__type__": "cc.Size",
  1024. "width": 599,
  1025. "height": 2
  1026. },
  1027. "_anchorPoint": {
  1028. "__type__": "cc.Vec2",
  1029. "x": 0.5,
  1030. "y": 0.5
  1031. },
  1032. "_id": ""
  1033. },
  1034. {
  1035. "__type__": "cc.CompPrefabInfo",
  1036. "fileId": "82Qjcd7E9OxZm0hIbGcfmg"
  1037. },
  1038. {
  1039. "__type__": "cc.Sprite",
  1040. "_name": "",
  1041. "_objFlags": 0,
  1042. "__editorExtras__": {},
  1043. "node": {
  1044. "__id__": 36
  1045. },
  1046. "_enabled": true,
  1047. "__prefab": {
  1048. "__id__": 40
  1049. },
  1050. "_customMaterial": null,
  1051. "_srcBlendFactor": 2,
  1052. "_dstBlendFactor": 4,
  1053. "_color": {
  1054. "__type__": "cc.Color",
  1055. "r": 255,
  1056. "g": 255,
  1057. "b": 255,
  1058. "a": 255
  1059. },
  1060. "_spriteFrame": {
  1061. "__uuid__": "2d08855c-5fae-4670-8e08-bb208220ace9@f9941",
  1062. "__expectedType__": "cc.SpriteFrame"
  1063. },
  1064. "_type": 0,
  1065. "_fillType": 0,
  1066. "_sizeMode": 1,
  1067. "_fillCenter": {
  1068. "__type__": "cc.Vec2",
  1069. "x": 0,
  1070. "y": 0
  1071. },
  1072. "_fillStart": 0,
  1073. "_fillRange": 0,
  1074. "_isTrimmedMode": true,
  1075. "_useGrayscale": false,
  1076. "_atlas": null,
  1077. "_id": ""
  1078. },
  1079. {
  1080. "__type__": "cc.CompPrefabInfo",
  1081. "fileId": "f3KrXK5kdIqYTFr1KzAdVF"
  1082. },
  1083. {
  1084. "__type__": "cc.PrefabInfo",
  1085. "root": {
  1086. "__id__": 1
  1087. },
  1088. "asset": {
  1089. "__id__": 0
  1090. },
  1091. "fileId": "a5ryehDI1NOogGcKdNhGjd",
  1092. "instance": null,
  1093. "targetOverrides": null,
  1094. "nestedPrefabInstanceRoots": null
  1095. },
  1096. {
  1097. "__type__": "cc.Node",
  1098. "_name": "list",
  1099. "_objFlags": 0,
  1100. "__editorExtras__": {},
  1101. "_parent": {
  1102. "__id__": 3
  1103. },
  1104. "_children": [],
  1105. "_active": true,
  1106. "_components": [
  1107. {
  1108. "__id__": 43
  1109. }
  1110. ],
  1111. "_prefab": {
  1112. "__id__": 45
  1113. },
  1114. "_lpos": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 0,
  1117. "y": -55.189,
  1118. "z": 0
  1119. },
  1120. "_lrot": {
  1121. "__type__": "cc.Quat",
  1122. "x": 0,
  1123. "y": 0,
  1124. "z": 0,
  1125. "w": 1
  1126. },
  1127. "_lscale": {
  1128. "__type__": "cc.Vec3",
  1129. "x": 1,
  1130. "y": 1,
  1131. "z": 1
  1132. },
  1133. "_mobility": 0,
  1134. "_layer": 33554432,
  1135. "_euler": {
  1136. "__type__": "cc.Vec3",
  1137. "x": 0,
  1138. "y": 0,
  1139. "z": 0
  1140. },
  1141. "_id": ""
  1142. },
  1143. {
  1144. "__type__": "cc.UITransform",
  1145. "_name": "",
  1146. "_objFlags": 0,
  1147. "__editorExtras__": {},
  1148. "node": {
  1149. "__id__": 42
  1150. },
  1151. "_enabled": true,
  1152. "__prefab": {
  1153. "__id__": 44
  1154. },
  1155. "_contentSize": {
  1156. "__type__": "cc.Size",
  1157. "width": 600,
  1158. "height": 300
  1159. },
  1160. "_anchorPoint": {
  1161. "__type__": "cc.Vec2",
  1162. "x": 0.5,
  1163. "y": 0.5
  1164. },
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.CompPrefabInfo",
  1169. "fileId": "8cD1QZlH5OLL4RCqCzJRuz"
  1170. },
  1171. {
  1172. "__type__": "cc.PrefabInfo",
  1173. "root": {
  1174. "__id__": 1
  1175. },
  1176. "asset": {
  1177. "__id__": 0
  1178. },
  1179. "fileId": "311IenAp9KPbZBsgIeSHIj",
  1180. "instance": null,
  1181. "targetOverrides": null,
  1182. "nestedPrefabInstanceRoots": null
  1183. },
  1184. {
  1185. "__type__": "cc.Node",
  1186. "_name": "Mask",
  1187. "_objFlags": 0,
  1188. "__editorExtras__": {},
  1189. "_parent": {
  1190. "__id__": 3
  1191. },
  1192. "_children": [
  1193. {
  1194. "__id__": 47
  1195. },
  1196. {
  1197. "__id__": 55
  1198. },
  1199. {
  1200. "__id__": 71
  1201. },
  1202. {
  1203. "__id__": 99
  1204. },
  1205. {
  1206. "__id__": 117
  1207. },
  1208. {
  1209. "__id__": 123
  1210. },
  1211. {
  1212. "__id__": 129
  1213. },
  1214. {
  1215. "__id__": 135
  1216. },
  1217. {
  1218. "__id__": 141
  1219. },
  1220. {
  1221. "__id__": 147
  1222. },
  1223. {
  1224. "__id__": 153
  1225. },
  1226. {
  1227. "__id__": 182
  1228. }
  1229. ],
  1230. "_active": true,
  1231. "_components": [
  1232. {
  1233. "__id__": 200
  1234. },
  1235. {
  1236. "__id__": 202
  1237. },
  1238. {
  1239. "__id__": 204
  1240. },
  1241. {
  1242. "__id__": 206
  1243. }
  1244. ],
  1245. "_prefab": {
  1246. "__id__": 208
  1247. },
  1248. "_lpos": {
  1249. "__type__": "cc.Vec3",
  1250. "x": 0,
  1251. "y": 57.319,
  1252. "z": 0
  1253. },
  1254. "_lrot": {
  1255. "__type__": "cc.Quat",
  1256. "x": 0,
  1257. "y": 0,
  1258. "z": 0,
  1259. "w": 1
  1260. },
  1261. "_lscale": {
  1262. "__type__": "cc.Vec3",
  1263. "x": 1,
  1264. "y": 1,
  1265. "z": 1
  1266. },
  1267. "_mobility": 0,
  1268. "_layer": 33554432,
  1269. "_euler": {
  1270. "__type__": "cc.Vec3",
  1271. "x": 0,
  1272. "y": 0,
  1273. "z": 0
  1274. },
  1275. "_id": ""
  1276. },
  1277. {
  1278. "__type__": "cc.Node",
  1279. "_objFlags": 0,
  1280. "_parent": {
  1281. "__id__": 46
  1282. },
  1283. "_prefab": {
  1284. "__id__": 48
  1285. },
  1286. "__editorExtras__": {}
  1287. },
  1288. {
  1289. "__type__": "cc.PrefabInfo",
  1290. "root": {
  1291. "__id__": 47
  1292. },
  1293. "asset": {
  1294. "__uuid__": "562a487b-72a8-4f11-9780-615016a93316",
  1295. "__expectedType__": "cc.Prefab"
  1296. },
  1297. "fileId": "96CGE5Ft9DJrhNlL7I8PHH",
  1298. "instance": {
  1299. "__id__": 49
  1300. },
  1301. "targetOverrides": null
  1302. },
  1303. {
  1304. "__type__": "cc.PrefabInstance",
  1305. "fileId": "84Qxxf3DNHc4y+lCoXkzbM",
  1306. "prefabRootNode": {
  1307. "__id__": 1
  1308. },
  1309. "mountedChildren": [],
  1310. "mountedComponents": [],
  1311. "propertyOverrides": [
  1312. {
  1313. "__id__": 50
  1314. },
  1315. {
  1316. "__id__": 52
  1317. },
  1318. {
  1319. "__id__": 53
  1320. },
  1321. {
  1322. "__id__": 54
  1323. }
  1324. ],
  1325. "removedComponents": []
  1326. },
  1327. {
  1328. "__type__": "CCPropertyOverrideInfo",
  1329. "targetInfo": {
  1330. "__id__": 51
  1331. },
  1332. "propertyPath": [
  1333. "_name"
  1334. ],
  1335. "value": "stateItem"
  1336. },
  1337. {
  1338. "__type__": "cc.TargetInfo",
  1339. "localID": [
  1340. "96CGE5Ft9DJrhNlL7I8PHH"
  1341. ]
  1342. },
  1343. {
  1344. "__type__": "CCPropertyOverrideInfo",
  1345. "targetInfo": {
  1346. "__id__": 51
  1347. },
  1348. "propertyPath": [
  1349. "_lpos"
  1350. ],
  1351. "value": {
  1352. "__type__": "cc.Vec3",
  1353. "x": -264.368,
  1354. "y": -18.737,
  1355. "z": 0
  1356. }
  1357. },
  1358. {
  1359. "__type__": "CCPropertyOverrideInfo",
  1360. "targetInfo": {
  1361. "__id__": 51
  1362. },
  1363. "propertyPath": [
  1364. "_lrot"
  1365. ],
  1366. "value": {
  1367. "__type__": "cc.Quat",
  1368. "x": 0,
  1369. "y": 0,
  1370. "z": 0,
  1371. "w": 1
  1372. }
  1373. },
  1374. {
  1375. "__type__": "CCPropertyOverrideInfo",
  1376. "targetInfo": {
  1377. "__id__": 51
  1378. },
  1379. "propertyPath": [
  1380. "_euler"
  1381. ],
  1382. "value": {
  1383. "__type__": "cc.Vec3",
  1384. "x": 0,
  1385. "y": 0,
  1386. "z": 0
  1387. }
  1388. },
  1389. {
  1390. "__type__": "cc.Node",
  1391. "_objFlags": 0,
  1392. "_parent": {
  1393. "__id__": 46
  1394. },
  1395. "_prefab": {
  1396. "__id__": 56
  1397. },
  1398. "__editorExtras__": {}
  1399. },
  1400. {
  1401. "__type__": "cc.PrefabInfo",
  1402. "root": {
  1403. "__id__": 55
  1404. },
  1405. "asset": {
  1406. "__uuid__": "562a487b-72a8-4f11-9780-615016a93316",
  1407. "__expectedType__": "cc.Prefab"
  1408. },
  1409. "fileId": "96CGE5Ft9DJrhNlL7I8PHH",
  1410. "instance": {
  1411. "__id__": 57
  1412. },
  1413. "targetOverrides": null
  1414. },
  1415. {
  1416. "__type__": "cc.PrefabInstance",
  1417. "fileId": "e1CG+l0QVHbYedG4x6OIE2",
  1418. "prefabRootNode": {
  1419. "__id__": 1
  1420. },
  1421. "mountedChildren": [],
  1422. "mountedComponents": [],
  1423. "propertyOverrides": [
  1424. {
  1425. "__id__": 58
  1426. },
  1427. {
  1428. "__id__": 60
  1429. },
  1430. {
  1431. "__id__": 61
  1432. },
  1433. {
  1434. "__id__": 62
  1435. },
  1436. {
  1437. "__id__": 63
  1438. },
  1439. {
  1440. "__id__": 65
  1441. },
  1442. {
  1443. "__id__": 67
  1444. },
  1445. {
  1446. "__id__": 69
  1447. }
  1448. ],
  1449. "removedComponents": []
  1450. },
  1451. {
  1452. "__type__": "CCPropertyOverrideInfo",
  1453. "targetInfo": {
  1454. "__id__": 59
  1455. },
  1456. "propertyPath": [
  1457. "_name"
  1458. ],
  1459. "value": "stateItem-001"
  1460. },
  1461. {
  1462. "__type__": "cc.TargetInfo",
  1463. "localID": [
  1464. "96CGE5Ft9DJrhNlL7I8PHH"
  1465. ]
  1466. },
  1467. {
  1468. "__type__": "CCPropertyOverrideInfo",
  1469. "targetInfo": {
  1470. "__id__": 59
  1471. },
  1472. "propertyPath": [
  1473. "_lpos"
  1474. ],
  1475. "value": {
  1476. "__type__": "cc.Vec3",
  1477. "x": -264.368,
  1478. "y": -90.038,
  1479. "z": 0
  1480. }
  1481. },
  1482. {
  1483. "__type__": "CCPropertyOverrideInfo",
  1484. "targetInfo": {
  1485. "__id__": 59
  1486. },
  1487. "propertyPath": [
  1488. "_lrot"
  1489. ],
  1490. "value": {
  1491. "__type__": "cc.Quat",
  1492. "x": 0,
  1493. "y": 0,
  1494. "z": 0,
  1495. "w": 1
  1496. }
  1497. },
  1498. {
  1499. "__type__": "CCPropertyOverrideInfo",
  1500. "targetInfo": {
  1501. "__id__": 59
  1502. },
  1503. "propertyPath": [
  1504. "_euler"
  1505. ],
  1506. "value": {
  1507. "__type__": "cc.Vec3",
  1508. "x": 0,
  1509. "y": 0,
  1510. "z": 0
  1511. }
  1512. },
  1513. {
  1514. "__type__": "CCPropertyOverrideInfo",
  1515. "targetInfo": {
  1516. "__id__": 64
  1517. },
  1518. "propertyPath": [
  1519. "_string"
  1520. ],
  1521. "value": "确认账户信息"
  1522. },
  1523. {
  1524. "__type__": "cc.TargetInfo",
  1525. "localID": [
  1526. "3bFx/A3BFG7INkIeR2MKMq"
  1527. ]
  1528. },
  1529. {
  1530. "__type__": "CCPropertyOverrideInfo",
  1531. "targetInfo": {
  1532. "__id__": 66
  1533. },
  1534. "propertyPath": [
  1535. "_contentSize"
  1536. ],
  1537. "value": {
  1538. "__type__": "cc.Size",
  1539. "width": 168,
  1540. "height": 50.4
  1541. }
  1542. },
  1543. {
  1544. "__type__": "cc.TargetInfo",
  1545. "localID": [
  1546. "79ROtSCQ9DyIt7yOKW92RS"
  1547. ]
  1548. },
  1549. {
  1550. "__type__": "CCPropertyOverrideInfo",
  1551. "targetInfo": {
  1552. "__id__": 68
  1553. },
  1554. "propertyPath": [
  1555. "_lpos"
  1556. ],
  1557. "value": {
  1558. "__type__": "cc.Vec3",
  1559. "x": 18,
  1560. "y": 0,
  1561. "z": 0
  1562. }
  1563. },
  1564. {
  1565. "__type__": "cc.TargetInfo",
  1566. "localID": [
  1567. "c7yNhRpMRGOLUmmiRue+5G"
  1568. ]
  1569. },
  1570. {
  1571. "__type__": "CCPropertyOverrideInfo",
  1572. "targetInfo": {
  1573. "__id__": 70
  1574. },
  1575. "propertyPath": [
  1576. "_contentSize"
  1577. ],
  1578. "value": {
  1579. "__type__": "cc.Size",
  1580. "width": 214,
  1581. "height": 36
  1582. }
  1583. },
  1584. {
  1585. "__type__": "cc.TargetInfo",
  1586. "localID": [
  1587. "e0Dz3xLbFGqYaCoVHqF758"
  1588. ]
  1589. },
  1590. {
  1591. "__type__": "cc.Node",
  1592. "_objFlags": 0,
  1593. "_parent": {
  1594. "__id__": 46
  1595. },
  1596. "_prefab": {
  1597. "__id__": 72
  1598. },
  1599. "__editorExtras__": {}
  1600. },
  1601. {
  1602. "__type__": "cc.PrefabInfo",
  1603. "root": {
  1604. "__id__": 71
  1605. },
  1606. "asset": {
  1607. "__uuid__": "562a487b-72a8-4f11-9780-615016a93316",
  1608. "__expectedType__": "cc.Prefab"
  1609. },
  1610. "fileId": "96CGE5Ft9DJrhNlL7I8PHH",
  1611. "instance": {
  1612. "__id__": 73
  1613. },
  1614. "targetOverrides": null
  1615. },
  1616. {
  1617. "__type__": "cc.PrefabInstance",
  1618. "fileId": "15HS5E9WNGCJ0EQZCye10O",
  1619. "prefabRootNode": {
  1620. "__id__": 1
  1621. },
  1622. "mountedChildren": [],
  1623. "mountedComponents": [
  1624. {
  1625. "__id__": 74
  1626. }
  1627. ],
  1628. "propertyOverrides": [
  1629. {
  1630. "__id__": 84
  1631. },
  1632. {
  1633. "__id__": 86
  1634. },
  1635. {
  1636. "__id__": 87
  1637. },
  1638. {
  1639. "__id__": 88
  1640. },
  1641. {
  1642. "__id__": 89
  1643. },
  1644. {
  1645. "__id__": 91
  1646. },
  1647. {
  1648. "__id__": 93
  1649. },
  1650. {
  1651. "__id__": 95
  1652. },
  1653. {
  1654. "__id__": 97
  1655. }
  1656. ],
  1657. "removedComponents": []
  1658. },
  1659. {
  1660. "__type__": "cc.MountedComponentsInfo",
  1661. "targetInfo": {
  1662. "__id__": 75
  1663. },
  1664. "components": [
  1665. {
  1666. "__id__": 76
  1667. }
  1668. ]
  1669. },
  1670. {
  1671. "__type__": "cc.TargetInfo",
  1672. "localID": [
  1673. "33vCUmTqhEDZ63YrwTIIq1"
  1674. ]
  1675. },
  1676. {
  1677. "__type__": "545c05XsG9GDJispEGWKvYv",
  1678. "_name": "",
  1679. "_objFlags": 0,
  1680. "__editorExtras__": {
  1681. "mountedRoot": {
  1682. "__id__": 71
  1683. }
  1684. },
  1685. "node": {
  1686. "__id__": 77
  1687. },
  1688. "_enabled": true,
  1689. "__prefab": {
  1690. "__id__": 83
  1691. },
  1692. "templateMode": true,
  1693. "watchPath": "*.money",
  1694. "labelType": "cc.Label",
  1695. "watchPathArr": [
  1696. "*.money"
  1697. ],
  1698. "_id": ""
  1699. },
  1700. {
  1701. "__type__": "cc.Node",
  1702. "_name": "lab_state1",
  1703. "_objFlags": 0,
  1704. "__editorExtras__": {},
  1705. "_parent": {
  1706. "__id__": 71
  1707. },
  1708. "_children": [],
  1709. "_active": true,
  1710. "_components": [
  1711. {
  1712. "__id__": 78
  1713. },
  1714. {
  1715. "__id__": 80
  1716. },
  1717. {
  1718. "__id__": 76
  1719. }
  1720. ],
  1721. "_prefab": {
  1722. "__id__": 82
  1723. },
  1724. "_lpos": {
  1725. "__type__": "cc.Vec3",
  1726. "x": 146.37890625,
  1727. "y": 0,
  1728. "z": 0
  1729. },
  1730. "_lrot": {
  1731. "__type__": "cc.Quat",
  1732. "x": 0,
  1733. "y": 0,
  1734. "z": 0,
  1735. "w": 1
  1736. },
  1737. "_lscale": {
  1738. "__type__": "cc.Vec3",
  1739. "x": 1,
  1740. "y": 1,
  1741. "z": 1
  1742. },
  1743. "_mobility": 0,
  1744. "_layer": 33554432,
  1745. "_euler": {
  1746. "__type__": "cc.Vec3",
  1747. "x": 0,
  1748. "y": 0,
  1749. "z": 0
  1750. },
  1751. "_id": ""
  1752. },
  1753. {
  1754. "__type__": "cc.UITransform",
  1755. "_name": "",
  1756. "_objFlags": 0,
  1757. "__editorExtras__": {},
  1758. "node": {
  1759. "__id__": 77
  1760. },
  1761. "_enabled": true,
  1762. "__prefab": {
  1763. "__id__": 79
  1764. },
  1765. "_contentSize": {
  1766. "__type__": "cc.Size",
  1767. "width": 200.7578125,
  1768. "height": 50.4
  1769. },
  1770. "_anchorPoint": {
  1771. "__type__": "cc.Vec2",
  1772. "x": 0.5,
  1773. "y": 0.5
  1774. },
  1775. "_id": ""
  1776. },
  1777. {
  1778. "__type__": "cc.CompPrefabInfo",
  1779. "fileId": "79ROtSCQ9DyIt7yOKW92RS"
  1780. },
  1781. {
  1782. "__type__": "cc.Label",
  1783. "_name": "",
  1784. "_objFlags": 0,
  1785. "__editorExtras__": {},
  1786. "node": {
  1787. "__id__": 77
  1788. },
  1789. "_enabled": true,
  1790. "__prefab": {
  1791. "__id__": 81
  1792. },
  1793. "_customMaterial": null,
  1794. "_srcBlendFactor": 2,
  1795. "_dstBlendFactor": 4,
  1796. "_color": {
  1797. "__type__": "cc.Color",
  1798. "r": 32,
  1799. "g": 32,
  1800. "b": 32,
  1801. "a": 255
  1802. },
  1803. "_string": "发起打款:{{0}}元",
  1804. "_horizontalAlign": 1,
  1805. "_verticalAlign": 1,
  1806. "_actualFontSize": 28,
  1807. "_fontSize": 28,
  1808. "_fontFamily": "Arial",
  1809. "_lineHeight": 40,
  1810. "_overflow": 0,
  1811. "_enableWrapText": true,
  1812. "_font": null,
  1813. "_isSystemFontUsed": true,
  1814. "_spacingX": 0,
  1815. "_isItalic": false,
  1816. "_isBold": false,
  1817. "_isUnderline": false,
  1818. "_underlineHeight": 2,
  1819. "_cacheMode": 0,
  1820. "_enableOutline": false,
  1821. "_outlineColor": {
  1822. "__type__": "cc.Color",
  1823. "r": 0,
  1824. "g": 0,
  1825. "b": 0,
  1826. "a": 255
  1827. },
  1828. "_outlineWidth": 2,
  1829. "_enableShadow": false,
  1830. "_shadowColor": {
  1831. "__type__": "cc.Color",
  1832. "r": 0,
  1833. "g": 0,
  1834. "b": 0,
  1835. "a": 255
  1836. },
  1837. "_shadowOffset": {
  1838. "__type__": "cc.Vec2",
  1839. "x": 2,
  1840. "y": 2
  1841. },
  1842. "_shadowBlur": 2,
  1843. "_id": ""
  1844. },
  1845. {
  1846. "__type__": "cc.CompPrefabInfo",
  1847. "fileId": "3bFx/A3BFG7INkIeR2MKMq"
  1848. },
  1849. {
  1850. "__type__": "cc.PrefabInfo",
  1851. "root": {
  1852. "__id__": 1
  1853. },
  1854. "asset": {
  1855. "__id__": 0
  1856. },
  1857. "fileId": "33vCUmTqhEDZ63YrwTIIq1",
  1858. "instance": null,
  1859. "targetOverrides": null,
  1860. "nestedPrefabInstanceRoots": null
  1861. },
  1862. {
  1863. "__type__": "cc.CompPrefabInfo",
  1864. "fileId": "d19/0sbFRAL5m2OwPstU7w"
  1865. },
  1866. {
  1867. "__type__": "CCPropertyOverrideInfo",
  1868. "targetInfo": {
  1869. "__id__": 85
  1870. },
  1871. "propertyPath": [
  1872. "_name"
  1873. ],
  1874. "value": "stateItem-002"
  1875. },
  1876. {
  1877. "__type__": "cc.TargetInfo",
  1878. "localID": [
  1879. "96CGE5Ft9DJrhNlL7I8PHH"
  1880. ]
  1881. },
  1882. {
  1883. "__type__": "CCPropertyOverrideInfo",
  1884. "targetInfo": {
  1885. "__id__": 85
  1886. },
  1887. "propertyPath": [
  1888. "_lpos"
  1889. ],
  1890. "value": {
  1891. "__type__": "cc.Vec3",
  1892. "x": -264.368,
  1893. "y": -162.388,
  1894. "z": 0
  1895. }
  1896. },
  1897. {
  1898. "__type__": "CCPropertyOverrideInfo",
  1899. "targetInfo": {
  1900. "__id__": 85
  1901. },
  1902. "propertyPath": [
  1903. "_lrot"
  1904. ],
  1905. "value": {
  1906. "__type__": "cc.Quat",
  1907. "x": 0,
  1908. "y": 0,
  1909. "z": 0,
  1910. "w": 1
  1911. }
  1912. },
  1913. {
  1914. "__type__": "CCPropertyOverrideInfo",
  1915. "targetInfo": {
  1916. "__id__": 85
  1917. },
  1918. "propertyPath": [
  1919. "_euler"
  1920. ],
  1921. "value": {
  1922. "__type__": "cc.Vec3",
  1923. "x": 0,
  1924. "y": 0,
  1925. "z": 0
  1926. }
  1927. },
  1928. {
  1929. "__type__": "CCPropertyOverrideInfo",
  1930. "targetInfo": {
  1931. "__id__": 90
  1932. },
  1933. "propertyPath": [
  1934. "_string"
  1935. ],
  1936. "value": "发起打款:{{0}}元"
  1937. },
  1938. {
  1939. "__type__": "cc.TargetInfo",
  1940. "localID": [
  1941. "3bFx/A3BFG7INkIeR2MKMq"
  1942. ]
  1943. },
  1944. {
  1945. "__type__": "CCPropertyOverrideInfo",
  1946. "targetInfo": {
  1947. "__id__": 92
  1948. },
  1949. "propertyPath": [
  1950. "_contentSize"
  1951. ],
  1952. "value": {
  1953. "__type__": "cc.Size",
  1954. "width": 200.7578125,
  1955. "height": 50.4
  1956. }
  1957. },
  1958. {
  1959. "__type__": "cc.TargetInfo",
  1960. "localID": [
  1961. "79ROtSCQ9DyIt7yOKW92RS"
  1962. ]
  1963. },
  1964. {
  1965. "__type__": "CCPropertyOverrideInfo",
  1966. "targetInfo": {
  1967. "__id__": 94
  1968. },
  1969. "propertyPath": [
  1970. "_lpos"
  1971. ],
  1972. "value": {
  1973. "__type__": "cc.Vec3",
  1974. "x": 18,
  1975. "y": 0,
  1976. "z": 0
  1977. }
  1978. },
  1979. {
  1980. "__type__": "cc.TargetInfo",
  1981. "localID": [
  1982. "c7yNhRpMRGOLUmmiRue+5G"
  1983. ]
  1984. },
  1985. {
  1986. "__type__": "CCPropertyOverrideInfo",
  1987. "targetInfo": {
  1988. "__id__": 96
  1989. },
  1990. "propertyPath": [
  1991. "_contentSize"
  1992. ],
  1993. "value": {
  1994. "__type__": "cc.Size",
  1995. "width": 246.7578125,
  1996. "height": 36
  1997. }
  1998. },
  1999. {
  2000. "__type__": "cc.TargetInfo",
  2001. "localID": [
  2002. "e0Dz3xLbFGqYaCoVHqF758"
  2003. ]
  2004. },
  2005. {
  2006. "__type__": "CCPropertyOverrideInfo",
  2007. "targetInfo": {
  2008. "__id__": 98
  2009. },
  2010. "propertyPath": [
  2011. "_lpos"
  2012. ],
  2013. "value": {
  2014. "__type__": "cc.Vec3",
  2015. "x": 146.37890625,
  2016. "y": 0,
  2017. "z": 0
  2018. }
  2019. },
  2020. {
  2021. "__type__": "cc.TargetInfo",
  2022. "localID": [
  2023. "33vCUmTqhEDZ63YrwTIIq1"
  2024. ]
  2025. },
  2026. {
  2027. "__type__": "cc.Node",
  2028. "_objFlags": 0,
  2029. "_parent": {
  2030. "__id__": 46
  2031. },
  2032. "_prefab": {
  2033. "__id__": 100
  2034. },
  2035. "__editorExtras__": {}
  2036. },
  2037. {
  2038. "__type__": "cc.PrefabInfo",
  2039. "root": {
  2040. "__id__": 99
  2041. },
  2042. "asset": {
  2043. "__uuid__": "562a487b-72a8-4f11-9780-615016a93316",
  2044. "__expectedType__": "cc.Prefab"
  2045. },
  2046. "fileId": "96CGE5Ft9DJrhNlL7I8PHH",
  2047. "instance": {
  2048. "__id__": 101
  2049. },
  2050. "targetOverrides": null
  2051. },
  2052. {
  2053. "__type__": "cc.PrefabInstance",
  2054. "fileId": "27ECOjs4RCSKTrq5ZQhKkX",
  2055. "prefabRootNode": {
  2056. "__id__": 1
  2057. },
  2058. "mountedChildren": [],
  2059. "mountedComponents": [],
  2060. "propertyOverrides": [
  2061. {
  2062. "__id__": 102
  2063. },
  2064. {
  2065. "__id__": 104
  2066. },
  2067. {
  2068. "__id__": 105
  2069. },
  2070. {
  2071. "__id__": 106
  2072. },
  2073. {
  2074. "__id__": 107
  2075. },
  2076. {
  2077. "__id__": 109
  2078. },
  2079. {
  2080. "__id__": 111
  2081. },
  2082. {
  2083. "__id__": 113
  2084. },
  2085. {
  2086. "__id__": 115
  2087. }
  2088. ],
  2089. "removedComponents": []
  2090. },
  2091. {
  2092. "__type__": "CCPropertyOverrideInfo",
  2093. "targetInfo": {
  2094. "__id__": 103
  2095. },
  2096. "propertyPath": [
  2097. "_name"
  2098. ],
  2099. "value": "stateItem-003"
  2100. },
  2101. {
  2102. "__type__": "cc.TargetInfo",
  2103. "localID": [
  2104. "96CGE5Ft9DJrhNlL7I8PHH"
  2105. ]
  2106. },
  2107. {
  2108. "__type__": "CCPropertyOverrideInfo",
  2109. "targetInfo": {
  2110. "__id__": 103
  2111. },
  2112. "propertyPath": [
  2113. "_lpos"
  2114. ],
  2115. "value": {
  2116. "__type__": "cc.Vec3",
  2117. "x": -264.368,
  2118. "y": -237.457,
  2119. "z": 0
  2120. }
  2121. },
  2122. {
  2123. "__type__": "CCPropertyOverrideInfo",
  2124. "targetInfo": {
  2125. "__id__": 103
  2126. },
  2127. "propertyPath": [
  2128. "_lrot"
  2129. ],
  2130. "value": {
  2131. "__type__": "cc.Quat",
  2132. "x": 0,
  2133. "y": 0,
  2134. "z": 0,
  2135. "w": 1
  2136. }
  2137. },
  2138. {
  2139. "__type__": "CCPropertyOverrideInfo",
  2140. "targetInfo": {
  2141. "__id__": 103
  2142. },
  2143. "propertyPath": [
  2144. "_euler"
  2145. ],
  2146. "value": {
  2147. "__type__": "cc.Vec3",
  2148. "x": 0,
  2149. "y": 0,
  2150. "z": 0
  2151. }
  2152. },
  2153. {
  2154. "__type__": "CCPropertyOverrideInfo",
  2155. "targetInfo": {
  2156. "__id__": 108
  2157. },
  2158. "propertyPath": [
  2159. "_string"
  2160. ],
  2161. "value": "银行已打款"
  2162. },
  2163. {
  2164. "__type__": "cc.TargetInfo",
  2165. "localID": [
  2166. "3bFx/A3BFG7INkIeR2MKMq"
  2167. ]
  2168. },
  2169. {
  2170. "__type__": "CCPropertyOverrideInfo",
  2171. "targetInfo": {
  2172. "__id__": 110
  2173. },
  2174. "propertyPath": [
  2175. "_contentSize"
  2176. ],
  2177. "value": {
  2178. "__type__": "cc.Size",
  2179. "width": 140,
  2180. "height": 50.4
  2181. }
  2182. },
  2183. {
  2184. "__type__": "cc.TargetInfo",
  2185. "localID": [
  2186. "79ROtSCQ9DyIt7yOKW92RS"
  2187. ]
  2188. },
  2189. {
  2190. "__type__": "CCPropertyOverrideInfo",
  2191. "targetInfo": {
  2192. "__id__": 112
  2193. },
  2194. "propertyPath": [
  2195. "_lpos"
  2196. ],
  2197. "value": {
  2198. "__type__": "cc.Vec3",
  2199. "x": 18,
  2200. "y": 0,
  2201. "z": 0
  2202. }
  2203. },
  2204. {
  2205. "__type__": "cc.TargetInfo",
  2206. "localID": [
  2207. "c7yNhRpMRGOLUmmiRue+5G"
  2208. ]
  2209. },
  2210. {
  2211. "__type__": "CCPropertyOverrideInfo",
  2212. "targetInfo": {
  2213. "__id__": 114
  2214. },
  2215. "propertyPath": [
  2216. "_contentSize"
  2217. ],
  2218. "value": {
  2219. "__type__": "cc.Size",
  2220. "width": 186,
  2221. "height": 36
  2222. }
  2223. },
  2224. {
  2225. "__type__": "cc.TargetInfo",
  2226. "localID": [
  2227. "e0Dz3xLbFGqYaCoVHqF758"
  2228. ]
  2229. },
  2230. {
  2231. "__type__": "CCPropertyOverrideInfo",
  2232. "targetInfo": {
  2233. "__id__": 116
  2234. },
  2235. "propertyPath": [
  2236. "_lpos"
  2237. ],
  2238. "value": {
  2239. "__type__": "cc.Vec3",
  2240. "x": 116,
  2241. "y": 0,
  2242. "z": 0
  2243. }
  2244. },
  2245. {
  2246. "__type__": "cc.TargetInfo",
  2247. "localID": [
  2248. "33vCUmTqhEDZ63YrwTIIq1"
  2249. ]
  2250. },
  2251. {
  2252. "__type__": "cc.Node",
  2253. "_name": "vertical_line",
  2254. "_objFlags": 0,
  2255. "__editorExtras__": {},
  2256. "_parent": {
  2257. "__id__": 46
  2258. },
  2259. "_children": [],
  2260. "_active": true,
  2261. "_components": [
  2262. {
  2263. "__id__": 118
  2264. },
  2265. {
  2266. "__id__": 120
  2267. }
  2268. ],
  2269. "_prefab": {
  2270. "__id__": 122
  2271. },
  2272. "_lpos": {
  2273. "__type__": "cc.Vec3",
  2274. "x": -246.916,
  2275. "y": -54.482,
  2276. "z": 0
  2277. },
  2278. "_lrot": {
  2279. "__type__": "cc.Quat",
  2280. "x": 0,
  2281. "y": 0,
  2282. "z": 0,
  2283. "w": 1
  2284. },
  2285. "_lscale": {
  2286. "__type__": "cc.Vec3",
  2287. "x": 1,
  2288. "y": 1,
  2289. "z": 1
  2290. },
  2291. "_mobility": 0,
  2292. "_layer": 33554432,
  2293. "_euler": {
  2294. "__type__": "cc.Vec3",
  2295. "x": 0,
  2296. "y": 0,
  2297. "z": 0
  2298. },
  2299. "_id": ""
  2300. },
  2301. {
  2302. "__type__": "cc.UITransform",
  2303. "_name": "",
  2304. "_objFlags": 0,
  2305. "__editorExtras__": {},
  2306. "node": {
  2307. "__id__": 117
  2308. },
  2309. "_enabled": true,
  2310. "__prefab": {
  2311. "__id__": 119
  2312. },
  2313. "_contentSize": {
  2314. "__type__": "cc.Size",
  2315. "width": 4,
  2316. "height": 31
  2317. },
  2318. "_anchorPoint": {
  2319. "__type__": "cc.Vec2",
  2320. "x": 0.5,
  2321. "y": 0.5
  2322. },
  2323. "_id": ""
  2324. },
  2325. {
  2326. "__type__": "cc.CompPrefabInfo",
  2327. "fileId": "b4PPlknBlBEob7MkDqYSLf"
  2328. },
  2329. {
  2330. "__type__": "cc.Sprite",
  2331. "_name": "",
  2332. "_objFlags": 0,
  2333. "__editorExtras__": {},
  2334. "node": {
  2335. "__id__": 117
  2336. },
  2337. "_enabled": true,
  2338. "__prefab": {
  2339. "__id__": 121
  2340. },
  2341. "_customMaterial": null,
  2342. "_srcBlendFactor": 2,
  2343. "_dstBlendFactor": 4,
  2344. "_color": {
  2345. "__type__": "cc.Color",
  2346. "r": 255,
  2347. "g": 255,
  2348. "b": 255,
  2349. "a": 255
  2350. },
  2351. "_spriteFrame": {
  2352. "__uuid__": "42495932-b472-4af7-8910-6c74366a700f@f9941",
  2353. "__expectedType__": "cc.SpriteFrame"
  2354. },
  2355. "_type": 0,
  2356. "_fillType": 0,
  2357. "_sizeMode": 1,
  2358. "_fillCenter": {
  2359. "__type__": "cc.Vec2",
  2360. "x": 0,
  2361. "y": 0
  2362. },
  2363. "_fillStart": 0,
  2364. "_fillRange": 0,
  2365. "_isTrimmedMode": true,
  2366. "_useGrayscale": false,
  2367. "_atlas": null,
  2368. "_id": ""
  2369. },
  2370. {
  2371. "__type__": "cc.CompPrefabInfo",
  2372. "fileId": "afkaTg/NZMfra1RmDpBgN5"
  2373. },
  2374. {
  2375. "__type__": "cc.PrefabInfo",
  2376. "root": {
  2377. "__id__": 1
  2378. },
  2379. "asset": {
  2380. "__id__": 0
  2381. },
  2382. "fileId": "b0QW+O54NBzY4LDfr5maJn",
  2383. "instance": null,
  2384. "targetOverrides": null,
  2385. "nestedPrefabInstanceRoots": null
  2386. },
  2387. {
  2388. "__type__": "cc.Node",
  2389. "_name": "vertical_line-001",
  2390. "_objFlags": 0,
  2391. "__editorExtras__": {},
  2392. "_parent": {
  2393. "__id__": 46
  2394. },
  2395. "_children": [],
  2396. "_active": true,
  2397. "_components": [
  2398. {
  2399. "__id__": 124
  2400. },
  2401. {
  2402. "__id__": 126
  2403. }
  2404. ],
  2405. "_prefab": {
  2406. "__id__": 128
  2407. },
  2408. "_lpos": {
  2409. "__type__": "cc.Vec3",
  2410. "x": -246.916,
  2411. "y": -128.739,
  2412. "z": 0
  2413. },
  2414. "_lrot": {
  2415. "__type__": "cc.Quat",
  2416. "x": 0,
  2417. "y": 0,
  2418. "z": 0,
  2419. "w": 1
  2420. },
  2421. "_lscale": {
  2422. "__type__": "cc.Vec3",
  2423. "x": 1,
  2424. "y": 1,
  2425. "z": 1
  2426. },
  2427. "_mobility": 0,
  2428. "_layer": 33554432,
  2429. "_euler": {
  2430. "__type__": "cc.Vec3",
  2431. "x": 0,
  2432. "y": 0,
  2433. "z": 0
  2434. },
  2435. "_id": ""
  2436. },
  2437. {
  2438. "__type__": "cc.UITransform",
  2439. "_name": "",
  2440. "_objFlags": 0,
  2441. "__editorExtras__": {},
  2442. "node": {
  2443. "__id__": 123
  2444. },
  2445. "_enabled": true,
  2446. "__prefab": {
  2447. "__id__": 125
  2448. },
  2449. "_contentSize": {
  2450. "__type__": "cc.Size",
  2451. "width": 4,
  2452. "height": 31
  2453. },
  2454. "_anchorPoint": {
  2455. "__type__": "cc.Vec2",
  2456. "x": 0.5,
  2457. "y": 0.5
  2458. },
  2459. "_id": ""
  2460. },
  2461. {
  2462. "__type__": "cc.CompPrefabInfo",
  2463. "fileId": "bc3R1Yf1BAHIeD1oZ5rjyW"
  2464. },
  2465. {
  2466. "__type__": "cc.Sprite",
  2467. "_name": "",
  2468. "_objFlags": 0,
  2469. "__editorExtras__": {},
  2470. "node": {
  2471. "__id__": 123
  2472. },
  2473. "_enabled": true,
  2474. "__prefab": {
  2475. "__id__": 127
  2476. },
  2477. "_customMaterial": null,
  2478. "_srcBlendFactor": 2,
  2479. "_dstBlendFactor": 4,
  2480. "_color": {
  2481. "__type__": "cc.Color",
  2482. "r": 255,
  2483. "g": 255,
  2484. "b": 255,
  2485. "a": 255
  2486. },
  2487. "_spriteFrame": {
  2488. "__uuid__": "42495932-b472-4af7-8910-6c74366a700f@f9941",
  2489. "__expectedType__": "cc.SpriteFrame"
  2490. },
  2491. "_type": 0,
  2492. "_fillType": 0,
  2493. "_sizeMode": 1,
  2494. "_fillCenter": {
  2495. "__type__": "cc.Vec2",
  2496. "x": 0,
  2497. "y": 0
  2498. },
  2499. "_fillStart": 0,
  2500. "_fillRange": 0,
  2501. "_isTrimmedMode": true,
  2502. "_useGrayscale": false,
  2503. "_atlas": null,
  2504. "_id": ""
  2505. },
  2506. {
  2507. "__type__": "cc.CompPrefabInfo",
  2508. "fileId": "acwXjfxmVPwqUui+4klR3U"
  2509. },
  2510. {
  2511. "__type__": "cc.PrefabInfo",
  2512. "root": {
  2513. "__id__": 1
  2514. },
  2515. "asset": {
  2516. "__id__": 0
  2517. },
  2518. "fileId": "77uwhAjjBN4qbIuHq/mjnB",
  2519. "instance": null,
  2520. "targetOverrides": null,
  2521. "nestedPrefabInstanceRoots": null
  2522. },
  2523. {
  2524. "__type__": "cc.Node",
  2525. "_name": "vertical_line-002",
  2526. "_objFlags": 0,
  2527. "__editorExtras__": {},
  2528. "_parent": {
  2529. "__id__": 46
  2530. },
  2531. "_children": [],
  2532. "_active": true,
  2533. "_components": [
  2534. {
  2535. "__id__": 130
  2536. },
  2537. {
  2538. "__id__": 132
  2539. }
  2540. ],
  2541. "_prefab": {
  2542. "__id__": 134
  2543. },
  2544. "_lpos": {
  2545. "__type__": "cc.Vec3",
  2546. "x": -246.916,
  2547. "y": -200.147,
  2548. "z": 0
  2549. },
  2550. "_lrot": {
  2551. "__type__": "cc.Quat",
  2552. "x": 0,
  2553. "y": 0,
  2554. "z": 0,
  2555. "w": 1
  2556. },
  2557. "_lscale": {
  2558. "__type__": "cc.Vec3",
  2559. "x": 1,
  2560. "y": 1,
  2561. "z": 1
  2562. },
  2563. "_mobility": 0,
  2564. "_layer": 33554432,
  2565. "_euler": {
  2566. "__type__": "cc.Vec3",
  2567. "x": 0,
  2568. "y": 0,
  2569. "z": 0
  2570. },
  2571. "_id": ""
  2572. },
  2573. {
  2574. "__type__": "cc.UITransform",
  2575. "_name": "",
  2576. "_objFlags": 0,
  2577. "__editorExtras__": {},
  2578. "node": {
  2579. "__id__": 129
  2580. },
  2581. "_enabled": true,
  2582. "__prefab": {
  2583. "__id__": 131
  2584. },
  2585. "_contentSize": {
  2586. "__type__": "cc.Size",
  2587. "width": 4,
  2588. "height": 31
  2589. },
  2590. "_anchorPoint": {
  2591. "__type__": "cc.Vec2",
  2592. "x": 0.5,
  2593. "y": 0.5
  2594. },
  2595. "_id": ""
  2596. },
  2597. {
  2598. "__type__": "cc.CompPrefabInfo",
  2599. "fileId": "d92bq70gNDxLxRhuR6YUfl"
  2600. },
  2601. {
  2602. "__type__": "cc.Sprite",
  2603. "_name": "",
  2604. "_objFlags": 0,
  2605. "__editorExtras__": {},
  2606. "node": {
  2607. "__id__": 129
  2608. },
  2609. "_enabled": true,
  2610. "__prefab": {
  2611. "__id__": 133
  2612. },
  2613. "_customMaterial": null,
  2614. "_srcBlendFactor": 2,
  2615. "_dstBlendFactor": 4,
  2616. "_color": {
  2617. "__type__": "cc.Color",
  2618. "r": 255,
  2619. "g": 255,
  2620. "b": 255,
  2621. "a": 255
  2622. },
  2623. "_spriteFrame": {
  2624. "__uuid__": "42495932-b472-4af7-8910-6c74366a700f@f9941",
  2625. "__expectedType__": "cc.SpriteFrame"
  2626. },
  2627. "_type": 0,
  2628. "_fillType": 0,
  2629. "_sizeMode": 1,
  2630. "_fillCenter": {
  2631. "__type__": "cc.Vec2",
  2632. "x": 0,
  2633. "y": 0
  2634. },
  2635. "_fillStart": 0,
  2636. "_fillRange": 0,
  2637. "_isTrimmedMode": true,
  2638. "_useGrayscale": false,
  2639. "_atlas": null,
  2640. "_id": ""
  2641. },
  2642. {
  2643. "__type__": "cc.CompPrefabInfo",
  2644. "fileId": "afk4HKnVdHjL5UTpl5JaCk"
  2645. },
  2646. {
  2647. "__type__": "cc.PrefabInfo",
  2648. "root": {
  2649. "__id__": 1
  2650. },
  2651. "asset": {
  2652. "__id__": 0
  2653. },
  2654. "fileId": "a3ZmHW7o5CNKqP6DDg6pBf",
  2655. "instance": null,
  2656. "targetOverrides": null,
  2657. "nestedPrefabInstanceRoots": null
  2658. },
  2659. {
  2660. "__type__": "cc.Node",
  2661. "_name": "vertical_line-003",
  2662. "_objFlags": 0,
  2663. "__editorExtras__": {},
  2664. "_parent": {
  2665. "__id__": 46
  2666. },
  2667. "_children": [],
  2668. "_active": true,
  2669. "_components": [
  2670. {
  2671. "__id__": 136
  2672. },
  2673. {
  2674. "__id__": 138
  2675. }
  2676. ],
  2677. "_prefab": {
  2678. "__id__": 140
  2679. },
  2680. "_lpos": {
  2681. "__type__": "cc.Vec3",
  2682. "x": -246.916,
  2683. "y": -280.93,
  2684. "z": 0
  2685. },
  2686. "_lrot": {
  2687. "__type__": "cc.Quat",
  2688. "x": 0,
  2689. "y": 0,
  2690. "z": 0,
  2691. "w": 1
  2692. },
  2693. "_lscale": {
  2694. "__type__": "cc.Vec3",
  2695. "x": 1,
  2696. "y": 1,
  2697. "z": 1
  2698. },
  2699. "_mobility": 0,
  2700. "_layer": 33554432,
  2701. "_euler": {
  2702. "__type__": "cc.Vec3",
  2703. "x": 0,
  2704. "y": 0,
  2705. "z": 0
  2706. },
  2707. "_id": ""
  2708. },
  2709. {
  2710. "__type__": "cc.UITransform",
  2711. "_name": "",
  2712. "_objFlags": 0,
  2713. "__editorExtras__": {},
  2714. "node": {
  2715. "__id__": 135
  2716. },
  2717. "_enabled": true,
  2718. "__prefab": {
  2719. "__id__": 137
  2720. },
  2721. "_contentSize": {
  2722. "__type__": "cc.Size",
  2723. "width": 4,
  2724. "height": 31
  2725. },
  2726. "_anchorPoint": {
  2727. "__type__": "cc.Vec2",
  2728. "x": 0.5,
  2729. "y": 0.5
  2730. },
  2731. "_id": ""
  2732. },
  2733. {
  2734. "__type__": "cc.CompPrefabInfo",
  2735. "fileId": "d5MtL3czRI2qM6sAU5VJ2n"
  2736. },
  2737. {
  2738. "__type__": "cc.Sprite",
  2739. "_name": "",
  2740. "_objFlags": 0,
  2741. "__editorExtras__": {},
  2742. "node": {
  2743. "__id__": 135
  2744. },
  2745. "_enabled": true,
  2746. "__prefab": {
  2747. "__id__": 139
  2748. },
  2749. "_customMaterial": null,
  2750. "_srcBlendFactor": 2,
  2751. "_dstBlendFactor": 4,
  2752. "_color": {
  2753. "__type__": "cc.Color",
  2754. "r": 255,
  2755. "g": 255,
  2756. "b": 255,
  2757. "a": 255
  2758. },
  2759. "_spriteFrame": {
  2760. "__uuid__": "42495932-b472-4af7-8910-6c74366a700f@f9941",
  2761. "__expectedType__": "cc.SpriteFrame"
  2762. },
  2763. "_type": 0,
  2764. "_fillType": 0,
  2765. "_sizeMode": 1,
  2766. "_fillCenter": {
  2767. "__type__": "cc.Vec2",
  2768. "x": 0,
  2769. "y": 0
  2770. },
  2771. "_fillStart": 0,
  2772. "_fillRange": 0,
  2773. "_isTrimmedMode": true,
  2774. "_useGrayscale": false,
  2775. "_atlas": null,
  2776. "_id": ""
  2777. },
  2778. {
  2779. "__type__": "cc.CompPrefabInfo",
  2780. "fileId": "96cSuYXi1AAKSLUBINzWZl"
  2781. },
  2782. {
  2783. "__type__": "cc.PrefabInfo",
  2784. "root": {
  2785. "__id__": 1
  2786. },
  2787. "asset": {
  2788. "__id__": 0
  2789. },
  2790. "fileId": "b8MP6AOqtDBLT/1kaF/ZfC",
  2791. "instance": null,
  2792. "targetOverrides": null,
  2793. "nestedPrefabInstanceRoots": null
  2794. },
  2795. {
  2796. "__type__": "cc.Node",
  2797. "_name": "vertical_line-004",
  2798. "_objFlags": 0,
  2799. "__editorExtras__": {},
  2800. "_parent": {
  2801. "__id__": 46
  2802. },
  2803. "_children": [],
  2804. "_active": true,
  2805. "_components": [
  2806. {
  2807. "__id__": 142
  2808. },
  2809. {
  2810. "__id__": 144
  2811. }
  2812. ],
  2813. "_prefab": {
  2814. "__id__": 146
  2815. },
  2816. "_lpos": {
  2817. "__type__": "cc.Vec3",
  2818. "x": -246.916,
  2819. "y": -280.93,
  2820. "z": 0
  2821. },
  2822. "_lrot": {
  2823. "__type__": "cc.Quat",
  2824. "x": 0,
  2825. "y": 0,
  2826. "z": 0,
  2827. "w": 1
  2828. },
  2829. "_lscale": {
  2830. "__type__": "cc.Vec3",
  2831. "x": 1,
  2832. "y": 1,
  2833. "z": 1
  2834. },
  2835. "_mobility": 0,
  2836. "_layer": 33554432,
  2837. "_euler": {
  2838. "__type__": "cc.Vec3",
  2839. "x": 0,
  2840. "y": 0,
  2841. "z": 0
  2842. },
  2843. "_id": ""
  2844. },
  2845. {
  2846. "__type__": "cc.UITransform",
  2847. "_name": "",
  2848. "_objFlags": 0,
  2849. "__editorExtras__": {},
  2850. "node": {
  2851. "__id__": 141
  2852. },
  2853. "_enabled": true,
  2854. "__prefab": {
  2855. "__id__": 143
  2856. },
  2857. "_contentSize": {
  2858. "__type__": "cc.Size",
  2859. "width": 4,
  2860. "height": 31
  2861. },
  2862. "_anchorPoint": {
  2863. "__type__": "cc.Vec2",
  2864. "x": 0.5,
  2865. "y": 0.5
  2866. },
  2867. "_id": ""
  2868. },
  2869. {
  2870. "__type__": "cc.CompPrefabInfo",
  2871. "fileId": "cfVtL/X6JP+5SmYnbQ/2VP"
  2872. },
  2873. {
  2874. "__type__": "cc.Sprite",
  2875. "_name": "",
  2876. "_objFlags": 0,
  2877. "__editorExtras__": {},
  2878. "node": {
  2879. "__id__": 141
  2880. },
  2881. "_enabled": true,
  2882. "__prefab": {
  2883. "__id__": 145
  2884. },
  2885. "_customMaterial": null,
  2886. "_srcBlendFactor": 2,
  2887. "_dstBlendFactor": 4,
  2888. "_color": {
  2889. "__type__": "cc.Color",
  2890. "r": 255,
  2891. "g": 255,
  2892. "b": 255,
  2893. "a": 255
  2894. },
  2895. "_spriteFrame": {
  2896. "__uuid__": "42495932-b472-4af7-8910-6c74366a700f@f9941",
  2897. "__expectedType__": "cc.SpriteFrame"
  2898. },
  2899. "_type": 0,
  2900. "_fillType": 0,
  2901. "_sizeMode": 1,
  2902. "_fillCenter": {
  2903. "__type__": "cc.Vec2",
  2904. "x": 0,
  2905. "y": 0
  2906. },
  2907. "_fillStart": 0,
  2908. "_fillRange": 0,
  2909. "_isTrimmedMode": true,
  2910. "_useGrayscale": false,
  2911. "_atlas": null,
  2912. "_id": ""
  2913. },
  2914. {
  2915. "__type__": "cc.CompPrefabInfo",
  2916. "fileId": "e7/2BCs/pHapWsXl0vuxEJ"
  2917. },
  2918. {
  2919. "__type__": "cc.PrefabInfo",
  2920. "root": {
  2921. "__id__": 1
  2922. },
  2923. "asset": {
  2924. "__id__": 0
  2925. },
  2926. "fileId": "caCC/2xvNJzajP4A4WJzBh",
  2927. "instance": null,
  2928. "targetOverrides": null,
  2929. "nestedPrefabInstanceRoots": null
  2930. },
  2931. {
  2932. "__type__": "cc.Node",
  2933. "_name": "vertical_line2",
  2934. "_objFlags": 0,
  2935. "__editorExtras__": {},
  2936. "_parent": {
  2937. "__id__": 46
  2938. },
  2939. "_children": [],
  2940. "_active": true,
  2941. "_components": [
  2942. {
  2943. "__id__": 148
  2944. },
  2945. {
  2946. "__id__": 150
  2947. }
  2948. ],
  2949. "_prefab": {
  2950. "__id__": 152
  2951. },
  2952. "_lpos": {
  2953. "__type__": "cc.Vec3",
  2954. "x": -246.682,
  2955. "y": -389.982,
  2956. "z": 0
  2957. },
  2958. "_lrot": {
  2959. "__type__": "cc.Quat",
  2960. "x": 0,
  2961. "y": 0,
  2962. "z": 0,
  2963. "w": 1
  2964. },
  2965. "_lscale": {
  2966. "__type__": "cc.Vec3",
  2967. "x": 1,
  2968. "y": 1,
  2969. "z": 1
  2970. },
  2971. "_mobility": 0,
  2972. "_layer": 33554432,
  2973. "_euler": {
  2974. "__type__": "cc.Vec3",
  2975. "x": 0,
  2976. "y": 0,
  2977. "z": 0
  2978. },
  2979. "_id": ""
  2980. },
  2981. {
  2982. "__type__": "cc.UITransform",
  2983. "_name": "",
  2984. "_objFlags": 0,
  2985. "__editorExtras__": {},
  2986. "node": {
  2987. "__id__": 147
  2988. },
  2989. "_enabled": true,
  2990. "__prefab": {
  2991. "__id__": 149
  2992. },
  2993. "_contentSize": {
  2994. "__type__": "cc.Size",
  2995. "width": 4,
  2996. "height": 87
  2997. },
  2998. "_anchorPoint": {
  2999. "__type__": "cc.Vec2",
  3000. "x": 0.5,
  3001. "y": 0.5
  3002. },
  3003. "_id": ""
  3004. },
  3005. {
  3006. "__type__": "cc.CompPrefabInfo",
  3007. "fileId": "75wjB/F8VO9L29DQfuu0bm"
  3008. },
  3009. {
  3010. "__type__": "cc.Sprite",
  3011. "_name": "",
  3012. "_objFlags": 0,
  3013. "__editorExtras__": {},
  3014. "node": {
  3015. "__id__": 147
  3016. },
  3017. "_enabled": true,
  3018. "__prefab": {
  3019. "__id__": 151
  3020. },
  3021. "_customMaterial": null,
  3022. "_srcBlendFactor": 2,
  3023. "_dstBlendFactor": 4,
  3024. "_color": {
  3025. "__type__": "cc.Color",
  3026. "r": 255,
  3027. "g": 255,
  3028. "b": 255,
  3029. "a": 255
  3030. },
  3031. "_spriteFrame": {
  3032. "__uuid__": "d3760a69-d14a-469c-bb11-a8339607edf4@f9941",
  3033. "__expectedType__": "cc.SpriteFrame"
  3034. },
  3035. "_type": 0,
  3036. "_fillType": 0,
  3037. "_sizeMode": 1,
  3038. "_fillCenter": {
  3039. "__type__": "cc.Vec2",
  3040. "x": 0,
  3041. "y": 0
  3042. },
  3043. "_fillStart": 0,
  3044. "_fillRange": 0,
  3045. "_isTrimmedMode": true,
  3046. "_useGrayscale": false,
  3047. "_atlas": null,
  3048. "_id": ""
  3049. },
  3050. {
  3051. "__type__": "cc.CompPrefabInfo",
  3052. "fileId": "56OL0r561OGK0u1pmEkc0T"
  3053. },
  3054. {
  3055. "__type__": "cc.PrefabInfo",
  3056. "root": {
  3057. "__id__": 1
  3058. },
  3059. "asset": {
  3060. "__id__": 0
  3061. },
  3062. "fileId": "059AgpAUFOjaUK01B0PsQk",
  3063. "instance": null,
  3064. "targetOverrides": null,
  3065. "nestedPrefabInstanceRoots": null
  3066. },
  3067. {
  3068. "__type__": "cc.Node",
  3069. "_objFlags": 0,
  3070. "_parent": {
  3071. "__id__": 46
  3072. },
  3073. "_prefab": {
  3074. "__id__": 154
  3075. },
  3076. "__editorExtras__": {}
  3077. },
  3078. {
  3079. "__type__": "cc.PrefabInfo",
  3080. "root": {
  3081. "__id__": 153
  3082. },
  3083. "asset": {
  3084. "__uuid__": "562a487b-72a8-4f11-9780-615016a93316",
  3085. "__expectedType__": "cc.Prefab"
  3086. },
  3087. "fileId": "96CGE5Ft9DJrhNlL7I8PHH",
  3088. "instance": {
  3089. "__id__": 155
  3090. },
  3091. "targetOverrides": null
  3092. },
  3093. {
  3094. "__type__": "cc.PrefabInstance",
  3095. "fileId": "88uP7aVN5BBaAAE/EQwB6T",
  3096. "prefabRootNode": {
  3097. "__id__": 1
  3098. },
  3099. "mountedChildren": [
  3100. {
  3101. "__id__": 156
  3102. }
  3103. ],
  3104. "mountedComponents": [],
  3105. "propertyOverrides": [
  3106. {
  3107. "__id__": 166
  3108. },
  3109. {
  3110. "__id__": 168
  3111. },
  3112. {
  3113. "__id__": 169
  3114. },
  3115. {
  3116. "__id__": 170
  3117. },
  3118. {
  3119. "__id__": 171
  3120. },
  3121. {
  3122. "__id__": 173
  3123. },
  3124. {
  3125. "__id__": 175
  3126. },
  3127. {
  3128. "__id__": 177
  3129. },
  3130. {
  3131. "__id__": 179
  3132. },
  3133. {
  3134. "__id__": 181
  3135. }
  3136. ],
  3137. "removedComponents": []
  3138. },
  3139. {
  3140. "__type__": "cc.MountedChildrenInfo",
  3141. "targetInfo": {
  3142. "__id__": 157
  3143. },
  3144. "nodes": [
  3145. {
  3146. "__id__": 158
  3147. }
  3148. ]
  3149. },
  3150. {
  3151. "__type__": "cc.TargetInfo",
  3152. "localID": [
  3153. "96CGE5Ft9DJrhNlL7I8PHH"
  3154. ]
  3155. },
  3156. {
  3157. "__type__": "cc.Node",
  3158. "_name": "RichText",
  3159. "_objFlags": 0,
  3160. "__editorExtras__": {
  3161. "mountedRoot": {
  3162. "__id__": 153
  3163. }
  3164. },
  3165. "_parent": {
  3166. "__id__": 153
  3167. },
  3168. "_children": [],
  3169. "_active": true,
  3170. "_components": [
  3171. {
  3172. "__id__": 159
  3173. },
  3174. {
  3175. "__id__": 161
  3176. },
  3177. {
  3178. "__id__": 163
  3179. }
  3180. ],
  3181. "_prefab": {
  3182. "__id__": 165
  3183. },
  3184. "_lpos": {
  3185. "__type__": "cc.Vec3",
  3186. "x": 266,
  3187. "y": 15.576,
  3188. "z": 0
  3189. },
  3190. "_lrot": {
  3191. "__type__": "cc.Quat",
  3192. "x": 0,
  3193. "y": 0,
  3194. "z": 0,
  3195. "w": 1
  3196. },
  3197. "_lscale": {
  3198. "__type__": "cc.Vec3",
  3199. "x": 1,
  3200. "y": 1,
  3201. "z": 1
  3202. },
  3203. "_mobility": 0,
  3204. "_layer": 33554432,
  3205. "_euler": {
  3206. "__type__": "cc.Vec3",
  3207. "x": 0,
  3208. "y": 0,
  3209. "z": 0
  3210. },
  3211. "_id": ""
  3212. },
  3213. {
  3214. "__type__": "cc.UITransform",
  3215. "_name": "",
  3216. "_objFlags": 0,
  3217. "__editorExtras__": {},
  3218. "node": {
  3219. "__id__": 158
  3220. },
  3221. "_enabled": true,
  3222. "__prefab": {
  3223. "__id__": 160
  3224. },
  3225. "_contentSize": {
  3226. "__type__": "cc.Size",
  3227. "width": 440,
  3228. "height": 146.7
  3229. },
  3230. "_anchorPoint": {
  3231. "__type__": "cc.Vec2",
  3232. "x": 0.5,
  3233. "y": 1
  3234. },
  3235. "_id": ""
  3236. },
  3237. {
  3238. "__type__": "cc.CompPrefabInfo",
  3239. "fileId": "deQ65JKUpPdpbN2M49r/1S"
  3240. },
  3241. {
  3242. "__type__": "cc.RichText",
  3243. "_name": "",
  3244. "_objFlags": 0,
  3245. "__editorExtras__": {},
  3246. "node": {
  3247. "__id__": 158
  3248. },
  3249. "_enabled": true,
  3250. "__prefab": {
  3251. "__id__": 162
  3252. },
  3253. "_lineHeight": 45,
  3254. "_string": "{{0}}元到账微信平台,等待打款<color =#202020080>微信微信大额转账收取大额转账手续费</color><color=#C13935>{{1}}元</color><color =#202020080>,微信到账</color><color=#C13935>{{2}}元</color>",
  3255. "_horizontalAlign": 0,
  3256. "_verticalAlign": 0,
  3257. "_fontSize": 28,
  3258. "_fontColor": {
  3259. "__type__": "cc.Color",
  3260. "r": 32,
  3261. "g": 32,
  3262. "b": 32,
  3263. "a": 255
  3264. },
  3265. "_maxWidth": 440,
  3266. "_fontFamily": "Arial",
  3267. "_font": null,
  3268. "_isSystemFontUsed": true,
  3269. "_userDefinedFont": null,
  3270. "_cacheMode": 0,
  3271. "_imageAtlas": null,
  3272. "_handleTouchEvent": true,
  3273. "_id": ""
  3274. },
  3275. {
  3276. "__type__": "cc.CompPrefabInfo",
  3277. "fileId": "cd1+FGcJxMp4F7a+bcZlOk"
  3278. },
  3279. {
  3280. "__type__": "545c05XsG9GDJispEGWKvYv",
  3281. "_name": "",
  3282. "_objFlags": 0,
  3283. "__editorExtras__": {},
  3284. "node": {
  3285. "__id__": 158
  3286. },
  3287. "_enabled": true,
  3288. "__prefab": {
  3289. "__id__": 164
  3290. },
  3291. "templateMode": true,
  3292. "watchPath": "",
  3293. "labelType": "cc.RichText",
  3294. "watchPathArr": [
  3295. "*.money",
  3296. "*.cost",
  3297. "*.money"
  3298. ],
  3299. "_id": ""
  3300. },
  3301. {
  3302. "__type__": "cc.CompPrefabInfo",
  3303. "fileId": "48PJwnv2lAK4ZMB/PQ9GqL"
  3304. },
  3305. {
  3306. "__type__": "cc.PrefabInfo",
  3307. "root": {
  3308. "__id__": 1
  3309. },
  3310. "asset": {
  3311. "__id__": 0
  3312. },
  3313. "fileId": "cfRFNOs+1DSJd1nPQSB+mI",
  3314. "instance": null,
  3315. "targetOverrides": null,
  3316. "nestedPrefabInstanceRoots": null
  3317. },
  3318. {
  3319. "__type__": "CCPropertyOverrideInfo",
  3320. "targetInfo": {
  3321. "__id__": 167
  3322. },
  3323. "propertyPath": [
  3324. "_name"
  3325. ],
  3326. "value": "stateItem-004"
  3327. },
  3328. {
  3329. "__type__": "cc.TargetInfo",
  3330. "localID": [
  3331. "96CGE5Ft9DJrhNlL7I8PHH"
  3332. ]
  3333. },
  3334. {
  3335. "__type__": "CCPropertyOverrideInfo",
  3336. "targetInfo": {
  3337. "__id__": 167
  3338. },
  3339. "propertyPath": [
  3340. "_lpos"
  3341. ],
  3342. "value": {
  3343. "__type__": "cc.Vec3",
  3344. "x": -264.368,
  3345. "y": -316.155,
  3346. "z": 0
  3347. }
  3348. },
  3349. {
  3350. "__type__": "CCPropertyOverrideInfo",
  3351. "targetInfo": {
  3352. "__id__": 167
  3353. },
  3354. "propertyPath": [
  3355. "_lrot"
  3356. ],
  3357. "value": {
  3358. "__type__": "cc.Quat",
  3359. "x": 0,
  3360. "y": 0,
  3361. "z": 0,
  3362. "w": 1
  3363. }
  3364. },
  3365. {
  3366. "__type__": "CCPropertyOverrideInfo",
  3367. "targetInfo": {
  3368. "__id__": 167
  3369. },
  3370. "propertyPath": [
  3371. "_euler"
  3372. ],
  3373. "value": {
  3374. "__type__": "cc.Vec3",
  3375. "x": 0,
  3376. "y": 0,
  3377. "z": 0
  3378. }
  3379. },
  3380. {
  3381. "__type__": "CCPropertyOverrideInfo",
  3382. "targetInfo": {
  3383. "__id__": 172
  3384. },
  3385. "propertyPath": [
  3386. "_string"
  3387. ],
  3388. "value": "银行已打款"
  3389. },
  3390. {
  3391. "__type__": "cc.TargetInfo",
  3392. "localID": [
  3393. "3bFx/A3BFG7INkIeR2MKMq"
  3394. ]
  3395. },
  3396. {
  3397. "__type__": "CCPropertyOverrideInfo",
  3398. "targetInfo": {
  3399. "__id__": 174
  3400. },
  3401. "propertyPath": [
  3402. "_contentSize"
  3403. ],
  3404. "value": {
  3405. "__type__": "cc.Size",
  3406. "width": 140,
  3407. "height": 50.4
  3408. }
  3409. },
  3410. {
  3411. "__type__": "cc.TargetInfo",
  3412. "localID": [
  3413. "79ROtSCQ9DyIt7yOKW92RS"
  3414. ]
  3415. },
  3416. {
  3417. "__type__": "CCPropertyOverrideInfo",
  3418. "targetInfo": {
  3419. "__id__": 176
  3420. },
  3421. "propertyPath": [
  3422. "_lpos"
  3423. ],
  3424. "value": {
  3425. "__type__": "cc.Vec3",
  3426. "x": 18,
  3427. "y": 0,
  3428. "z": 0
  3429. }
  3430. },
  3431. {
  3432. "__type__": "cc.TargetInfo",
  3433. "localID": [
  3434. "c7yNhRpMRGOLUmmiRue+5G"
  3435. ]
  3436. },
  3437. {
  3438. "__type__": "CCPropertyOverrideInfo",
  3439. "targetInfo": {
  3440. "__id__": 178
  3441. },
  3442. "propertyPath": [
  3443. "_contentSize"
  3444. ],
  3445. "value": {
  3446. "__type__": "cc.Size",
  3447. "width": 486,
  3448. "height": 36
  3449. }
  3450. },
  3451. {
  3452. "__type__": "cc.TargetInfo",
  3453. "localID": [
  3454. "e0Dz3xLbFGqYaCoVHqF758"
  3455. ]
  3456. },
  3457. {
  3458. "__type__": "CCPropertyOverrideInfo",
  3459. "targetInfo": {
  3460. "__id__": 180
  3461. },
  3462. "propertyPath": [
  3463. "_lpos"
  3464. ],
  3465. "value": {
  3466. "__type__": "cc.Vec3",
  3467. "x": 116,
  3468. "y": 0,
  3469. "z": 0
  3470. }
  3471. },
  3472. {
  3473. "__type__": "cc.TargetInfo",
  3474. "localID": [
  3475. "33vCUmTqhEDZ63YrwTIIq1"
  3476. ]
  3477. },
  3478. {
  3479. "__type__": "CCPropertyOverrideInfo",
  3480. "targetInfo": {
  3481. "__id__": 180
  3482. },
  3483. "propertyPath": [
  3484. "_active"
  3485. ],
  3486. "value": false
  3487. },
  3488. {
  3489. "__type__": "cc.Node",
  3490. "_objFlags": 0,
  3491. "_parent": {
  3492. "__id__": 46
  3493. },
  3494. "_prefab": {
  3495. "__id__": 183
  3496. },
  3497. "__editorExtras__": {}
  3498. },
  3499. {
  3500. "__type__": "cc.PrefabInfo",
  3501. "root": {
  3502. "__id__": 182
  3503. },
  3504. "asset": {
  3505. "__uuid__": "562a487b-72a8-4f11-9780-615016a93316",
  3506. "__expectedType__": "cc.Prefab"
  3507. },
  3508. "fileId": "96CGE5Ft9DJrhNlL7I8PHH",
  3509. "instance": {
  3510. "__id__": 184
  3511. },
  3512. "targetOverrides": null
  3513. },
  3514. {
  3515. "__type__": "cc.PrefabInstance",
  3516. "fileId": "3cDDycGjtAMIianfyPLPCA",
  3517. "prefabRootNode": {
  3518. "__id__": 1
  3519. },
  3520. "mountedChildren": [],
  3521. "mountedComponents": [],
  3522. "propertyOverrides": [
  3523. {
  3524. "__id__": 185
  3525. },
  3526. {
  3527. "__id__": 187
  3528. },
  3529. {
  3530. "__id__": 188
  3531. },
  3532. {
  3533. "__id__": 189
  3534. },
  3535. {
  3536. "__id__": 190
  3537. },
  3538. {
  3539. "__id__": 192
  3540. },
  3541. {
  3542. "__id__": 194
  3543. },
  3544. {
  3545. "__id__": 196
  3546. },
  3547. {
  3548. "__id__": 198
  3549. }
  3550. ],
  3551. "removedComponents": []
  3552. },
  3553. {
  3554. "__type__": "CCPropertyOverrideInfo",
  3555. "targetInfo": {
  3556. "__id__": 186
  3557. },
  3558. "propertyPath": [
  3559. "_name"
  3560. ],
  3561. "value": "stateItem-005"
  3562. },
  3563. {
  3564. "__type__": "cc.TargetInfo",
  3565. "localID": [
  3566. "96CGE5Ft9DJrhNlL7I8PHH"
  3567. ]
  3568. },
  3569. {
  3570. "__type__": "CCPropertyOverrideInfo",
  3571. "targetInfo": {
  3572. "__id__": 186
  3573. },
  3574. "propertyPath": [
  3575. "_lpos"
  3576. ],
  3577. "value": {
  3578. "__type__": "cc.Vec3",
  3579. "x": -264.368,
  3580. "y": -464.377,
  3581. "z": 0
  3582. }
  3583. },
  3584. {
  3585. "__type__": "CCPropertyOverrideInfo",
  3586. "targetInfo": {
  3587. "__id__": 186
  3588. },
  3589. "propertyPath": [
  3590. "_lrot"
  3591. ],
  3592. "value": {
  3593. "__type__": "cc.Quat",
  3594. "x": 0,
  3595. "y": 0,
  3596. "z": 0,
  3597. "w": 1
  3598. }
  3599. },
  3600. {
  3601. "__type__": "CCPropertyOverrideInfo",
  3602. "targetInfo": {
  3603. "__id__": 186
  3604. },
  3605. "propertyPath": [
  3606. "_euler"
  3607. ],
  3608. "value": {
  3609. "__type__": "cc.Vec3",
  3610. "x": 0,
  3611. "y": 0,
  3612. "z": 0
  3613. }
  3614. },
  3615. {
  3616. "__type__": "CCPropertyOverrideInfo",
  3617. "targetInfo": {
  3618. "__id__": 191
  3619. },
  3620. "propertyPath": [
  3621. "_string"
  3622. ],
  3623. "value": "提现成功,到账微信零钱"
  3624. },
  3625. {
  3626. "__type__": "cc.TargetInfo",
  3627. "localID": [
  3628. "3bFx/A3BFG7INkIeR2MKMq"
  3629. ]
  3630. },
  3631. {
  3632. "__type__": "CCPropertyOverrideInfo",
  3633. "targetInfo": {
  3634. "__id__": 193
  3635. },
  3636. "propertyPath": [
  3637. "_contentSize"
  3638. ],
  3639. "value": {
  3640. "__type__": "cc.Size",
  3641. "width": 308,
  3642. "height": 50.4
  3643. }
  3644. },
  3645. {
  3646. "__type__": "cc.TargetInfo",
  3647. "localID": [
  3648. "79ROtSCQ9DyIt7yOKW92RS"
  3649. ]
  3650. },
  3651. {
  3652. "__type__": "CCPropertyOverrideInfo",
  3653. "targetInfo": {
  3654. "__id__": 195
  3655. },
  3656. "propertyPath": [
  3657. "_lpos"
  3658. ],
  3659. "value": {
  3660. "__type__": "cc.Vec3",
  3661. "x": 18,
  3662. "y": 0,
  3663. "z": 0
  3664. }
  3665. },
  3666. {
  3667. "__type__": "cc.TargetInfo",
  3668. "localID": [
  3669. "c7yNhRpMRGOLUmmiRue+5G"
  3670. ]
  3671. },
  3672. {
  3673. "__type__": "CCPropertyOverrideInfo",
  3674. "targetInfo": {
  3675. "__id__": 197
  3676. },
  3677. "propertyPath": [
  3678. "_contentSize"
  3679. ],
  3680. "value": {
  3681. "__type__": "cc.Size",
  3682. "width": 354,
  3683. "height": 36
  3684. }
  3685. },
  3686. {
  3687. "__type__": "cc.TargetInfo",
  3688. "localID": [
  3689. "e0Dz3xLbFGqYaCoVHqF758"
  3690. ]
  3691. },
  3692. {
  3693. "__type__": "CCPropertyOverrideInfo",
  3694. "targetInfo": {
  3695. "__id__": 199
  3696. },
  3697. "propertyPath": [
  3698. "_lpos"
  3699. ],
  3700. "value": {
  3701. "__type__": "cc.Vec3",
  3702. "x": 200,
  3703. "y": 0,
  3704. "z": 0
  3705. }
  3706. },
  3707. {
  3708. "__type__": "cc.TargetInfo",
  3709. "localID": [
  3710. "33vCUmTqhEDZ63YrwTIIq1"
  3711. ]
  3712. },
  3713. {
  3714. "__type__": "cc.UITransform",
  3715. "_name": "",
  3716. "_objFlags": 0,
  3717. "__editorExtras__": {},
  3718. "node": {
  3719. "__id__": 46
  3720. },
  3721. "_enabled": true,
  3722. "__prefab": {
  3723. "__id__": 201
  3724. },
  3725. "_contentSize": {
  3726. "__type__": "cc.Size",
  3727. "width": 600,
  3728. "height": 500
  3729. },
  3730. "_anchorPoint": {
  3731. "__type__": "cc.Vec2",
  3732. "x": 0.5,
  3733. "y": 1
  3734. },
  3735. "_id": ""
  3736. },
  3737. {
  3738. "__type__": "cc.CompPrefabInfo",
  3739. "fileId": "9cuqp9vOVOZqqQndvn+ISx"
  3740. },
  3741. {
  3742. "__type__": "cc.Mask",
  3743. "_name": "",
  3744. "_objFlags": 0,
  3745. "__editorExtras__": {},
  3746. "node": {
  3747. "__id__": 46
  3748. },
  3749. "_enabled": true,
  3750. "__prefab": {
  3751. "__id__": 203
  3752. },
  3753. "_type": 0,
  3754. "_inverted": false,
  3755. "_segments": 64,
  3756. "_alphaThreshold": 0.1,
  3757. "_id": ""
  3758. },
  3759. {
  3760. "__type__": "cc.CompPrefabInfo",
  3761. "fileId": "f9v/iGKS1CaKxK3MspDZxB"
  3762. },
  3763. {
  3764. "__type__": "cc.Graphics",
  3765. "_name": "",
  3766. "_objFlags": 0,
  3767. "__editorExtras__": {},
  3768. "node": {
  3769. "__id__": 46
  3770. },
  3771. "_enabled": true,
  3772. "__prefab": {
  3773. "__id__": 205
  3774. },
  3775. "_customMaterial": null,
  3776. "_srcBlendFactor": 2,
  3777. "_dstBlendFactor": 4,
  3778. "_color": {
  3779. "__type__": "cc.Color",
  3780. "r": 255,
  3781. "g": 255,
  3782. "b": 255,
  3783. "a": 255
  3784. },
  3785. "_lineWidth": 1,
  3786. "_strokeColor": {
  3787. "__type__": "cc.Color",
  3788. "r": 0,
  3789. "g": 0,
  3790. "b": 0,
  3791. "a": 255
  3792. },
  3793. "_lineJoin": 2,
  3794. "_lineCap": 0,
  3795. "_fillColor": {
  3796. "__type__": "cc.Color",
  3797. "r": 255,
  3798. "g": 255,
  3799. "b": 255,
  3800. "a": 0
  3801. },
  3802. "_miterLimit": 10,
  3803. "_id": ""
  3804. },
  3805. {
  3806. "__type__": "cc.CompPrefabInfo",
  3807. "fileId": "7092ott4VIcpndxy/yNyHU"
  3808. },
  3809. {
  3810. "__type__": "cc.Animation",
  3811. "_name": "",
  3812. "_objFlags": 0,
  3813. "__editorExtras__": {},
  3814. "node": {
  3815. "__id__": 46
  3816. },
  3817. "_enabled": true,
  3818. "__prefab": {
  3819. "__id__": 207
  3820. },
  3821. "playOnLoad": true,
  3822. "_clips": [
  3823. {
  3824. "__uuid__": "8f595352-3f1c-4255-ab0b-29b4c96a80a9",
  3825. "__expectedType__": "cc.AnimationClip"
  3826. }
  3827. ],
  3828. "_defaultClip": {
  3829. "__uuid__": "8f595352-3f1c-4255-ab0b-29b4c96a80a9",
  3830. "__expectedType__": "cc.AnimationClip"
  3831. },
  3832. "_id": ""
  3833. },
  3834. {
  3835. "__type__": "cc.CompPrefabInfo",
  3836. "fileId": "fds2wTDrpKG5Ck05y8E1KW"
  3837. },
  3838. {
  3839. "__type__": "cc.PrefabInfo",
  3840. "root": {
  3841. "__id__": 1
  3842. },
  3843. "asset": {
  3844. "__id__": 0
  3845. },
  3846. "fileId": "a69p2bCExKVrrxzlONY3ZI",
  3847. "instance": null,
  3848. "targetOverrides": null,
  3849. "nestedPrefabInstanceRoots": null
  3850. },
  3851. {
  3852. "__type__": "cc.Node",
  3853. "_name": "btn_continue",
  3854. "_objFlags": 0,
  3855. "__editorExtras__": {},
  3856. "_parent": {
  3857. "__id__": 3
  3858. },
  3859. "_children": [
  3860. {
  3861. "__id__": 210
  3862. }
  3863. ],
  3864. "_active": true,
  3865. "_components": [
  3866. {
  3867. "__id__": 216
  3868. },
  3869. {
  3870. "__id__": 218
  3871. },
  3872. {
  3873. "__id__": 220
  3874. }
  3875. ],
  3876. "_prefab": {
  3877. "__id__": 222
  3878. },
  3879. "_lpos": {
  3880. "__type__": "cc.Vec3",
  3881. "x": -5,
  3882. "y": -528.93,
  3883. "z": 0
  3884. },
  3885. "_lrot": {
  3886. "__type__": "cc.Quat",
  3887. "x": 0,
  3888. "y": 0,
  3889. "z": 0,
  3890. "w": 1
  3891. },
  3892. "_lscale": {
  3893. "__type__": "cc.Vec3",
  3894. "x": 1,
  3895. "y": 1,
  3896. "z": 1
  3897. },
  3898. "_mobility": 0,
  3899. "_layer": 33554432,
  3900. "_euler": {
  3901. "__type__": "cc.Vec3",
  3902. "x": 0,
  3903. "y": 0,
  3904. "z": 0
  3905. },
  3906. "_id": ""
  3907. },
  3908. {
  3909. "__type__": "cc.Node",
  3910. "_name": "Label",
  3911. "_objFlags": 0,
  3912. "__editorExtras__": {},
  3913. "_parent": {
  3914. "__id__": 209
  3915. },
  3916. "_children": [],
  3917. "_active": true,
  3918. "_components": [
  3919. {
  3920. "__id__": 211
  3921. },
  3922. {
  3923. "__id__": 213
  3924. }
  3925. ],
  3926. "_prefab": {
  3927. "__id__": 215
  3928. },
  3929. "_lpos": {
  3930. "__type__": "cc.Vec3",
  3931. "x": 0,
  3932. "y": 5.601,
  3933. "z": 0
  3934. },
  3935. "_lrot": {
  3936. "__type__": "cc.Quat",
  3937. "x": 0,
  3938. "y": 0,
  3939. "z": 0,
  3940. "w": 1
  3941. },
  3942. "_lscale": {
  3943. "__type__": "cc.Vec3",
  3944. "x": 1,
  3945. "y": 1,
  3946. "z": 1
  3947. },
  3948. "_mobility": 0,
  3949. "_layer": 33554432,
  3950. "_euler": {
  3951. "__type__": "cc.Vec3",
  3952. "x": 0,
  3953. "y": 0,
  3954. "z": 0
  3955. },
  3956. "_id": ""
  3957. },
  3958. {
  3959. "__type__": "cc.UITransform",
  3960. "_name": "",
  3961. "_objFlags": 0,
  3962. "__editorExtras__": {},
  3963. "node": {
  3964. "__id__": 210
  3965. },
  3966. "_enabled": true,
  3967. "__prefab": {
  3968. "__id__": 212
  3969. },
  3970. "_contentSize": {
  3971. "__type__": "cc.Size",
  3972. "width": 200,
  3973. "height": 60
  3974. },
  3975. "_anchorPoint": {
  3976. "__type__": "cc.Vec2",
  3977. "x": 0.5,
  3978. "y": 0.5
  3979. },
  3980. "_id": ""
  3981. },
  3982. {
  3983. "__type__": "cc.CompPrefabInfo",
  3984. "fileId": "4atLPvVwdE2Ijd18tOwSpQ"
  3985. },
  3986. {
  3987. "__type__": "cc.Label",
  3988. "_name": "",
  3989. "_objFlags": 0,
  3990. "__editorExtras__": {},
  3991. "node": {
  3992. "__id__": 210
  3993. },
  3994. "_enabled": true,
  3995. "__prefab": {
  3996. "__id__": 214
  3997. },
  3998. "_customMaterial": null,
  3999. "_srcBlendFactor": 2,
  4000. "_dstBlendFactor": 4,
  4001. "_color": {
  4002. "__type__": "cc.Color",
  4003. "r": 255,
  4004. "g": 255,
  4005. "b": 255,
  4006. "a": 255
  4007. },
  4008. "_string": "继续赚钱",
  4009. "_horizontalAlign": 1,
  4010. "_verticalAlign": 1,
  4011. "_actualFontSize": 48,
  4012. "_fontSize": 48,
  4013. "_fontFamily": "Arial",
  4014. "_lineHeight": 48,
  4015. "_overflow": 1,
  4016. "_enableWrapText": false,
  4017. "_font": null,
  4018. "_isSystemFontUsed": true,
  4019. "_spacingX": 0,
  4020. "_isItalic": false,
  4021. "_isBold": true,
  4022. "_isUnderline": false,
  4023. "_underlineHeight": 2,
  4024. "_cacheMode": 0,
  4025. "_enableOutline": true,
  4026. "_outlineColor": {
  4027. "__type__": "cc.Color",
  4028. "r": 88,
  4029. "g": 42,
  4030. "b": 9,
  4031. "a": 255
  4032. },
  4033. "_outlineWidth": 4,
  4034. "_enableShadow": false,
  4035. "_shadowColor": {
  4036. "__type__": "cc.Color",
  4037. "r": 0,
  4038. "g": 0,
  4039. "b": 0,
  4040. "a": 255
  4041. },
  4042. "_shadowOffset": {
  4043. "__type__": "cc.Vec2",
  4044. "x": 2,
  4045. "y": 2
  4046. },
  4047. "_shadowBlur": 2,
  4048. "_id": ""
  4049. },
  4050. {
  4051. "__type__": "cc.CompPrefabInfo",
  4052. "fileId": "72vNap/KBA0q5btZbP4PxO"
  4053. },
  4054. {
  4055. "__type__": "cc.PrefabInfo",
  4056. "root": {
  4057. "__id__": 1
  4058. },
  4059. "asset": {
  4060. "__id__": 0
  4061. },
  4062. "fileId": "e4io/FUX9H+oih0p1uNEFT",
  4063. "instance": null,
  4064. "targetOverrides": null,
  4065. "nestedPrefabInstanceRoots": null
  4066. },
  4067. {
  4068. "__type__": "cc.UITransform",
  4069. "_name": "",
  4070. "_objFlags": 0,
  4071. "__editorExtras__": {},
  4072. "node": {
  4073. "__id__": 209
  4074. },
  4075. "_enabled": true,
  4076. "__prefab": {
  4077. "__id__": 217
  4078. },
  4079. "_contentSize": {
  4080. "__type__": "cc.Size",
  4081. "width": 562,
  4082. "height": 141
  4083. },
  4084. "_anchorPoint": {
  4085. "__type__": "cc.Vec2",
  4086. "x": 0.5,
  4087. "y": 0.5
  4088. },
  4089. "_id": ""
  4090. },
  4091. {
  4092. "__type__": "cc.CompPrefabInfo",
  4093. "fileId": "81Uy/6zQlJk4MoQQe+5guq"
  4094. },
  4095. {
  4096. "__type__": "cc.Sprite",
  4097. "_name": "",
  4098. "_objFlags": 0,
  4099. "__editorExtras__": {},
  4100. "node": {
  4101. "__id__": 209
  4102. },
  4103. "_enabled": true,
  4104. "__prefab": {
  4105. "__id__": 219
  4106. },
  4107. "_customMaterial": null,
  4108. "_srcBlendFactor": 2,
  4109. "_dstBlendFactor": 4,
  4110. "_color": {
  4111. "__type__": "cc.Color",
  4112. "r": 255,
  4113. "g": 255,
  4114. "b": 255,
  4115. "a": 255
  4116. },
  4117. "_spriteFrame": {
  4118. "__uuid__": "a49999bb-986e-40f5-9a9a-d4171636116f@f9941",
  4119. "__expectedType__": "cc.SpriteFrame"
  4120. },
  4121. "_type": 1,
  4122. "_fillType": 0,
  4123. "_sizeMode": 2,
  4124. "_fillCenter": {
  4125. "__type__": "cc.Vec2",
  4126. "x": 0,
  4127. "y": 0
  4128. },
  4129. "_fillStart": 0,
  4130. "_fillRange": 0,
  4131. "_isTrimmedMode": true,
  4132. "_useGrayscale": false,
  4133. "_atlas": null,
  4134. "_id": ""
  4135. },
  4136. {
  4137. "__type__": "cc.CompPrefabInfo",
  4138. "fileId": "5aWH+XirBKS6ZLfk+tINgv"
  4139. },
  4140. {
  4141. "__type__": "cc.Button",
  4142. "_name": "",
  4143. "_objFlags": 0,
  4144. "__editorExtras__": {},
  4145. "node": {
  4146. "__id__": 209
  4147. },
  4148. "_enabled": true,
  4149. "__prefab": {
  4150. "__id__": 221
  4151. },
  4152. "clickEvents": [],
  4153. "_interactable": true,
  4154. "_transition": 3,
  4155. "_normalColor": {
  4156. "__type__": "cc.Color",
  4157. "r": 214,
  4158. "g": 214,
  4159. "b": 214,
  4160. "a": 255
  4161. },
  4162. "_hoverColor": {
  4163. "__type__": "cc.Color",
  4164. "r": 211,
  4165. "g": 211,
  4166. "b": 211,
  4167. "a": 255
  4168. },
  4169. "_pressedColor": {
  4170. "__type__": "cc.Color",
  4171. "r": 255,
  4172. "g": 255,
  4173. "b": 255,
  4174. "a": 255
  4175. },
  4176. "_disabledColor": {
  4177. "__type__": "cc.Color",
  4178. "r": 124,
  4179. "g": 124,
  4180. "b": 124,
  4181. "a": 255
  4182. },
  4183. "_normalSprite": null,
  4184. "_hoverSprite": null,
  4185. "_pressedSprite": null,
  4186. "_disabledSprite": null,
  4187. "_duration": 0.1,
  4188. "_zoomScale": 1.2,
  4189. "_target": {
  4190. "__id__": 209
  4191. },
  4192. "_id": ""
  4193. },
  4194. {
  4195. "__type__": "cc.CompPrefabInfo",
  4196. "fileId": "11a4Zn0eNMvKFyrX545lfQ"
  4197. },
  4198. {
  4199. "__type__": "cc.PrefabInfo",
  4200. "root": {
  4201. "__id__": 1
  4202. },
  4203. "asset": {
  4204. "__id__": 0
  4205. },
  4206. "fileId": "87RFFBYttJko8Ck0H9acjm",
  4207. "instance": null,
  4208. "targetOverrides": null,
  4209. "nestedPrefabInstanceRoots": null
  4210. },
  4211. {
  4212. "__type__": "cc.UITransform",
  4213. "_name": "",
  4214. "_objFlags": 0,
  4215. "__editorExtras__": {},
  4216. "node": {
  4217. "__id__": 3
  4218. },
  4219. "_enabled": true,
  4220. "__prefab": {
  4221. "__id__": 224
  4222. },
  4223. "_contentSize": {
  4224. "__type__": "cc.Size",
  4225. "width": 638,
  4226. "height": 1200
  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": "210fpBkoBPyrSXteZAwlVn"
  4238. },
  4239. {
  4240. "__type__": "cc.PrefabInfo",
  4241. "root": {
  4242. "__id__": 1
  4243. },
  4244. "asset": {
  4245. "__id__": 0
  4246. },
  4247. "fileId": "17sjbzvYxB/6cUSxyYR+VC",
  4248. "instance": null,
  4249. "targetOverrides": null,
  4250. "nestedPrefabInstanceRoots": null
  4251. },
  4252. {
  4253. "__type__": "cc.UITransform",
  4254. "_name": "",
  4255. "_objFlags": 0,
  4256. "__editorExtras__": {},
  4257. "node": {
  4258. "__id__": 2
  4259. },
  4260. "_enabled": true,
  4261. "__prefab": {
  4262. "__id__": 227
  4263. },
  4264. "_contentSize": {
  4265. "__type__": "cc.Size",
  4266. "width": 720,
  4267. "height": 1300
  4268. },
  4269. "_anchorPoint": {
  4270. "__type__": "cc.Vec2",
  4271. "x": 0.5,
  4272. "y": 0.5
  4273. },
  4274. "_id": ""
  4275. },
  4276. {
  4277. "__type__": "cc.CompPrefabInfo",
  4278. "fileId": "9cPrUUXC5HEqgjxAbgJzYa"
  4279. },
  4280. {
  4281. "__type__": "cc.PrefabInfo",
  4282. "root": {
  4283. "__id__": 1
  4284. },
  4285. "asset": {
  4286. "__id__": 0
  4287. },
  4288. "fileId": "89CVTn3kZLL6zZ+keonTaU",
  4289. "instance": null,
  4290. "targetOverrides": null,
  4291. "nestedPrefabInstanceRoots": null
  4292. },
  4293. {
  4294. "__type__": "cc.Node",
  4295. "_name": "showNode2",
  4296. "_objFlags": 0,
  4297. "__editorExtras__": {},
  4298. "_parent": {
  4299. "__id__": 1
  4300. },
  4301. "_children": [
  4302. {
  4303. "__id__": 230
  4304. },
  4305. {
  4306. "__id__": 236
  4307. },
  4308. {
  4309. "__id__": 244
  4310. },
  4311. {
  4312. "__id__": 250
  4313. },
  4314. {
  4315. "__id__": 264
  4316. },
  4317. {
  4318. "__id__": 270
  4319. }
  4320. ],
  4321. "_active": false,
  4322. "_components": [
  4323. {
  4324. "__id__": 278
  4325. },
  4326. {
  4327. "__id__": 280
  4328. },
  4329. {
  4330. "__id__": 282
  4331. }
  4332. ],
  4333. "_prefab": {
  4334. "__id__": 284
  4335. },
  4336. "_lpos": {
  4337. "__type__": "cc.Vec3",
  4338. "x": 0,
  4339. "y": 0,
  4340. "z": 0
  4341. },
  4342. "_lrot": {
  4343. "__type__": "cc.Quat",
  4344. "x": 0,
  4345. "y": 0,
  4346. "z": 0,
  4347. "w": 1
  4348. },
  4349. "_lscale": {
  4350. "__type__": "cc.Vec3",
  4351. "x": 1,
  4352. "y": 1,
  4353. "z": 1
  4354. },
  4355. "_mobility": 0,
  4356. "_layer": 33554432,
  4357. "_euler": {
  4358. "__type__": "cc.Vec3",
  4359. "x": 0,
  4360. "y": 0,
  4361. "z": 0
  4362. },
  4363. "_id": ""
  4364. },
  4365. {
  4366. "__type__": "cc.Node",
  4367. "_name": "icon_aqyz",
  4368. "_objFlags": 0,
  4369. "__editorExtras__": {},
  4370. "_parent": {
  4371. "__id__": 229
  4372. },
  4373. "_children": [],
  4374. "_active": true,
  4375. "_components": [
  4376. {
  4377. "__id__": 231
  4378. },
  4379. {
  4380. "__id__": 233
  4381. }
  4382. ],
  4383. "_prefab": {
  4384. "__id__": 235
  4385. },
  4386. "_lpos": {
  4387. "__type__": "cc.Vec3",
  4388. "x": 0,
  4389. "y": 299.964,
  4390. "z": 0
  4391. },
  4392. "_lrot": {
  4393. "__type__": "cc.Quat",
  4394. "x": 0,
  4395. "y": 0,
  4396. "z": 0,
  4397. "w": 1
  4398. },
  4399. "_lscale": {
  4400. "__type__": "cc.Vec3",
  4401. "x": 1,
  4402. "y": 1,
  4403. "z": 1
  4404. },
  4405. "_mobility": 0,
  4406. "_layer": 33554432,
  4407. "_euler": {
  4408. "__type__": "cc.Vec3",
  4409. "x": 0,
  4410. "y": 0,
  4411. "z": 0
  4412. },
  4413. "_id": ""
  4414. },
  4415. {
  4416. "__type__": "cc.UITransform",
  4417. "_name": "",
  4418. "_objFlags": 0,
  4419. "__editorExtras__": {},
  4420. "node": {
  4421. "__id__": 230
  4422. },
  4423. "_enabled": true,
  4424. "__prefab": {
  4425. "__id__": 232
  4426. },
  4427. "_contentSize": {
  4428. "__type__": "cc.Size",
  4429. "width": 110,
  4430. "height": 140
  4431. },
  4432. "_anchorPoint": {
  4433. "__type__": "cc.Vec2",
  4434. "x": 0.5,
  4435. "y": 0.5
  4436. },
  4437. "_id": ""
  4438. },
  4439. {
  4440. "__type__": "cc.CompPrefabInfo",
  4441. "fileId": "23ZwPGCC9DM7Zo6unuxu8x"
  4442. },
  4443. {
  4444. "__type__": "cc.Sprite",
  4445. "_name": "",
  4446. "_objFlags": 0,
  4447. "__editorExtras__": {},
  4448. "node": {
  4449. "__id__": 230
  4450. },
  4451. "_enabled": true,
  4452. "__prefab": {
  4453. "__id__": 234
  4454. },
  4455. "_customMaterial": null,
  4456. "_srcBlendFactor": 2,
  4457. "_dstBlendFactor": 4,
  4458. "_color": {
  4459. "__type__": "cc.Color",
  4460. "r": 255,
  4461. "g": 255,
  4462. "b": 255,
  4463. "a": 255
  4464. },
  4465. "_spriteFrame": {
  4466. "__uuid__": "0b742203-3402-4369-afb0-93a1885fc3a7@f9941",
  4467. "__expectedType__": "cc.SpriteFrame"
  4468. },
  4469. "_type": 0,
  4470. "_fillType": 0,
  4471. "_sizeMode": 1,
  4472. "_fillCenter": {
  4473. "__type__": "cc.Vec2",
  4474. "x": 0,
  4475. "y": 0
  4476. },
  4477. "_fillStart": 0,
  4478. "_fillRange": 0,
  4479. "_isTrimmedMode": true,
  4480. "_useGrayscale": false,
  4481. "_atlas": null,
  4482. "_id": ""
  4483. },
  4484. {
  4485. "__type__": "cc.CompPrefabInfo",
  4486. "fileId": "dezaAKL8ZKIrxZV+GHLBvB"
  4487. },
  4488. {
  4489. "__type__": "cc.PrefabInfo",
  4490. "root": {
  4491. "__id__": 1
  4492. },
  4493. "asset": {
  4494. "__id__": 0
  4495. },
  4496. "fileId": "39rVd10itPRJPekNgy7jMh",
  4497. "instance": null,
  4498. "targetOverrides": null,
  4499. "nestedPrefabInstanceRoots": null
  4500. },
  4501. {
  4502. "__type__": "cc.Node",
  4503. "_name": "btn_verifyClose",
  4504. "_objFlags": 0,
  4505. "__editorExtras__": {},
  4506. "_parent": {
  4507. "__id__": 229
  4508. },
  4509. "_children": [],
  4510. "_active": true,
  4511. "_components": [
  4512. {
  4513. "__id__": 237
  4514. },
  4515. {
  4516. "__id__": 239
  4517. },
  4518. {
  4519. "__id__": 241
  4520. }
  4521. ],
  4522. "_prefab": {
  4523. "__id__": 243
  4524. },
  4525. "_lpos": {
  4526. "__type__": "cc.Vec3",
  4527. "x": 292.455,
  4528. "y": 396.147,
  4529. "z": 0
  4530. },
  4531. "_lrot": {
  4532. "__type__": "cc.Quat",
  4533. "x": 0,
  4534. "y": 0,
  4535. "z": 0,
  4536. "w": 1
  4537. },
  4538. "_lscale": {
  4539. "__type__": "cc.Vec3",
  4540. "x": 1,
  4541. "y": 1,
  4542. "z": 1
  4543. },
  4544. "_mobility": 0,
  4545. "_layer": 33554432,
  4546. "_euler": {
  4547. "__type__": "cc.Vec3",
  4548. "x": 0,
  4549. "y": 0,
  4550. "z": 0
  4551. },
  4552. "_id": ""
  4553. },
  4554. {
  4555. "__type__": "cc.UITransform",
  4556. "_name": "",
  4557. "_objFlags": 0,
  4558. "__editorExtras__": {},
  4559. "node": {
  4560. "__id__": 236
  4561. },
  4562. "_enabled": true,
  4563. "__prefab": {
  4564. "__id__": 238
  4565. },
  4566. "_contentSize": {
  4567. "__type__": "cc.Size",
  4568. "width": 80,
  4569. "height": 80
  4570. },
  4571. "_anchorPoint": {
  4572. "__type__": "cc.Vec2",
  4573. "x": 0.5,
  4574. "y": 0.5
  4575. },
  4576. "_id": ""
  4577. },
  4578. {
  4579. "__type__": "cc.CompPrefabInfo",
  4580. "fileId": "4bAjp/j5tGcqGO1qLanZOy"
  4581. },
  4582. {
  4583. "__type__": "cc.Sprite",
  4584. "_name": "",
  4585. "_objFlags": 0,
  4586. "__editorExtras__": {},
  4587. "node": {
  4588. "__id__": 236
  4589. },
  4590. "_enabled": true,
  4591. "__prefab": {
  4592. "__id__": 240
  4593. },
  4594. "_customMaterial": null,
  4595. "_srcBlendFactor": 2,
  4596. "_dstBlendFactor": 4,
  4597. "_color": {
  4598. "__type__": "cc.Color",
  4599. "r": 255,
  4600. "g": 255,
  4601. "b": 255,
  4602. "a": 255
  4603. },
  4604. "_spriteFrame": {
  4605. "__uuid__": "54138f51-a62d-48d9-8dd2-b01485086792@f9941",
  4606. "__expectedType__": "cc.SpriteFrame"
  4607. },
  4608. "_type": 1,
  4609. "_fillType": 0,
  4610. "_sizeMode": 2,
  4611. "_fillCenter": {
  4612. "__type__": "cc.Vec2",
  4613. "x": 0,
  4614. "y": 0
  4615. },
  4616. "_fillStart": 0,
  4617. "_fillRange": 0,
  4618. "_isTrimmedMode": true,
  4619. "_useGrayscale": false,
  4620. "_atlas": null,
  4621. "_id": ""
  4622. },
  4623. {
  4624. "__type__": "cc.CompPrefabInfo",
  4625. "fileId": "91ze2W8VJI0ZGXvBx9Hvx1"
  4626. },
  4627. {
  4628. "__type__": "cc.Button",
  4629. "_name": "",
  4630. "_objFlags": 0,
  4631. "__editorExtras__": {},
  4632. "node": {
  4633. "__id__": 236
  4634. },
  4635. "_enabled": true,
  4636. "__prefab": {
  4637. "__id__": 242
  4638. },
  4639. "clickEvents": [],
  4640. "_interactable": true,
  4641. "_transition": 3,
  4642. "_normalColor": {
  4643. "__type__": "cc.Color",
  4644. "r": 214,
  4645. "g": 214,
  4646. "b": 214,
  4647. "a": 255
  4648. },
  4649. "_hoverColor": {
  4650. "__type__": "cc.Color",
  4651. "r": 211,
  4652. "g": 211,
  4653. "b": 211,
  4654. "a": 255
  4655. },
  4656. "_pressedColor": {
  4657. "__type__": "cc.Color",
  4658. "r": 255,
  4659. "g": 255,
  4660. "b": 255,
  4661. "a": 255
  4662. },
  4663. "_disabledColor": {
  4664. "__type__": "cc.Color",
  4665. "r": 124,
  4666. "g": 124,
  4667. "b": 124,
  4668. "a": 255
  4669. },
  4670. "_normalSprite": {
  4671. "__uuid__": "54138f51-a62d-48d9-8dd2-b01485086792@f9941",
  4672. "__expectedType__": "cc.SpriteFrame"
  4673. },
  4674. "_hoverSprite": null,
  4675. "_pressedSprite": null,
  4676. "_disabledSprite": null,
  4677. "_duration": 0.1,
  4678. "_zoomScale": 1.2,
  4679. "_target": {
  4680. "__id__": 236
  4681. },
  4682. "_id": ""
  4683. },
  4684. {
  4685. "__type__": "cc.CompPrefabInfo",
  4686. "fileId": "f0Y7KusDVPG6N8eTroy3sG"
  4687. },
  4688. {
  4689. "__type__": "cc.PrefabInfo",
  4690. "root": {
  4691. "__id__": 1
  4692. },
  4693. "asset": {
  4694. "__id__": 0
  4695. },
  4696. "fileId": "00ci9LKo9IGrpU9D2yMD4q",
  4697. "instance": null,
  4698. "targetOverrides": null,
  4699. "nestedPrefabInstanceRoots": null
  4700. },
  4701. {
  4702. "__type__": "cc.Node",
  4703. "_name": "lab_title",
  4704. "_objFlags": 0,
  4705. "__editorExtras__": {},
  4706. "_parent": {
  4707. "__id__": 229
  4708. },
  4709. "_children": [],
  4710. "_active": true,
  4711. "_components": [
  4712. {
  4713. "__id__": 245
  4714. },
  4715. {
  4716. "__id__": 247
  4717. }
  4718. ],
  4719. "_prefab": {
  4720. "__id__": 249
  4721. },
  4722. "_lpos": {
  4723. "__type__": "cc.Vec3",
  4724. "x": 0,
  4725. "y": 164.904,
  4726. "z": 0
  4727. },
  4728. "_lrot": {
  4729. "__type__": "cc.Quat",
  4730. "x": 0,
  4731. "y": 0,
  4732. "z": 0,
  4733. "w": 1
  4734. },
  4735. "_lscale": {
  4736. "__type__": "cc.Vec3",
  4737. "x": 1,
  4738. "y": 1,
  4739. "z": 1
  4740. },
  4741. "_mobility": 0,
  4742. "_layer": 33554432,
  4743. "_euler": {
  4744. "__type__": "cc.Vec3",
  4745. "x": 0,
  4746. "y": 0,
  4747. "z": 0
  4748. },
  4749. "_id": ""
  4750. },
  4751. {
  4752. "__type__": "cc.UITransform",
  4753. "_name": "",
  4754. "_objFlags": 0,
  4755. "__editorExtras__": {},
  4756. "node": {
  4757. "__id__": 244
  4758. },
  4759. "_enabled": true,
  4760. "__prefab": {
  4761. "__id__": 246
  4762. },
  4763. "_contentSize": {
  4764. "__type__": "cc.Size",
  4765. "width": 336,
  4766. "height": 63
  4767. },
  4768. "_anchorPoint": {
  4769. "__type__": "cc.Vec2",
  4770. "x": 0.5,
  4771. "y": 0.5
  4772. },
  4773. "_id": ""
  4774. },
  4775. {
  4776. "__type__": "cc.CompPrefabInfo",
  4777. "fileId": "ff6521eUdIjr3eIxN02YJ9"
  4778. },
  4779. {
  4780. "__type__": "cc.Label",
  4781. "_name": "",
  4782. "_objFlags": 0,
  4783. "__editorExtras__": {},
  4784. "node": {
  4785. "__id__": 244
  4786. },
  4787. "_enabled": true,
  4788. "__prefab": {
  4789. "__id__": 248
  4790. },
  4791. "_customMaterial": null,
  4792. "_srcBlendFactor": 2,
  4793. "_dstBlendFactor": 4,
  4794. "_color": {
  4795. "__type__": "cc.Color",
  4796. "r": 32,
  4797. "g": 32,
  4798. "b": 32,
  4799. "a": 255
  4800. },
  4801. "_string": "第三方安全验证",
  4802. "_horizontalAlign": 1,
  4803. "_verticalAlign": 1,
  4804. "_actualFontSize": 48,
  4805. "_fontSize": 48,
  4806. "_fontFamily": "Arial",
  4807. "_lineHeight": 50,
  4808. "_overflow": 0,
  4809. "_enableWrapText": true,
  4810. "_font": null,
  4811. "_isSystemFontUsed": true,
  4812. "_spacingX": 0,
  4813. "_isItalic": false,
  4814. "_isBold": true,
  4815. "_isUnderline": false,
  4816. "_underlineHeight": 2,
  4817. "_cacheMode": 0,
  4818. "_enableOutline": false,
  4819. "_outlineColor": {
  4820. "__type__": "cc.Color",
  4821. "r": 0,
  4822. "g": 0,
  4823. "b": 0,
  4824. "a": 255
  4825. },
  4826. "_outlineWidth": 2,
  4827. "_enableShadow": false,
  4828. "_shadowColor": {
  4829. "__type__": "cc.Color",
  4830. "r": 0,
  4831. "g": 0,
  4832. "b": 0,
  4833. "a": 255
  4834. },
  4835. "_shadowOffset": {
  4836. "__type__": "cc.Vec2",
  4837. "x": 2,
  4838. "y": 2
  4839. },
  4840. "_shadowBlur": 2,
  4841. "_id": ""
  4842. },
  4843. {
  4844. "__type__": "cc.CompPrefabInfo",
  4845. "fileId": "91lh81MGhJ3IGZ1F62Nw/Y"
  4846. },
  4847. {
  4848. "__type__": "cc.PrefabInfo",
  4849. "root": {
  4850. "__id__": 1
  4851. },
  4852. "asset": {
  4853. "__id__": 0
  4854. },
  4855. "fileId": "01PIF+feFARKg1WZtnDeQM",
  4856. "instance": null,
  4857. "targetOverrides": null,
  4858. "nestedPrefabInstanceRoots": null
  4859. },
  4860. {
  4861. "__type__": "cc.Node",
  4862. "_name": "btn_knew",
  4863. "_objFlags": 0,
  4864. "__editorExtras__": {},
  4865. "_parent": {
  4866. "__id__": 229
  4867. },
  4868. "_children": [
  4869. {
  4870. "__id__": 251
  4871. }
  4872. ],
  4873. "_active": true,
  4874. "_components": [
  4875. {
  4876. "__id__": 257
  4877. },
  4878. {
  4879. "__id__": 259
  4880. },
  4881. {
  4882. "__id__": 261
  4883. }
  4884. ],
  4885. "_prefab": {
  4886. "__id__": 263
  4887. },
  4888. "_lpos": {
  4889. "__type__": "cc.Vec3",
  4890. "x": 0,
  4891. "y": -255.6,
  4892. "z": 0
  4893. },
  4894. "_lrot": {
  4895. "__type__": "cc.Quat",
  4896. "x": 0,
  4897. "y": 0,
  4898. "z": 0,
  4899. "w": 1
  4900. },
  4901. "_lscale": {
  4902. "__type__": "cc.Vec3",
  4903. "x": 1,
  4904. "y": 1,
  4905. "z": 1
  4906. },
  4907. "_mobility": 0,
  4908. "_layer": 33554432,
  4909. "_euler": {
  4910. "__type__": "cc.Vec3",
  4911. "x": 0,
  4912. "y": 0,
  4913. "z": 0
  4914. },
  4915. "_id": ""
  4916. },
  4917. {
  4918. "__type__": "cc.Node",
  4919. "_name": "Label",
  4920. "_objFlags": 512,
  4921. "__editorExtras__": {},
  4922. "_parent": {
  4923. "__id__": 250
  4924. },
  4925. "_children": [],
  4926. "_active": true,
  4927. "_components": [
  4928. {
  4929. "__id__": 252
  4930. },
  4931. {
  4932. "__id__": 254
  4933. }
  4934. ],
  4935. "_prefab": {
  4936. "__id__": 256
  4937. },
  4938. "_lpos": {
  4939. "__type__": "cc.Vec3",
  4940. "x": 0,
  4941. "y": 0,
  4942. "z": 0
  4943. },
  4944. "_lrot": {
  4945. "__type__": "cc.Quat",
  4946. "x": 0,
  4947. "y": 0,
  4948. "z": 0,
  4949. "w": 1
  4950. },
  4951. "_lscale": {
  4952. "__type__": "cc.Vec3",
  4953. "x": 1,
  4954. "y": 1,
  4955. "z": 1
  4956. },
  4957. "_mobility": 0,
  4958. "_layer": 33554432,
  4959. "_euler": {
  4960. "__type__": "cc.Vec3",
  4961. "x": 0,
  4962. "y": 0,
  4963. "z": 0
  4964. },
  4965. "_id": ""
  4966. },
  4967. {
  4968. "__type__": "cc.UITransform",
  4969. "_name": "",
  4970. "_objFlags": 0,
  4971. "__editorExtras__": {},
  4972. "node": {
  4973. "__id__": 251
  4974. },
  4975. "_enabled": true,
  4976. "__prefab": {
  4977. "__id__": 253
  4978. },
  4979. "_contentSize": {
  4980. "__type__": "cc.Size",
  4981. "width": 200,
  4982. "height": 60
  4983. },
  4984. "_anchorPoint": {
  4985. "__type__": "cc.Vec2",
  4986. "x": 0.5,
  4987. "y": 0.5
  4988. },
  4989. "_id": ""
  4990. },
  4991. {
  4992. "__type__": "cc.CompPrefabInfo",
  4993. "fileId": "24QHX+cFpClb6KMA4jiKcG"
  4994. },
  4995. {
  4996. "__type__": "cc.Label",
  4997. "_name": "",
  4998. "_objFlags": 0,
  4999. "__editorExtras__": {},
  5000. "node": {
  5001. "__id__": 251
  5002. },
  5003. "_enabled": true,
  5004. "__prefab": {
  5005. "__id__": 255
  5006. },
  5007. "_customMaterial": null,
  5008. "_srcBlendFactor": 2,
  5009. "_dstBlendFactor": 4,
  5010. "_color": {
  5011. "__type__": "cc.Color",
  5012. "r": 255,
  5013. "g": 255,
  5014. "b": 255,
  5015. "a": 255
  5016. },
  5017. "_string": "知道了",
  5018. "_horizontalAlign": 1,
  5019. "_verticalAlign": 1,
  5020. "_actualFontSize": 48,
  5021. "_fontSize": 48,
  5022. "_fontFamily": "Arial",
  5023. "_lineHeight": 60,
  5024. "_overflow": 1,
  5025. "_enableWrapText": false,
  5026. "_font": null,
  5027. "_isSystemFontUsed": true,
  5028. "_spacingX": 0,
  5029. "_isItalic": false,
  5030. "_isBold": true,
  5031. "_isUnderline": false,
  5032. "_underlineHeight": 2,
  5033. "_cacheMode": 0,
  5034. "_enableOutline": true,
  5035. "_outlineColor": {
  5036. "__type__": "cc.Color",
  5037. "r": 88,
  5038. "g": 42,
  5039. "b": 9,
  5040. "a": 255
  5041. },
  5042. "_outlineWidth": 4,
  5043. "_enableShadow": false,
  5044. "_shadowColor": {
  5045. "__type__": "cc.Color",
  5046. "r": 0,
  5047. "g": 0,
  5048. "b": 0,
  5049. "a": 255
  5050. },
  5051. "_shadowOffset": {
  5052. "__type__": "cc.Vec2",
  5053. "x": 2,
  5054. "y": 2
  5055. },
  5056. "_shadowBlur": 2,
  5057. "_id": ""
  5058. },
  5059. {
  5060. "__type__": "cc.CompPrefabInfo",
  5061. "fileId": "21WTsf7JJC4Zi56NQi40Yl"
  5062. },
  5063. {
  5064. "__type__": "cc.PrefabInfo",
  5065. "root": {
  5066. "__id__": 1
  5067. },
  5068. "asset": {
  5069. "__id__": 0
  5070. },
  5071. "fileId": "24jgXQn5FPpaVo/uUtDIOT",
  5072. "instance": null,
  5073. "targetOverrides": null,
  5074. "nestedPrefabInstanceRoots": null
  5075. },
  5076. {
  5077. "__type__": "cc.UITransform",
  5078. "_name": "",
  5079. "_objFlags": 0,
  5080. "__editorExtras__": {},
  5081. "node": {
  5082. "__id__": 250
  5083. },
  5084. "_enabled": true,
  5085. "__prefab": {
  5086. "__id__": 258
  5087. },
  5088. "_contentSize": {
  5089. "__type__": "cc.Size",
  5090. "width": 562,
  5091. "height": 141
  5092. },
  5093. "_anchorPoint": {
  5094. "__type__": "cc.Vec2",
  5095. "x": 0.5,
  5096. "y": 0.5
  5097. },
  5098. "_id": ""
  5099. },
  5100. {
  5101. "__type__": "cc.CompPrefabInfo",
  5102. "fileId": "f0Q3JHsYBFBYZeBmhJY/Bf"
  5103. },
  5104. {
  5105. "__type__": "cc.Sprite",
  5106. "_name": "",
  5107. "_objFlags": 0,
  5108. "__editorExtras__": {},
  5109. "node": {
  5110. "__id__": 250
  5111. },
  5112. "_enabled": true,
  5113. "__prefab": {
  5114. "__id__": 260
  5115. },
  5116. "_customMaterial": null,
  5117. "_srcBlendFactor": 2,
  5118. "_dstBlendFactor": 4,
  5119. "_color": {
  5120. "__type__": "cc.Color",
  5121. "r": 255,
  5122. "g": 255,
  5123. "b": 255,
  5124. "a": 255
  5125. },
  5126. "_spriteFrame": {
  5127. "__uuid__": "a49999bb-986e-40f5-9a9a-d4171636116f@f9941",
  5128. "__expectedType__": "cc.SpriteFrame"
  5129. },
  5130. "_type": 1,
  5131. "_fillType": 0,
  5132. "_sizeMode": 2,
  5133. "_fillCenter": {
  5134. "__type__": "cc.Vec2",
  5135. "x": 0,
  5136. "y": 0
  5137. },
  5138. "_fillStart": 0,
  5139. "_fillRange": 0,
  5140. "_isTrimmedMode": true,
  5141. "_useGrayscale": false,
  5142. "_atlas": null,
  5143. "_id": ""
  5144. },
  5145. {
  5146. "__type__": "cc.CompPrefabInfo",
  5147. "fileId": "cbUtMyIG1ByakNmIvX0qrO"
  5148. },
  5149. {
  5150. "__type__": "cc.Button",
  5151. "_name": "",
  5152. "_objFlags": 0,
  5153. "__editorExtras__": {},
  5154. "node": {
  5155. "__id__": 250
  5156. },
  5157. "_enabled": true,
  5158. "__prefab": {
  5159. "__id__": 262
  5160. },
  5161. "clickEvents": [],
  5162. "_interactable": true,
  5163. "_transition": 3,
  5164. "_normalColor": {
  5165. "__type__": "cc.Color",
  5166. "r": 214,
  5167. "g": 214,
  5168. "b": 214,
  5169. "a": 255
  5170. },
  5171. "_hoverColor": {
  5172. "__type__": "cc.Color",
  5173. "r": 211,
  5174. "g": 211,
  5175. "b": 211,
  5176. "a": 255
  5177. },
  5178. "_pressedColor": {
  5179. "__type__": "cc.Color",
  5180. "r": 255,
  5181. "g": 255,
  5182. "b": 255,
  5183. "a": 255
  5184. },
  5185. "_disabledColor": {
  5186. "__type__": "cc.Color",
  5187. "r": 124,
  5188. "g": 124,
  5189. "b": 124,
  5190. "a": 255
  5191. },
  5192. "_normalSprite": {
  5193. "__uuid__": "a49999bb-986e-40f5-9a9a-d4171636116f@f9941",
  5194. "__expectedType__": "cc.SpriteFrame"
  5195. },
  5196. "_hoverSprite": null,
  5197. "_pressedSprite": null,
  5198. "_disabledSprite": null,
  5199. "_duration": 0.1,
  5200. "_zoomScale": 1.2,
  5201. "_target": {
  5202. "__id__": 250
  5203. },
  5204. "_id": ""
  5205. },
  5206. {
  5207. "__type__": "cc.CompPrefabInfo",
  5208. "fileId": "106n9nz7hN3qTeYOPQKOqv"
  5209. },
  5210. {
  5211. "__type__": "cc.PrefabInfo",
  5212. "root": {
  5213. "__id__": 1
  5214. },
  5215. "asset": {
  5216. "__id__": 0
  5217. },
  5218. "fileId": "67QEWu+B5J95owIaWdmufe",
  5219. "instance": null,
  5220. "targetOverrides": null,
  5221. "nestedPrefabInstanceRoots": null
  5222. },
  5223. {
  5224. "__type__": "cc.Node",
  5225. "_name": "Label",
  5226. "_objFlags": 0,
  5227. "__editorExtras__": {},
  5228. "_parent": {
  5229. "__id__": 229
  5230. },
  5231. "_children": [],
  5232. "_active": true,
  5233. "_components": [
  5234. {
  5235. "__id__": 265
  5236. },
  5237. {
  5238. "__id__": 267
  5239. }
  5240. ],
  5241. "_prefab": {
  5242. "__id__": 269
  5243. },
  5244. "_lpos": {
  5245. "__type__": "cc.Vec3",
  5246. "x": 0,
  5247. "y": -362.402,
  5248. "z": 0
  5249. },
  5250. "_lrot": {
  5251. "__type__": "cc.Quat",
  5252. "x": 0,
  5253. "y": 0,
  5254. "z": 0,
  5255. "w": 1
  5256. },
  5257. "_lscale": {
  5258. "__type__": "cc.Vec3",
  5259. "x": 1,
  5260. "y": 1,
  5261. "z": 1
  5262. },
  5263. "_mobility": 0,
  5264. "_layer": 33554432,
  5265. "_euler": {
  5266. "__type__": "cc.Vec3",
  5267. "x": 0,
  5268. "y": 0,
  5269. "z": 0
  5270. },
  5271. "_id": ""
  5272. },
  5273. {
  5274. "__type__": "cc.UITransform",
  5275. "_name": "",
  5276. "_objFlags": 0,
  5277. "__editorExtras__": {},
  5278. "node": {
  5279. "__id__": 264
  5280. },
  5281. "_enabled": true,
  5282. "__prefab": {
  5283. "__id__": 266
  5284. },
  5285. "_contentSize": {
  5286. "__type__": "cc.Size",
  5287. "width": 216,
  5288. "height": 50.4
  5289. },
  5290. "_anchorPoint": {
  5291. "__type__": "cc.Vec2",
  5292. "x": 0.5,
  5293. "y": 0.5
  5294. },
  5295. "_id": ""
  5296. },
  5297. {
  5298. "__type__": "cc.CompPrefabInfo",
  5299. "fileId": "ceWcbzYYdPh4yMb2K6oZYy"
  5300. },
  5301. {
  5302. "__type__": "cc.Label",
  5303. "_name": "",
  5304. "_objFlags": 0,
  5305. "__editorExtras__": {},
  5306. "node": {
  5307. "__id__": 264
  5308. },
  5309. "_enabled": true,
  5310. "__prefab": {
  5311. "__id__": 268
  5312. },
  5313. "_customMaterial": null,
  5314. "_srcBlendFactor": 2,
  5315. "_dstBlendFactor": 4,
  5316. "_color": {
  5317. "__type__": "cc.Color",
  5318. "r": 32,
  5319. "g": 32,
  5320. "b": 32,
  5321. "a": 128
  5322. },
  5323. "_string": "提现由微信平台代理",
  5324. "_horizontalAlign": 1,
  5325. "_verticalAlign": 1,
  5326. "_actualFontSize": 24,
  5327. "_fontSize": 24,
  5328. "_fontFamily": "Arial",
  5329. "_lineHeight": 40,
  5330. "_overflow": 0,
  5331. "_enableWrapText": true,
  5332. "_font": null,
  5333. "_isSystemFontUsed": true,
  5334. "_spacingX": 0,
  5335. "_isItalic": false,
  5336. "_isBold": false,
  5337. "_isUnderline": false,
  5338. "_underlineHeight": 2,
  5339. "_cacheMode": 0,
  5340. "_enableOutline": false,
  5341. "_outlineColor": {
  5342. "__type__": "cc.Color",
  5343. "r": 0,
  5344. "g": 0,
  5345. "b": 0,
  5346. "a": 255
  5347. },
  5348. "_outlineWidth": 2,
  5349. "_enableShadow": false,
  5350. "_shadowColor": {
  5351. "__type__": "cc.Color",
  5352. "r": 0,
  5353. "g": 0,
  5354. "b": 0,
  5355. "a": 255
  5356. },
  5357. "_shadowOffset": {
  5358. "__type__": "cc.Vec2",
  5359. "x": 2,
  5360. "y": 2
  5361. },
  5362. "_shadowBlur": 2,
  5363. "_id": ""
  5364. },
  5365. {
  5366. "__type__": "cc.CompPrefabInfo",
  5367. "fileId": "50sp7KS6xKeaCEJ79VeajB"
  5368. },
  5369. {
  5370. "__type__": "cc.PrefabInfo",
  5371. "root": {
  5372. "__id__": 1
  5373. },
  5374. "asset": {
  5375. "__id__": 0
  5376. },
  5377. "fileId": "33dWlwXm1Po5jDivjmOK9Y",
  5378. "instance": null,
  5379. "targetOverrides": null,
  5380. "nestedPrefabInstanceRoots": null
  5381. },
  5382. {
  5383. "__type__": "cc.Node",
  5384. "_name": "RichText",
  5385. "_objFlags": 0,
  5386. "__editorExtras__": {},
  5387. "_parent": {
  5388. "__id__": 229
  5389. },
  5390. "_children": [],
  5391. "_active": true,
  5392. "_components": [
  5393. {
  5394. "__id__": 271
  5395. },
  5396. {
  5397. "__id__": 273
  5398. },
  5399. {
  5400. "__id__": 275
  5401. }
  5402. ],
  5403. "_prefab": {
  5404. "__id__": 277
  5405. },
  5406. "_lpos": {
  5407. "__type__": "cc.Vec3",
  5408. "x": -5.322,
  5409. "y": -24.948,
  5410. "z": 0
  5411. },
  5412. "_lrot": {
  5413. "__type__": "cc.Quat",
  5414. "x": 0,
  5415. "y": 0,
  5416. "z": 0,
  5417. "w": 1
  5418. },
  5419. "_lscale": {
  5420. "__type__": "cc.Vec3",
  5421. "x": 1,
  5422. "y": 1,
  5423. "z": 1
  5424. },
  5425. "_mobility": 0,
  5426. "_layer": 33554432,
  5427. "_euler": {
  5428. "__type__": "cc.Vec3",
  5429. "x": 0,
  5430. "y": 0,
  5431. "z": 0
  5432. },
  5433. "_id": ""
  5434. },
  5435. {
  5436. "__type__": "cc.UITransform",
  5437. "_name": "",
  5438. "_objFlags": 0,
  5439. "__editorExtras__": {},
  5440. "node": {
  5441. "__id__": 270
  5442. },
  5443. "_enabled": true,
  5444. "__prefab": {
  5445. "__id__": 272
  5446. },
  5447. "_contentSize": {
  5448. "__type__": "cc.Size",
  5449. "width": 540,
  5450. "height": 225.35999999999999
  5451. },
  5452. "_anchorPoint": {
  5453. "__type__": "cc.Vec2",
  5454. "x": 0.5,
  5455. "y": 0.5
  5456. },
  5457. "_id": ""
  5458. },
  5459. {
  5460. "__type__": "cc.CompPrefabInfo",
  5461. "fileId": "6eB5i/W/pGeawHyrIr0S2I"
  5462. },
  5463. {
  5464. "__type__": "cc.RichText",
  5465. "_name": "",
  5466. "_objFlags": 0,
  5467. "__editorExtras__": {},
  5468. "node": {
  5469. "__id__": 270
  5470. },
  5471. "_enabled": true,
  5472. "__prefab": {
  5473. "__id__": 274
  5474. },
  5475. "_lineHeight": 36,
  5476. "_string": "<color =#C13935>{{0}}元</color>的大额提现已成功打款到平台《{{4}}》委托微信官方进行打款安全验证,<color =#C13935>需要预扣{{1}}元手续费。</color>\n\n 仅需再赚{{2}}元,{{3}}元立即到账您的微信余额。",
  5477. "_horizontalAlign": 0,
  5478. "_verticalAlign": 0,
  5479. "_fontSize": 28,
  5480. "_fontColor": {
  5481. "__type__": "cc.Color",
  5482. "r": 32,
  5483. "g": 32,
  5484. "b": 32,
  5485. "a": 224
  5486. },
  5487. "_maxWidth": 540,
  5488. "_fontFamily": "Arial",
  5489. "_font": null,
  5490. "_isSystemFontUsed": true,
  5491. "_userDefinedFont": null,
  5492. "_cacheMode": 0,
  5493. "_imageAtlas": null,
  5494. "_handleTouchEvent": true,
  5495. "_id": ""
  5496. },
  5497. {
  5498. "__type__": "cc.CompPrefabInfo",
  5499. "fileId": "afuEV4sUNFtYJ2pF93Mz84"
  5500. },
  5501. {
  5502. "__type__": "545c05XsG9GDJispEGWKvYv",
  5503. "_name": "",
  5504. "_objFlags": 0,
  5505. "__editorExtras__": {},
  5506. "node": {
  5507. "__id__": 270
  5508. },
  5509. "_enabled": true,
  5510. "__prefab": {
  5511. "__id__": 276
  5512. },
  5513. "templateMode": true,
  5514. "watchPath": "",
  5515. "labelType": "cc.RichText",
  5516. "watchPathArr": [
  5517. "*.money",
  5518. "*.cost",
  5519. "*.cost",
  5520. "*.money",
  5521. "*.gameName"
  5522. ],
  5523. "_id": ""
  5524. },
  5525. {
  5526. "__type__": "cc.CompPrefabInfo",
  5527. "fileId": "90GusxXBJP44chBDNwGFsS"
  5528. },
  5529. {
  5530. "__type__": "cc.PrefabInfo",
  5531. "root": {
  5532. "__id__": 1
  5533. },
  5534. "asset": {
  5535. "__id__": 0
  5536. },
  5537. "fileId": "2cBCB5f7RNJrqH0Jq6bB31",
  5538. "instance": null,
  5539. "targetOverrides": null,
  5540. "nestedPrefabInstanceRoots": null
  5541. },
  5542. {
  5543. "__type__": "cc.UITransform",
  5544. "_name": "",
  5545. "_objFlags": 0,
  5546. "__editorExtras__": {},
  5547. "node": {
  5548. "__id__": 229
  5549. },
  5550. "_enabled": true,
  5551. "__prefab": {
  5552. "__id__": 279
  5553. },
  5554. "_contentSize": {
  5555. "__type__": "cc.Size",
  5556. "width": 640,
  5557. "height": 889
  5558. },
  5559. "_anchorPoint": {
  5560. "__type__": "cc.Vec2",
  5561. "x": 0.5,
  5562. "y": 0.5
  5563. },
  5564. "_id": ""
  5565. },
  5566. {
  5567. "__type__": "cc.CompPrefabInfo",
  5568. "fileId": "5bCwmjKQdJE6oMwTt85uoB"
  5569. },
  5570. {
  5571. "__type__": "cc.Sprite",
  5572. "_name": "",
  5573. "_objFlags": 0,
  5574. "__editorExtras__": {},
  5575. "node": {
  5576. "__id__": 229
  5577. },
  5578. "_enabled": true,
  5579. "__prefab": {
  5580. "__id__": 281
  5581. },
  5582. "_customMaterial": null,
  5583. "_srcBlendFactor": 2,
  5584. "_dstBlendFactor": 4,
  5585. "_color": {
  5586. "__type__": "cc.Color",
  5587. "r": 255,
  5588. "g": 255,
  5589. "b": 255,
  5590. "a": 255
  5591. },
  5592. "_spriteFrame": {
  5593. "__uuid__": "c5a17437-1409-43d2-bfd2-3cef9ed01a47@f9941",
  5594. "__expectedType__": "cc.SpriteFrame"
  5595. },
  5596. "_type": 1,
  5597. "_fillType": 0,
  5598. "_sizeMode": 1,
  5599. "_fillCenter": {
  5600. "__type__": "cc.Vec2",
  5601. "x": 0,
  5602. "y": 0
  5603. },
  5604. "_fillStart": 0,
  5605. "_fillRange": 0,
  5606. "_isTrimmedMode": true,
  5607. "_useGrayscale": false,
  5608. "_atlas": null,
  5609. "_id": ""
  5610. },
  5611. {
  5612. "__type__": "cc.CompPrefabInfo",
  5613. "fileId": "61BCqfFZlD0Lp/bgOPqN46"
  5614. },
  5615. {
  5616. "__type__": "cc.Animation",
  5617. "_name": "",
  5618. "_objFlags": 0,
  5619. "__editorExtras__": {},
  5620. "node": {
  5621. "__id__": 229
  5622. },
  5623. "_enabled": true,
  5624. "__prefab": {
  5625. "__id__": 283
  5626. },
  5627. "playOnLoad": false,
  5628. "_clips": [
  5629. {
  5630. "__uuid__": "215e6d81-2f46-4ee4-bdb9-75009426e99a",
  5631. "__expectedType__": "cc.AnimationClip"
  5632. }
  5633. ],
  5634. "_defaultClip": {
  5635. "__uuid__": "215e6d81-2f46-4ee4-bdb9-75009426e99a",
  5636. "__expectedType__": "cc.AnimationClip"
  5637. },
  5638. "_id": ""
  5639. },
  5640. {
  5641. "__type__": "cc.CompPrefabInfo",
  5642. "fileId": "14Nz0bd11I6LnlijdVwpuo"
  5643. },
  5644. {
  5645. "__type__": "cc.PrefabInfo",
  5646. "root": {
  5647. "__id__": 1
  5648. },
  5649. "asset": {
  5650. "__id__": 0
  5651. },
  5652. "fileId": "c0uT6gbTRDN7iGqytf6PvF",
  5653. "instance": null,
  5654. "targetOverrides": null,
  5655. "nestedPrefabInstanceRoots": null
  5656. },
  5657. {
  5658. "__type__": "cc.Node",
  5659. "_name": "showNode3",
  5660. "_objFlags": 0,
  5661. "__editorExtras__": {},
  5662. "_parent": {
  5663. "__id__": 1
  5664. },
  5665. "_children": [
  5666. {
  5667. "__id__": 286
  5668. },
  5669. {
  5670. "__id__": 294
  5671. }
  5672. ],
  5673. "_active": false,
  5674. "_components": [
  5675. {
  5676. "__id__": 364
  5677. },
  5678. {
  5679. "__id__": 366
  5680. }
  5681. ],
  5682. "_prefab": {
  5683. "__id__": 368
  5684. },
  5685. "_lpos": {
  5686. "__type__": "cc.Vec3",
  5687. "x": 0,
  5688. "y": 0,
  5689. "z": 0
  5690. },
  5691. "_lrot": {
  5692. "__type__": "cc.Quat",
  5693. "x": 0,
  5694. "y": 0,
  5695. "z": 0,
  5696. "w": 1
  5697. },
  5698. "_lscale": {
  5699. "__type__": "cc.Vec3",
  5700. "x": 1,
  5701. "y": 1,
  5702. "z": 1
  5703. },
  5704. "_mobility": 0,
  5705. "_layer": 33554432,
  5706. "_euler": {
  5707. "__type__": "cc.Vec3",
  5708. "x": 0,
  5709. "y": 0,
  5710. "z": 0
  5711. },
  5712. "_id": ""
  5713. },
  5714. {
  5715. "__type__": "cc.Node",
  5716. "_name": "bg_light",
  5717. "_objFlags": 0,
  5718. "__editorExtras__": {},
  5719. "_parent": {
  5720. "__id__": 285
  5721. },
  5722. "_children": [],
  5723. "_active": true,
  5724. "_components": [
  5725. {
  5726. "__id__": 287
  5727. },
  5728. {
  5729. "__id__": 289
  5730. },
  5731. {
  5732. "__id__": 291
  5733. }
  5734. ],
  5735. "_prefab": {
  5736. "__id__": 293
  5737. },
  5738. "_lpos": {
  5739. "__type__": "cc.Vec3",
  5740. "x": 0,
  5741. "y": 172.30500000000006,
  5742. "z": 0
  5743. },
  5744. "_lrot": {
  5745. "__type__": "cc.Quat",
  5746. "x": 0,
  5747. "y": 0,
  5748. "z": 0,
  5749. "w": 1
  5750. },
  5751. "_lscale": {
  5752. "__type__": "cc.Vec3",
  5753. "x": 1,
  5754. "y": 1,
  5755. "z": 1
  5756. },
  5757. "_mobility": 0,
  5758. "_layer": 33554432,
  5759. "_euler": {
  5760. "__type__": "cc.Vec3",
  5761. "x": 0,
  5762. "y": 0,
  5763. "z": 0
  5764. },
  5765. "_id": ""
  5766. },
  5767. {
  5768. "__type__": "cc.UITransform",
  5769. "_name": "",
  5770. "_objFlags": 0,
  5771. "__editorExtras__": {},
  5772. "node": {
  5773. "__id__": 286
  5774. },
  5775. "_enabled": true,
  5776. "__prefab": {
  5777. "__id__": 288
  5778. },
  5779. "_contentSize": {
  5780. "__type__": "cc.Size",
  5781. "width": 968,
  5782. "height": 968
  5783. },
  5784. "_anchorPoint": {
  5785. "__type__": "cc.Vec2",
  5786. "x": 0.5,
  5787. "y": 0.5
  5788. },
  5789. "_id": ""
  5790. },
  5791. {
  5792. "__type__": "cc.CompPrefabInfo",
  5793. "fileId": "2apo41QUhL9LOukUp1rcYZ"
  5794. },
  5795. {
  5796. "__type__": "cc.Sprite",
  5797. "_name": "",
  5798. "_objFlags": 0,
  5799. "__editorExtras__": {},
  5800. "node": {
  5801. "__id__": 286
  5802. },
  5803. "_enabled": true,
  5804. "__prefab": {
  5805. "__id__": 290
  5806. },
  5807. "_customMaterial": null,
  5808. "_srcBlendFactor": 2,
  5809. "_dstBlendFactor": 4,
  5810. "_color": {
  5811. "__type__": "cc.Color",
  5812. "r": 255,
  5813. "g": 255,
  5814. "b": 255,
  5815. "a": 255
  5816. },
  5817. "_spriteFrame": {
  5818. "__uuid__": "813602dd-748e-4bfa-ba7a-9ecf401122e9@f9941",
  5819. "__expectedType__": "cc.SpriteFrame"
  5820. },
  5821. "_type": 0,
  5822. "_fillType": 0,
  5823. "_sizeMode": 2,
  5824. "_fillCenter": {
  5825. "__type__": "cc.Vec2",
  5826. "x": 0,
  5827. "y": 0
  5828. },
  5829. "_fillStart": 0,
  5830. "_fillRange": 0,
  5831. "_isTrimmedMode": true,
  5832. "_useGrayscale": false,
  5833. "_atlas": null,
  5834. "_id": ""
  5835. },
  5836. {
  5837. "__type__": "cc.CompPrefabInfo",
  5838. "fileId": "f53UXX3zZOqL1XPdG5C5u7"
  5839. },
  5840. {
  5841. "__type__": "cc.Animation",
  5842. "_name": "",
  5843. "_objFlags": 0,
  5844. "__editorExtras__": {},
  5845. "node": {
  5846. "__id__": 286
  5847. },
  5848. "_enabled": true,
  5849. "__prefab": {
  5850. "__id__": 292
  5851. },
  5852. "playOnLoad": true,
  5853. "_clips": [
  5854. {
  5855. "__uuid__": "62c95173-1005-48b0-bef6-f49a73db295c",
  5856. "__expectedType__": "cc.AnimationClip"
  5857. }
  5858. ],
  5859. "_defaultClip": {
  5860. "__uuid__": "62c95173-1005-48b0-bef6-f49a73db295c",
  5861. "__expectedType__": "cc.AnimationClip"
  5862. },
  5863. "_id": ""
  5864. },
  5865. {
  5866. "__type__": "cc.CompPrefabInfo",
  5867. "fileId": "5fk3s642xCZZYIYkRixmgP"
  5868. },
  5869. {
  5870. "__type__": "cc.PrefabInfo",
  5871. "root": {
  5872. "__id__": 1
  5873. },
  5874. "asset": {
  5875. "__id__": 0
  5876. },
  5877. "fileId": "e8y6Qy8F9JsL1mt818oVBN",
  5878. "instance": null,
  5879. "targetOverrides": null,
  5880. "nestedPrefabInstanceRoots": null
  5881. },
  5882. {
  5883. "__type__": "cc.Node",
  5884. "_name": "Bg",
  5885. "_objFlags": 0,
  5886. "__editorExtras__": {},
  5887. "_parent": {
  5888. "__id__": 285
  5889. },
  5890. "_children": [
  5891. {
  5892. "__id__": 295
  5893. },
  5894. {
  5895. "__id__": 303
  5896. },
  5897. {
  5898. "__id__": 309
  5899. },
  5900. {
  5901. "__id__": 317
  5902. },
  5903. {
  5904. "__id__": 337
  5905. },
  5906. {
  5907. "__id__": 345
  5908. }
  5909. ],
  5910. "_active": true,
  5911. "_components": [
  5912. {
  5913. "__id__": 359
  5914. },
  5915. {
  5916. "__id__": 361
  5917. }
  5918. ],
  5919. "_prefab": {
  5920. "__id__": 363
  5921. },
  5922. "_lpos": {
  5923. "__type__": "cc.Vec3",
  5924. "x": 0,
  5925. "y": -92.24199999999996,
  5926. "z": 0
  5927. },
  5928. "_lrot": {
  5929. "__type__": "cc.Quat",
  5930. "x": 0,
  5931. "y": 0,
  5932. "z": 0,
  5933. "w": 1
  5934. },
  5935. "_lscale": {
  5936. "__type__": "cc.Vec3",
  5937. "x": 1,
  5938. "y": 1,
  5939. "z": 1
  5940. },
  5941. "_mobility": 0,
  5942. "_layer": 33554432,
  5943. "_euler": {
  5944. "__type__": "cc.Vec3",
  5945. "x": 0,
  5946. "y": 0,
  5947. "z": 0
  5948. },
  5949. "_id": ""
  5950. },
  5951. {
  5952. "__type__": "cc.Node",
  5953. "_name": "btn_HightValueClose",
  5954. "_objFlags": 0,
  5955. "__editorExtras__": {},
  5956. "_parent": {
  5957. "__id__": 294
  5958. },
  5959. "_children": [],
  5960. "_active": true,
  5961. "_components": [
  5962. {
  5963. "__id__": 296
  5964. },
  5965. {
  5966. "__id__": 298
  5967. },
  5968. {
  5969. "__id__": 300
  5970. }
  5971. ],
  5972. "_prefab": {
  5973. "__id__": 302
  5974. },
  5975. "_lpos": {
  5976. "__type__": "cc.Vec3",
  5977. "x": 287.512,
  5978. "y": 344.707,
  5979. "z": 0
  5980. },
  5981. "_lrot": {
  5982. "__type__": "cc.Quat",
  5983. "x": 0,
  5984. "y": 0,
  5985. "z": 0,
  5986. "w": 1
  5987. },
  5988. "_lscale": {
  5989. "__type__": "cc.Vec3",
  5990. "x": 1,
  5991. "y": 1,
  5992. "z": 1
  5993. },
  5994. "_mobility": 0,
  5995. "_layer": 33554432,
  5996. "_euler": {
  5997. "__type__": "cc.Vec3",
  5998. "x": 0,
  5999. "y": 0,
  6000. "z": 0
  6001. },
  6002. "_id": ""
  6003. },
  6004. {
  6005. "__type__": "cc.UITransform",
  6006. "_name": "",
  6007. "_objFlags": 0,
  6008. "__editorExtras__": {},
  6009. "node": {
  6010. "__id__": 295
  6011. },
  6012. "_enabled": true,
  6013. "__prefab": {
  6014. "__id__": 297
  6015. },
  6016. "_contentSize": {
  6017. "__type__": "cc.Size",
  6018. "width": 80,
  6019. "height": 80
  6020. },
  6021. "_anchorPoint": {
  6022. "__type__": "cc.Vec2",
  6023. "x": 0.5,
  6024. "y": 0.5
  6025. },
  6026. "_id": ""
  6027. },
  6028. {
  6029. "__type__": "cc.CompPrefabInfo",
  6030. "fileId": "71wYYNf0ZBQ7XLNoQkR4u+"
  6031. },
  6032. {
  6033. "__type__": "cc.Sprite",
  6034. "_name": "",
  6035. "_objFlags": 0,
  6036. "__editorExtras__": {},
  6037. "node": {
  6038. "__id__": 295
  6039. },
  6040. "_enabled": true,
  6041. "__prefab": {
  6042. "__id__": 299
  6043. },
  6044. "_customMaterial": null,
  6045. "_srcBlendFactor": 2,
  6046. "_dstBlendFactor": 4,
  6047. "_color": {
  6048. "__type__": "cc.Color",
  6049. "r": 255,
  6050. "g": 255,
  6051. "b": 255,
  6052. "a": 255
  6053. },
  6054. "_spriteFrame": {
  6055. "__uuid__": "54138f51-a62d-48d9-8dd2-b01485086792@f9941",
  6056. "__expectedType__": "cc.SpriteFrame"
  6057. },
  6058. "_type": 0,
  6059. "_fillType": 0,
  6060. "_sizeMode": 1,
  6061. "_fillCenter": {
  6062. "__type__": "cc.Vec2",
  6063. "x": 0,
  6064. "y": 0
  6065. },
  6066. "_fillStart": 0,
  6067. "_fillRange": 0,
  6068. "_isTrimmedMode": true,
  6069. "_useGrayscale": false,
  6070. "_atlas": null,
  6071. "_id": ""
  6072. },
  6073. {
  6074. "__type__": "cc.CompPrefabInfo",
  6075. "fileId": "a7fPHUwftBHKI/LMYaro6T"
  6076. },
  6077. {
  6078. "__type__": "cc.Button",
  6079. "_name": "",
  6080. "_objFlags": 0,
  6081. "__editorExtras__": {},
  6082. "node": {
  6083. "__id__": 295
  6084. },
  6085. "_enabled": true,
  6086. "__prefab": {
  6087. "__id__": 301
  6088. },
  6089. "clickEvents": [],
  6090. "_interactable": true,
  6091. "_transition": 3,
  6092. "_normalColor": {
  6093. "__type__": "cc.Color",
  6094. "r": 255,
  6095. "g": 255,
  6096. "b": 255,
  6097. "a": 255
  6098. },
  6099. "_hoverColor": {
  6100. "__type__": "cc.Color",
  6101. "r": 211,
  6102. "g": 211,
  6103. "b": 211,
  6104. "a": 255
  6105. },
  6106. "_pressedColor": {
  6107. "__type__": "cc.Color",
  6108. "r": 255,
  6109. "g": 255,
  6110. "b": 255,
  6111. "a": 255
  6112. },
  6113. "_disabledColor": {
  6114. "__type__": "cc.Color",
  6115. "r": 124,
  6116. "g": 124,
  6117. "b": 124,
  6118. "a": 255
  6119. },
  6120. "_normalSprite": null,
  6121. "_hoverSprite": null,
  6122. "_pressedSprite": null,
  6123. "_disabledSprite": null,
  6124. "_duration": 0.1,
  6125. "_zoomScale": 1.2,
  6126. "_target": null,
  6127. "_id": ""
  6128. },
  6129. {
  6130. "__type__": "cc.CompPrefabInfo",
  6131. "fileId": "ae5cLFuoxAKbyiD1V1e6I6"
  6132. },
  6133. {
  6134. "__type__": "cc.PrefabInfo",
  6135. "root": {
  6136. "__id__": 1
  6137. },
  6138. "asset": {
  6139. "__id__": 0
  6140. },
  6141. "fileId": "56KP56NFBFIr1Hil6ZCWsw",
  6142. "instance": null,
  6143. "targetOverrides": null,
  6144. "nestedPrefabInstanceRoots": null
  6145. },
  6146. {
  6147. "__type__": "cc.Node",
  6148. "_name": "title_gjzyh",
  6149. "_objFlags": 0,
  6150. "__editorExtras__": {},
  6151. "_parent": {
  6152. "__id__": 294
  6153. },
  6154. "_children": [],
  6155. "_active": true,
  6156. "_components": [
  6157. {
  6158. "__id__": 304
  6159. },
  6160. {
  6161. "__id__": 306
  6162. }
  6163. ],
  6164. "_prefab": {
  6165. "__id__": 308
  6166. },
  6167. "_lpos": {
  6168. "__type__": "cc.Vec3",
  6169. "x": 0,
  6170. "y": 507.725,
  6171. "z": 0
  6172. },
  6173. "_lrot": {
  6174. "__type__": "cc.Quat",
  6175. "x": 0,
  6176. "y": 0,
  6177. "z": 0,
  6178. "w": 1
  6179. },
  6180. "_lscale": {
  6181. "__type__": "cc.Vec3",
  6182. "x": 1,
  6183. "y": 1,
  6184. "z": 1
  6185. },
  6186. "_mobility": 0,
  6187. "_layer": 33554432,
  6188. "_euler": {
  6189. "__type__": "cc.Vec3",
  6190. "x": 0,
  6191. "y": 0,
  6192. "z": 0
  6193. },
  6194. "_id": ""
  6195. },
  6196. {
  6197. "__type__": "cc.UITransform",
  6198. "_name": "",
  6199. "_objFlags": 0,
  6200. "__editorExtras__": {},
  6201. "node": {
  6202. "__id__": 303
  6203. },
  6204. "_enabled": true,
  6205. "__prefab": {
  6206. "__id__": 305
  6207. },
  6208. "_contentSize": {
  6209. "__type__": "cc.Size",
  6210. "width": 665,
  6211. "height": 107
  6212. },
  6213. "_anchorPoint": {
  6214. "__type__": "cc.Vec2",
  6215. "x": 0.5,
  6216. "y": 0.5
  6217. },
  6218. "_id": ""
  6219. },
  6220. {
  6221. "__type__": "cc.CompPrefabInfo",
  6222. "fileId": "4cnKdOsFZK8LvwflaN8/fg"
  6223. },
  6224. {
  6225. "__type__": "cc.Sprite",
  6226. "_name": "",
  6227. "_objFlags": 0,
  6228. "__editorExtras__": {},
  6229. "node": {
  6230. "__id__": 303
  6231. },
  6232. "_enabled": true,
  6233. "__prefab": {
  6234. "__id__": 307
  6235. },
  6236. "_customMaterial": null,
  6237. "_srcBlendFactor": 2,
  6238. "_dstBlendFactor": 4,
  6239. "_color": {
  6240. "__type__": "cc.Color",
  6241. "r": 255,
  6242. "g": 255,
  6243. "b": 255,
  6244. "a": 255
  6245. },
  6246. "_spriteFrame": {
  6247. "__uuid__": "0e8a4e26-b5b6-4a34-bd84-0e934142474c@f9941",
  6248. "__expectedType__": "cc.SpriteFrame"
  6249. },
  6250. "_type": 0,
  6251. "_fillType": 0,
  6252. "_sizeMode": 1,
  6253. "_fillCenter": {
  6254. "__type__": "cc.Vec2",
  6255. "x": 0,
  6256. "y": 0
  6257. },
  6258. "_fillStart": 0,
  6259. "_fillRange": 0,
  6260. "_isTrimmedMode": true,
  6261. "_useGrayscale": false,
  6262. "_atlas": null,
  6263. "_id": ""
  6264. },
  6265. {
  6266. "__type__": "cc.CompPrefabInfo",
  6267. "fileId": "51Eh+M3GZEvId33chGH6cz"
  6268. },
  6269. {
  6270. "__type__": "cc.PrefabInfo",
  6271. "root": {
  6272. "__id__": 1
  6273. },
  6274. "asset": {
  6275. "__id__": 0
  6276. },
  6277. "fileId": "4am9mXn7FKFINEtcc/FlB6",
  6278. "instance": null,
  6279. "targetOverrides": null,
  6280. "nestedPrefabInstanceRoots": null
  6281. },
  6282. {
  6283. "__type__": "cc.Node",
  6284. "_name": "lab_tips",
  6285. "_objFlags": 0,
  6286. "__editorExtras__": {},
  6287. "_parent": {
  6288. "__id__": 294
  6289. },
  6290. "_children": [],
  6291. "_active": true,
  6292. "_components": [
  6293. {
  6294. "__id__": 310
  6295. },
  6296. {
  6297. "__id__": 312
  6298. },
  6299. {
  6300. "__id__": 314
  6301. }
  6302. ],
  6303. "_prefab": {
  6304. "__id__": 316
  6305. },
  6306. "_lpos": {
  6307. "__type__": "cc.Vec3",
  6308. "x": -6.483,
  6309. "y": 95.096,
  6310. "z": 0
  6311. },
  6312. "_lrot": {
  6313. "__type__": "cc.Quat",
  6314. "x": 0,
  6315. "y": 0,
  6316. "z": 0,
  6317. "w": 1
  6318. },
  6319. "_lscale": {
  6320. "__type__": "cc.Vec3",
  6321. "x": 1,
  6322. "y": 1,
  6323. "z": 1
  6324. },
  6325. "_mobility": 0,
  6326. "_layer": 33554432,
  6327. "_euler": {
  6328. "__type__": "cc.Vec3",
  6329. "x": 0,
  6330. "y": 0,
  6331. "z": 0
  6332. },
  6333. "_id": ""
  6334. },
  6335. {
  6336. "__type__": "cc.UITransform",
  6337. "_name": "",
  6338. "_objFlags": 0,
  6339. "__editorExtras__": {},
  6340. "node": {
  6341. "__id__": 309
  6342. },
  6343. "_enabled": true,
  6344. "__prefab": {
  6345. "__id__": 311
  6346. },
  6347. "_contentSize": {
  6348. "__type__": "cc.Size",
  6349. "width": 477.654296875,
  6350. "height": 130.39999999999998
  6351. },
  6352. "_anchorPoint": {
  6353. "__type__": "cc.Vec2",
  6354. "x": 0.5,
  6355. "y": 0.5
  6356. },
  6357. "_id": ""
  6358. },
  6359. {
  6360. "__type__": "cc.CompPrefabInfo",
  6361. "fileId": "5bXrF02KdPRqlmXoF9fqjC"
  6362. },
  6363. {
  6364. "__type__": "cc.Label",
  6365. "_name": "",
  6366. "_objFlags": 0,
  6367. "__editorExtras__": {},
  6368. "node": {
  6369. "__id__": 309
  6370. },
  6371. "_enabled": true,
  6372. "__prefab": {
  6373. "__id__": 313
  6374. },
  6375. "_customMaterial": null,
  6376. "_srcBlendFactor": 2,
  6377. "_dstBlendFactor": 4,
  6378. "_color": {
  6379. "__type__": "cc.Color",
  6380. "r": 32,
  6381. "g": 32,
  6382. "b": 32,
  6383. "a": 255
  6384. },
  6385. "_string": "鉴于您属于高价值用户。官方将为您\n承担{{0}}%手续费。奖金在向您招手,请\n维续努力!!!",
  6386. "_horizontalAlign": 0,
  6387. "_verticalAlign": 1,
  6388. "_actualFontSize": 28,
  6389. "_fontSize": 28,
  6390. "_fontFamily": "Arial",
  6391. "_lineHeight": 40,
  6392. "_overflow": 0,
  6393. "_enableWrapText": true,
  6394. "_font": null,
  6395. "_isSystemFontUsed": true,
  6396. "_spacingX": 0,
  6397. "_isItalic": false,
  6398. "_isBold": false,
  6399. "_isUnderline": false,
  6400. "_underlineHeight": 2,
  6401. "_cacheMode": 0,
  6402. "_enableOutline": false,
  6403. "_outlineColor": {
  6404. "__type__": "cc.Color",
  6405. "r": 0,
  6406. "g": 0,
  6407. "b": 0,
  6408. "a": 255
  6409. },
  6410. "_outlineWidth": 2,
  6411. "_enableShadow": false,
  6412. "_shadowColor": {
  6413. "__type__": "cc.Color",
  6414. "r": 0,
  6415. "g": 0,
  6416. "b": 0,
  6417. "a": 255
  6418. },
  6419. "_shadowOffset": {
  6420. "__type__": "cc.Vec2",
  6421. "x": 2,
  6422. "y": 2
  6423. },
  6424. "_shadowBlur": 2,
  6425. "_id": ""
  6426. },
  6427. {
  6428. "__type__": "cc.CompPrefabInfo",
  6429. "fileId": "8cSykB9jtGZKlLBiJsJtnO"
  6430. },
  6431. {
  6432. "__type__": "545c05XsG9GDJispEGWKvYv",
  6433. "_name": "",
  6434. "_objFlags": 0,
  6435. "__editorExtras__": {},
  6436. "node": {
  6437. "__id__": 309
  6438. },
  6439. "_enabled": true,
  6440. "__prefab": {
  6441. "__id__": 315
  6442. },
  6443. "templateMode": true,
  6444. "watchPath": "",
  6445. "labelType": "cc.Label",
  6446. "watchPathArr": [
  6447. "*.rates"
  6448. ],
  6449. "_id": ""
  6450. },
  6451. {
  6452. "__type__": "cc.CompPrefabInfo",
  6453. "fileId": "ddMv/H2w1KA7Y5fd6w1LQO"
  6454. },
  6455. {
  6456. "__type__": "cc.PrefabInfo",
  6457. "root": {
  6458. "__id__": 1
  6459. },
  6460. "asset": {
  6461. "__id__": 0
  6462. },
  6463. "fileId": "49X9a6fK1G1Y4/pHC9Afp8",
  6464. "instance": null,
  6465. "targetOverrides": null,
  6466. "nestedPrefabInstanceRoots": null
  6467. },
  6468. {
  6469. "__type__": "cc.Node",
  6470. "_name": "Node",
  6471. "_objFlags": 0,
  6472. "__editorExtras__": {},
  6473. "_parent": {
  6474. "__id__": 294
  6475. },
  6476. "_children": [
  6477. {
  6478. "__id__": 318
  6479. },
  6480. {
  6481. "__id__": 326
  6482. }
  6483. ],
  6484. "_active": true,
  6485. "_components": [
  6486. {
  6487. "__id__": 332
  6488. },
  6489. {
  6490. "__id__": 334
  6491. }
  6492. ],
  6493. "_prefab": {
  6494. "__id__": 336
  6495. },
  6496. "_lpos": {
  6497. "__type__": "cc.Vec3",
  6498. "x": 0,
  6499. "y": 226,
  6500. "z": 0
  6501. },
  6502. "_lrot": {
  6503. "__type__": "cc.Quat",
  6504. "x": 0,
  6505. "y": 0,
  6506. "z": 0,
  6507. "w": 1
  6508. },
  6509. "_lscale": {
  6510. "__type__": "cc.Vec3",
  6511. "x": 1,
  6512. "y": 1,
  6513. "z": 1
  6514. },
  6515. "_mobility": 0,
  6516. "_layer": 33554432,
  6517. "_euler": {
  6518. "__type__": "cc.Vec3",
  6519. "x": 0,
  6520. "y": 0,
  6521. "z": 0
  6522. },
  6523. "_id": ""
  6524. },
  6525. {
  6526. "__type__": "cc.Node",
  6527. "_name": "lab_money",
  6528. "_objFlags": 0,
  6529. "__editorExtras__": {},
  6530. "_parent": {
  6531. "__id__": 317
  6532. },
  6533. "_children": [],
  6534. "_active": true,
  6535. "_components": [
  6536. {
  6537. "__id__": 319
  6538. },
  6539. {
  6540. "__id__": 321
  6541. },
  6542. {
  6543. "__id__": 323
  6544. }
  6545. ],
  6546. "_prefab": {
  6547. "__id__": 325
  6548. },
  6549. "_lpos": {
  6550. "__type__": "cc.Vec3",
  6551. "x": -15,
  6552. "y": 7.1030000000000655,
  6553. "z": 0
  6554. },
  6555. "_lrot": {
  6556. "__type__": "cc.Quat",
  6557. "x": 0,
  6558. "y": 0,
  6559. "z": 0,
  6560. "w": 1
  6561. },
  6562. "_lscale": {
  6563. "__type__": "cc.Vec3",
  6564. "x": 1,
  6565. "y": 1,
  6566. "z": 1
  6567. },
  6568. "_mobility": 0,
  6569. "_layer": 33554432,
  6570. "_euler": {
  6571. "__type__": "cc.Vec3",
  6572. "x": 0,
  6573. "y": 0,
  6574. "z": 0
  6575. },
  6576. "_id": ""
  6577. },
  6578. {
  6579. "__type__": "cc.UITransform",
  6580. "_name": "",
  6581. "_objFlags": 0,
  6582. "__editorExtras__": {},
  6583. "node": {
  6584. "__id__": 318
  6585. },
  6586. "_enabled": true,
  6587. "__prefab": {
  6588. "__id__": 320
  6589. },
  6590. "_contentSize": {
  6591. "__type__": "cc.Size",
  6592. "width": 61.1767578125,
  6593. "height": 189
  6594. },
  6595. "_anchorPoint": {
  6596. "__type__": "cc.Vec2",
  6597. "x": 0.5,
  6598. "y": 0.5
  6599. },
  6600. "_id": ""
  6601. },
  6602. {
  6603. "__type__": "cc.CompPrefabInfo",
  6604. "fileId": "b331KaL2RIGqKUetFbyi2/"
  6605. },
  6606. {
  6607. "__type__": "cc.Label",
  6608. "_name": "",
  6609. "_objFlags": 0,
  6610. "__editorExtras__": {},
  6611. "node": {
  6612. "__id__": 318
  6613. },
  6614. "_enabled": true,
  6615. "__prefab": {
  6616. "__id__": 322
  6617. },
  6618. "_customMaterial": null,
  6619. "_srcBlendFactor": 2,
  6620. "_dstBlendFactor": 4,
  6621. "_color": {
  6622. "__type__": "cc.Color",
  6623. "r": 193,
  6624. "g": 57,
  6625. "b": 53,
  6626. "a": 255
  6627. },
  6628. "_string": "0",
  6629. "_horizontalAlign": 1,
  6630. "_verticalAlign": 1,
  6631. "_actualFontSize": 110,
  6632. "_fontSize": 110,
  6633. "_fontFamily": "Arial",
  6634. "_lineHeight": 150,
  6635. "_overflow": 0,
  6636. "_enableWrapText": true,
  6637. "_font": null,
  6638. "_isSystemFontUsed": true,
  6639. "_spacingX": 0,
  6640. "_isItalic": false,
  6641. "_isBold": true,
  6642. "_isUnderline": false,
  6643. "_underlineHeight": 2,
  6644. "_cacheMode": 0,
  6645. "_enableOutline": false,
  6646. "_outlineColor": {
  6647. "__type__": "cc.Color",
  6648. "r": 0,
  6649. "g": 0,
  6650. "b": 0,
  6651. "a": 255
  6652. },
  6653. "_outlineWidth": 2,
  6654. "_enableShadow": false,
  6655. "_shadowColor": {
  6656. "__type__": "cc.Color",
  6657. "r": 0,
  6658. "g": 0,
  6659. "b": 0,
  6660. "a": 255
  6661. },
  6662. "_shadowOffset": {
  6663. "__type__": "cc.Vec2",
  6664. "x": 2,
  6665. "y": 2
  6666. },
  6667. "_shadowBlur": 2,
  6668. "_id": ""
  6669. },
  6670. {
  6671. "__type__": "cc.CompPrefabInfo",
  6672. "fileId": "64v8n+n4BOPJN8MR1/Klwa"
  6673. },
  6674. {
  6675. "__type__": "545c05XsG9GDJispEGWKvYv",
  6676. "_name": "",
  6677. "_objFlags": 0,
  6678. "__editorExtras__": {},
  6679. "node": {
  6680. "__id__": 318
  6681. },
  6682. "_enabled": true,
  6683. "__prefab": {
  6684. "__id__": 324
  6685. },
  6686. "templateMode": false,
  6687. "watchPath": "*.creditNum",
  6688. "labelType": "cc.Label",
  6689. "watchPathArr": [],
  6690. "_id": ""
  6691. },
  6692. {
  6693. "__type__": "cc.CompPrefabInfo",
  6694. "fileId": "b3wts90WRJKpYpHtNXpgZw"
  6695. },
  6696. {
  6697. "__type__": "cc.PrefabInfo",
  6698. "root": {
  6699. "__id__": 1
  6700. },
  6701. "asset": {
  6702. "__id__": 0
  6703. },
  6704. "fileId": "6eysbioGpJCKc7jLiPGMpB",
  6705. "instance": null,
  6706. "targetOverrides": null,
  6707. "nestedPrefabInstanceRoots": null
  6708. },
  6709. {
  6710. "__type__": "cc.Node",
  6711. "_name": "Label",
  6712. "_objFlags": 0,
  6713. "__editorExtras__": {},
  6714. "_parent": {
  6715. "__id__": 317
  6716. },
  6717. "_children": [],
  6718. "_active": true,
  6719. "_components": [
  6720. {
  6721. "__id__": 327
  6722. },
  6723. {
  6724. "__id__": 329
  6725. }
  6726. ],
  6727. "_prefab": {
  6728. "__id__": 331
  6729. },
  6730. "_lpos": {
  6731. "__type__": "cc.Vec3",
  6732. "x": 31.58837890625,
  6733. "y": -17.572000000000003,
  6734. "z": 0
  6735. },
  6736. "_lrot": {
  6737. "__type__": "cc.Quat",
  6738. "x": 0,
  6739. "y": 0,
  6740. "z": 0,
  6741. "w": 1
  6742. },
  6743. "_lscale": {
  6744. "__type__": "cc.Vec3",
  6745. "x": 1,
  6746. "y": 1,
  6747. "z": 1
  6748. },
  6749. "_mobility": 0,
  6750. "_layer": 33554432,
  6751. "_euler": {
  6752. "__type__": "cc.Vec3",
  6753. "x": 0,
  6754. "y": 0,
  6755. "z": 0
  6756. },
  6757. "_id": ""
  6758. },
  6759. {
  6760. "__type__": "cc.UITransform",
  6761. "_name": "",
  6762. "_objFlags": 0,
  6763. "__editorExtras__": {},
  6764. "node": {
  6765. "__id__": 326
  6766. },
  6767. "_enabled": true,
  6768. "__prefab": {
  6769. "__id__": 328
  6770. },
  6771. "_contentSize": {
  6772. "__type__": "cc.Size",
  6773. "width": 28,
  6774. "height": 50.4
  6775. },
  6776. "_anchorPoint": {
  6777. "__type__": "cc.Vec2",
  6778. "x": 0.5,
  6779. "y": 0.5
  6780. },
  6781. "_id": ""
  6782. },
  6783. {
  6784. "__type__": "cc.CompPrefabInfo",
  6785. "fileId": "76aXEe+8pFxI375hu1j6P5"
  6786. },
  6787. {
  6788. "__type__": "cc.Label",
  6789. "_name": "",
  6790. "_objFlags": 0,
  6791. "__editorExtras__": {},
  6792. "node": {
  6793. "__id__": 326
  6794. },
  6795. "_enabled": true,
  6796. "__prefab": {
  6797. "__id__": 330
  6798. },
  6799. "_customMaterial": null,
  6800. "_srcBlendFactor": 2,
  6801. "_dstBlendFactor": 4,
  6802. "_color": {
  6803. "__type__": "cc.Color",
  6804. "r": 193,
  6805. "g": 57,
  6806. "b": 53,
  6807. "a": 255
  6808. },
  6809. "_string": "元",
  6810. "_horizontalAlign": 1,
  6811. "_verticalAlign": 1,
  6812. "_actualFontSize": 28,
  6813. "_fontSize": 28,
  6814. "_fontFamily": "Arial",
  6815. "_lineHeight": 40,
  6816. "_overflow": 0,
  6817. "_enableWrapText": true,
  6818. "_font": null,
  6819. "_isSystemFontUsed": true,
  6820. "_spacingX": 0,
  6821. "_isItalic": false,
  6822. "_isBold": true,
  6823. "_isUnderline": false,
  6824. "_underlineHeight": 2,
  6825. "_cacheMode": 0,
  6826. "_enableOutline": false,
  6827. "_outlineColor": {
  6828. "__type__": "cc.Color",
  6829. "r": 0,
  6830. "g": 0,
  6831. "b": 0,
  6832. "a": 255
  6833. },
  6834. "_outlineWidth": 2,
  6835. "_enableShadow": false,
  6836. "_shadowColor": {
  6837. "__type__": "cc.Color",
  6838. "r": 0,
  6839. "g": 0,
  6840. "b": 0,
  6841. "a": 255
  6842. },
  6843. "_shadowOffset": {
  6844. "__type__": "cc.Vec2",
  6845. "x": 2,
  6846. "y": 2
  6847. },
  6848. "_shadowBlur": 2,
  6849. "_id": ""
  6850. },
  6851. {
  6852. "__type__": "cc.CompPrefabInfo",
  6853. "fileId": "502+7BoKhPq56pI/sbt4kt"
  6854. },
  6855. {
  6856. "__type__": "cc.PrefabInfo",
  6857. "root": {
  6858. "__id__": 1
  6859. },
  6860. "asset": {
  6861. "__id__": 0
  6862. },
  6863. "fileId": "f7Q/u+O0JJ/qfCiaznwbVc",
  6864. "instance": null,
  6865. "targetOverrides": null,
  6866. "nestedPrefabInstanceRoots": null
  6867. },
  6868. {
  6869. "__type__": "cc.UITransform",
  6870. "_name": "",
  6871. "_objFlags": 0,
  6872. "__editorExtras__": {},
  6873. "node": {
  6874. "__id__": 317
  6875. },
  6876. "_enabled": true,
  6877. "__prefab": {
  6878. "__id__": 333
  6879. },
  6880. "_contentSize": {
  6881. "__type__": "cc.Size",
  6882. "width": 91.1767578125,
  6883. "height": 100
  6884. },
  6885. "_anchorPoint": {
  6886. "__type__": "cc.Vec2",
  6887. "x": 0.5,
  6888. "y": 0.5
  6889. },
  6890. "_id": ""
  6891. },
  6892. {
  6893. "__type__": "cc.CompPrefabInfo",
  6894. "fileId": "4dhoyh8rBEGrNoKjRO1HNr"
  6895. },
  6896. {
  6897. "__type__": "cc.Layout",
  6898. "_name": "",
  6899. "_objFlags": 0,
  6900. "__editorExtras__": {},
  6901. "node": {
  6902. "__id__": 317
  6903. },
  6904. "_enabled": true,
  6905. "__prefab": {
  6906. "__id__": 335
  6907. },
  6908. "_resizeMode": 1,
  6909. "_layoutType": 1,
  6910. "_cellSize": {
  6911. "__type__": "cc.Size",
  6912. "width": 40,
  6913. "height": 40
  6914. },
  6915. "_startAxis": 0,
  6916. "_paddingLeft": 0,
  6917. "_paddingRight": 0,
  6918. "_paddingTop": 0,
  6919. "_paddingBottom": 0,
  6920. "_spacingX": 2,
  6921. "_spacingY": 0,
  6922. "_verticalDirection": 1,
  6923. "_horizontalDirection": 0,
  6924. "_constraint": 0,
  6925. "_constraintNum": 2,
  6926. "_affectedByScale": false,
  6927. "_isAlign": false,
  6928. "_id": ""
  6929. },
  6930. {
  6931. "__type__": "cc.CompPrefabInfo",
  6932. "fileId": "c8JAnvKHNO5YpL0ebuc7GV"
  6933. },
  6934. {
  6935. "__type__": "cc.PrefabInfo",
  6936. "root": {
  6937. "__id__": 1
  6938. },
  6939. "asset": {
  6940. "__id__": 0
  6941. },
  6942. "fileId": "4fQTsz6sdGArwAO4Vhw9pZ",
  6943. "instance": null,
  6944. "targetOverrides": null,
  6945. "nestedPrefabInstanceRoots": null
  6946. },
  6947. {
  6948. "__type__": "cc.Node",
  6949. "_name": "RichText",
  6950. "_objFlags": 0,
  6951. "__editorExtras__": {},
  6952. "_parent": {
  6953. "__id__": 294
  6954. },
  6955. "_children": [],
  6956. "_active": true,
  6957. "_components": [
  6958. {
  6959. "__id__": 338
  6960. },
  6961. {
  6962. "__id__": 340
  6963. },
  6964. {
  6965. "__id__": 342
  6966. }
  6967. ],
  6968. "_prefab": {
  6969. "__id__": 344
  6970. },
  6971. "_lpos": {
  6972. "__type__": "cc.Vec3",
  6973. "x": -2.58,
  6974. "y": -319.321,
  6975. "z": 0
  6976. },
  6977. "_lrot": {
  6978. "__type__": "cc.Quat",
  6979. "x": 0,
  6980. "y": 0,
  6981. "z": 0,
  6982. "w": 1
  6983. },
  6984. "_lscale": {
  6985. "__type__": "cc.Vec3",
  6986. "x": 1,
  6987. "y": 1,
  6988. "z": 1
  6989. },
  6990. "_mobility": 0,
  6991. "_layer": 33554432,
  6992. "_euler": {
  6993. "__type__": "cc.Vec3",
  6994. "x": 0,
  6995. "y": 0,
  6996. "z": 0
  6997. },
  6998. "_id": ""
  6999. },
  7000. {
  7001. "__type__": "cc.UITransform",
  7002. "_name": "",
  7003. "_objFlags": 0,
  7004. "__editorExtras__": {},
  7005. "node": {
  7006. "__id__": 337
  7007. },
  7008. "_enabled": true,
  7009. "__prefab": {
  7010. "__id__": 339
  7011. },
  7012. "_contentSize": {
  7013. "__type__": "cc.Size",
  7014. "width": 381.41015625,
  7015. "height": 31.5
  7016. },
  7017. "_anchorPoint": {
  7018. "__type__": "cc.Vec2",
  7019. "x": 0.5,
  7020. "y": 0.5
  7021. },
  7022. "_id": ""
  7023. },
  7024. {
  7025. "__type__": "cc.CompPrefabInfo",
  7026. "fileId": "596reJjSFC8alr7dZ6pgqA"
  7027. },
  7028. {
  7029. "__type__": "cc.RichText",
  7030. "_name": "",
  7031. "_objFlags": 0,
  7032. "__editorExtras__": {},
  7033. "node": {
  7034. "__id__": 337
  7035. },
  7036. "_enabled": true,
  7037. "__prefab": {
  7038. "__id__": 341
  7039. },
  7040. "_lineHeight": 25,
  7041. "_string": "金额仅差<color =#FFF07C>{{0}}元</color>付清手续费到账微信",
  7042. "_horizontalAlign": 0,
  7043. "_verticalAlign": 0,
  7044. "_fontSize": 24,
  7045. "_fontColor": {
  7046. "__type__": "cc.Color",
  7047. "r": 255,
  7048. "g": 255,
  7049. "b": 255,
  7050. "a": 255
  7051. },
  7052. "_maxWidth": 0,
  7053. "_fontFamily": "Arial",
  7054. "_font": null,
  7055. "_isSystemFontUsed": true,
  7056. "_userDefinedFont": null,
  7057. "_cacheMode": 0,
  7058. "_imageAtlas": null,
  7059. "_handleTouchEvent": true,
  7060. "_id": ""
  7061. },
  7062. {
  7063. "__type__": "cc.CompPrefabInfo",
  7064. "fileId": "9eiXU5u9RLiKFV0f7IN8MR"
  7065. },
  7066. {
  7067. "__type__": "545c05XsG9GDJispEGWKvYv",
  7068. "_name": "",
  7069. "_objFlags": 0,
  7070. "__editorExtras__": {},
  7071. "node": {
  7072. "__id__": 337
  7073. },
  7074. "_enabled": true,
  7075. "__prefab": {
  7076. "__id__": 343
  7077. },
  7078. "templateMode": true,
  7079. "watchPath": "",
  7080. "labelType": "cc.RichText",
  7081. "watchPathArr": [
  7082. "*.differ"
  7083. ],
  7084. "_id": ""
  7085. },
  7086. {
  7087. "__type__": "cc.CompPrefabInfo",
  7088. "fileId": "d48o+tv0VP7rvdlmoQ4Ysd"
  7089. },
  7090. {
  7091. "__type__": "cc.PrefabInfo",
  7092. "root": {
  7093. "__id__": 1
  7094. },
  7095. "asset": {
  7096. "__id__": 0
  7097. },
  7098. "fileId": "57tacvT2pBZ5f0DenknPcC",
  7099. "instance": null,
  7100. "targetOverrides": null,
  7101. "nestedPrefabInstanceRoots": null
  7102. },
  7103. {
  7104. "__type__": "cc.Node",
  7105. "_name": "btn_happyAccept",
  7106. "_objFlags": 0,
  7107. "__editorExtras__": {},
  7108. "_parent": {
  7109. "__id__": 294
  7110. },
  7111. "_children": [
  7112. {
  7113. "__id__": 346
  7114. }
  7115. ],
  7116. "_active": true,
  7117. "_components": [
  7118. {
  7119. "__id__": 352
  7120. },
  7121. {
  7122. "__id__": 354
  7123. },
  7124. {
  7125. "__id__": 356
  7126. }
  7127. ],
  7128. "_prefab": {
  7129. "__id__": 358
  7130. },
  7131. "_lpos": {
  7132. "__type__": "cc.Vec3",
  7133. "x": 0,
  7134. "y": -188.005,
  7135. "z": 0
  7136. },
  7137. "_lrot": {
  7138. "__type__": "cc.Quat",
  7139. "x": 0,
  7140. "y": 0,
  7141. "z": 0,
  7142. "w": 1
  7143. },
  7144. "_lscale": {
  7145. "__type__": "cc.Vec3",
  7146. "x": 1,
  7147. "y": 1,
  7148. "z": 1
  7149. },
  7150. "_mobility": 0,
  7151. "_layer": 33554432,
  7152. "_euler": {
  7153. "__type__": "cc.Vec3",
  7154. "x": 0,
  7155. "y": 0,
  7156. "z": 0
  7157. },
  7158. "_id": ""
  7159. },
  7160. {
  7161. "__type__": "cc.Node",
  7162. "_name": "Label",
  7163. "_objFlags": 512,
  7164. "__editorExtras__": {},
  7165. "_parent": {
  7166. "__id__": 345
  7167. },
  7168. "_children": [],
  7169. "_active": true,
  7170. "_components": [
  7171. {
  7172. "__id__": 347
  7173. },
  7174. {
  7175. "__id__": 349
  7176. }
  7177. ],
  7178. "_prefab": {
  7179. "__id__": 351
  7180. },
  7181. "_lpos": {
  7182. "__type__": "cc.Vec3",
  7183. "x": 0,
  7184. "y": -2.25,
  7185. "z": 0
  7186. },
  7187. "_lrot": {
  7188. "__type__": "cc.Quat",
  7189. "x": 0,
  7190. "y": 0,
  7191. "z": 0,
  7192. "w": 1
  7193. },
  7194. "_lscale": {
  7195. "__type__": "cc.Vec3",
  7196. "x": 1,
  7197. "y": 1,
  7198. "z": 1
  7199. },
  7200. "_mobility": 0,
  7201. "_layer": 33554432,
  7202. "_euler": {
  7203. "__type__": "cc.Vec3",
  7204. "x": 0,
  7205. "y": 0,
  7206. "z": 0
  7207. },
  7208. "_id": ""
  7209. },
  7210. {
  7211. "__type__": "cc.UITransform",
  7212. "_name": "",
  7213. "_objFlags": 0,
  7214. "__editorExtras__": {},
  7215. "node": {
  7216. "__id__": 346
  7217. },
  7218. "_enabled": true,
  7219. "__prefab": {
  7220. "__id__": 348
  7221. },
  7222. "_contentSize": {
  7223. "__type__": "cc.Size",
  7224. "width": 200,
  7225. "height": 60
  7226. },
  7227. "_anchorPoint": {
  7228. "__type__": "cc.Vec2",
  7229. "x": 0.5,
  7230. "y": 0.5
  7231. },
  7232. "_id": ""
  7233. },
  7234. {
  7235. "__type__": "cc.CompPrefabInfo",
  7236. "fileId": "b2jnyxpc5ME6M+eju83z3Z"
  7237. },
  7238. {
  7239. "__type__": "cc.Label",
  7240. "_name": "",
  7241. "_objFlags": 0,
  7242. "__editorExtras__": {},
  7243. "node": {
  7244. "__id__": 346
  7245. },
  7246. "_enabled": true,
  7247. "__prefab": {
  7248. "__id__": 350
  7249. },
  7250. "_customMaterial": null,
  7251. "_srcBlendFactor": 2,
  7252. "_dstBlendFactor": 4,
  7253. "_color": {
  7254. "__type__": "cc.Color",
  7255. "r": 255,
  7256. "g": 255,
  7257. "b": 255,
  7258. "a": 255
  7259. },
  7260. "_string": "开心收下",
  7261. "_horizontalAlign": 1,
  7262. "_verticalAlign": 1,
  7263. "_actualFontSize": 48,
  7264. "_fontSize": 48,
  7265. "_fontFamily": "Arial",
  7266. "_lineHeight": 60,
  7267. "_overflow": 1,
  7268. "_enableWrapText": false,
  7269. "_font": null,
  7270. "_isSystemFontUsed": true,
  7271. "_spacingX": 0,
  7272. "_isItalic": false,
  7273. "_isBold": true,
  7274. "_isUnderline": false,
  7275. "_underlineHeight": 2,
  7276. "_cacheMode": 0,
  7277. "_enableOutline": true,
  7278. "_outlineColor": {
  7279. "__type__": "cc.Color",
  7280. "r": 88,
  7281. "g": 42,
  7282. "b": 9,
  7283. "a": 255
  7284. },
  7285. "_outlineWidth": 4,
  7286. "_enableShadow": false,
  7287. "_shadowColor": {
  7288. "__type__": "cc.Color",
  7289. "r": 0,
  7290. "g": 0,
  7291. "b": 0,
  7292. "a": 255
  7293. },
  7294. "_shadowOffset": {
  7295. "__type__": "cc.Vec2",
  7296. "x": 2,
  7297. "y": 2
  7298. },
  7299. "_shadowBlur": 2,
  7300. "_id": ""
  7301. },
  7302. {
  7303. "__type__": "cc.CompPrefabInfo",
  7304. "fileId": "adHky2gWdFEr9pinpdGiR0"
  7305. },
  7306. {
  7307. "__type__": "cc.PrefabInfo",
  7308. "root": {
  7309. "__id__": 1
  7310. },
  7311. "asset": {
  7312. "__id__": 0
  7313. },
  7314. "fileId": "6bnAgNmQhKVpNcc3G+GBWH",
  7315. "instance": null,
  7316. "targetOverrides": null,
  7317. "nestedPrefabInstanceRoots": null
  7318. },
  7319. {
  7320. "__type__": "cc.UITransform",
  7321. "_name": "",
  7322. "_objFlags": 0,
  7323. "__editorExtras__": {},
  7324. "node": {
  7325. "__id__": 345
  7326. },
  7327. "_enabled": true,
  7328. "__prefab": {
  7329. "__id__": 353
  7330. },
  7331. "_contentSize": {
  7332. "__type__": "cc.Size",
  7333. "width": 602,
  7334. "height": 141
  7335. },
  7336. "_anchorPoint": {
  7337. "__type__": "cc.Vec2",
  7338. "x": 0.5,
  7339. "y": 0.5
  7340. },
  7341. "_id": ""
  7342. },
  7343. {
  7344. "__type__": "cc.CompPrefabInfo",
  7345. "fileId": "76Z3tlvm9L7r/95mR2hSf6"
  7346. },
  7347. {
  7348. "__type__": "cc.Sprite",
  7349. "_name": "",
  7350. "_objFlags": 0,
  7351. "__editorExtras__": {},
  7352. "node": {
  7353. "__id__": 345
  7354. },
  7355. "_enabled": true,
  7356. "__prefab": {
  7357. "__id__": 355
  7358. },
  7359. "_customMaterial": null,
  7360. "_srcBlendFactor": 2,
  7361. "_dstBlendFactor": 4,
  7362. "_color": {
  7363. "__type__": "cc.Color",
  7364. "r": 255,
  7365. "g": 255,
  7366. "b": 255,
  7367. "a": 255
  7368. },
  7369. "_spriteFrame": {
  7370. "__uuid__": "4c6cc9d8-7cec-4eba-acba-fef2a3f62688@f9941",
  7371. "__expectedType__": "cc.SpriteFrame"
  7372. },
  7373. "_type": 1,
  7374. "_fillType": 0,
  7375. "_sizeMode": 2,
  7376. "_fillCenter": {
  7377. "__type__": "cc.Vec2",
  7378. "x": 0,
  7379. "y": 0
  7380. },
  7381. "_fillStart": 0,
  7382. "_fillRange": 0,
  7383. "_isTrimmedMode": true,
  7384. "_useGrayscale": false,
  7385. "_atlas": null,
  7386. "_id": ""
  7387. },
  7388. {
  7389. "__type__": "cc.CompPrefabInfo",
  7390. "fileId": "d2OtskXYBA+Y0NlSVDcw2O"
  7391. },
  7392. {
  7393. "__type__": "cc.Button",
  7394. "_name": "",
  7395. "_objFlags": 0,
  7396. "__editorExtras__": {},
  7397. "node": {
  7398. "__id__": 345
  7399. },
  7400. "_enabled": true,
  7401. "__prefab": {
  7402. "__id__": 357
  7403. },
  7404. "clickEvents": [],
  7405. "_interactable": true,
  7406. "_transition": 3,
  7407. "_normalColor": {
  7408. "__type__": "cc.Color",
  7409. "r": 214,
  7410. "g": 214,
  7411. "b": 214,
  7412. "a": 255
  7413. },
  7414. "_hoverColor": {
  7415. "__type__": "cc.Color",
  7416. "r": 211,
  7417. "g": 211,
  7418. "b": 211,
  7419. "a": 255
  7420. },
  7421. "_pressedColor": {
  7422. "__type__": "cc.Color",
  7423. "r": 255,
  7424. "g": 255,
  7425. "b": 255,
  7426. "a": 255
  7427. },
  7428. "_disabledColor": {
  7429. "__type__": "cc.Color",
  7430. "r": 124,
  7431. "g": 124,
  7432. "b": 124,
  7433. "a": 255
  7434. },
  7435. "_normalSprite": {
  7436. "__uuid__": "4c6cc9d8-7cec-4eba-acba-fef2a3f62688@f9941",
  7437. "__expectedType__": "cc.SpriteFrame"
  7438. },
  7439. "_hoverSprite": null,
  7440. "_pressedSprite": null,
  7441. "_disabledSprite": null,
  7442. "_duration": 0.1,
  7443. "_zoomScale": 1.2,
  7444. "_target": {
  7445. "__id__": 345
  7446. },
  7447. "_id": ""
  7448. },
  7449. {
  7450. "__type__": "cc.CompPrefabInfo",
  7451. "fileId": "cfK10YnwxPUJIFeg9pHz6q"
  7452. },
  7453. {
  7454. "__type__": "cc.PrefabInfo",
  7455. "root": {
  7456. "__id__": 1
  7457. },
  7458. "asset": {
  7459. "__id__": 0
  7460. },
  7461. "fileId": "0fL2k3FehFmK5RbhXQRBC0",
  7462. "instance": null,
  7463. "targetOverrides": null,
  7464. "nestedPrefabInstanceRoots": null
  7465. },
  7466. {
  7467. "__type__": "cc.UITransform",
  7468. "_name": "",
  7469. "_objFlags": 0,
  7470. "__editorExtras__": {},
  7471. "node": {
  7472. "__id__": 294
  7473. },
  7474. "_enabled": true,
  7475. "__prefab": {
  7476. "__id__": 360
  7477. },
  7478. "_contentSize": {
  7479. "__type__": "cc.Size",
  7480. "width": 676,
  7481. "height": 766
  7482. },
  7483. "_anchorPoint": {
  7484. "__type__": "cc.Vec2",
  7485. "x": 0.5,
  7486. "y": 0.5
  7487. },
  7488. "_id": ""
  7489. },
  7490. {
  7491. "__type__": "cc.CompPrefabInfo",
  7492. "fileId": "5ehM7jq1VH85iSw2NOAkPL"
  7493. },
  7494. {
  7495. "__type__": "cc.Sprite",
  7496. "_name": "",
  7497. "_objFlags": 0,
  7498. "__editorExtras__": {},
  7499. "node": {
  7500. "__id__": 294
  7501. },
  7502. "_enabled": true,
  7503. "__prefab": {
  7504. "__id__": 362
  7505. },
  7506. "_customMaterial": null,
  7507. "_srcBlendFactor": 2,
  7508. "_dstBlendFactor": 4,
  7509. "_color": {
  7510. "__type__": "cc.Color",
  7511. "r": 255,
  7512. "g": 255,
  7513. "b": 255,
  7514. "a": 255
  7515. },
  7516. "_spriteFrame": {
  7517. "__uuid__": "42f12ca9-dcf4-45e9-baf0-cbf9a7338b86@f9941",
  7518. "__expectedType__": "cc.SpriteFrame"
  7519. },
  7520. "_type": 0,
  7521. "_fillType": 0,
  7522. "_sizeMode": 1,
  7523. "_fillCenter": {
  7524. "__type__": "cc.Vec2",
  7525. "x": 0,
  7526. "y": 0
  7527. },
  7528. "_fillStart": 0,
  7529. "_fillRange": 0,
  7530. "_isTrimmedMode": true,
  7531. "_useGrayscale": false,
  7532. "_atlas": null,
  7533. "_id": ""
  7534. },
  7535. {
  7536. "__type__": "cc.CompPrefabInfo",
  7537. "fileId": "ddsNzWQ9ROUK1McbsFsUWM"
  7538. },
  7539. {
  7540. "__type__": "cc.PrefabInfo",
  7541. "root": {
  7542. "__id__": 1
  7543. },
  7544. "asset": {
  7545. "__id__": 0
  7546. },
  7547. "fileId": "f8SHXNbIhIkbLKOCyMNcYw",
  7548. "instance": null,
  7549. "targetOverrides": null,
  7550. "nestedPrefabInstanceRoots": null
  7551. },
  7552. {
  7553. "__type__": "cc.UITransform",
  7554. "_name": "",
  7555. "_objFlags": 0,
  7556. "__editorExtras__": {},
  7557. "node": {
  7558. "__id__": 285
  7559. },
  7560. "_enabled": true,
  7561. "__prefab": {
  7562. "__id__": 365
  7563. },
  7564. "_contentSize": {
  7565. "__type__": "cc.Size",
  7566. "width": 720,
  7567. "height": 1200
  7568. },
  7569. "_anchorPoint": {
  7570. "__type__": "cc.Vec2",
  7571. "x": 0.5,
  7572. "y": 0.5
  7573. },
  7574. "_id": ""
  7575. },
  7576. {
  7577. "__type__": "cc.CompPrefabInfo",
  7578. "fileId": "71QZdEsCRBb6hftAdkYj4n"
  7579. },
  7580. {
  7581. "__type__": "cc.Animation",
  7582. "_name": "",
  7583. "_objFlags": 0,
  7584. "__editorExtras__": {},
  7585. "node": {
  7586. "__id__": 285
  7587. },
  7588. "_enabled": true,
  7589. "__prefab": {
  7590. "__id__": 367
  7591. },
  7592. "playOnLoad": false,
  7593. "_clips": [
  7594. {
  7595. "__uuid__": "215e6d81-2f46-4ee4-bdb9-75009426e99a",
  7596. "__expectedType__": "cc.AnimationClip"
  7597. }
  7598. ],
  7599. "_defaultClip": {
  7600. "__uuid__": "215e6d81-2f46-4ee4-bdb9-75009426e99a",
  7601. "__expectedType__": "cc.AnimationClip"
  7602. },
  7603. "_id": ""
  7604. },
  7605. {
  7606. "__type__": "cc.CompPrefabInfo",
  7607. "fileId": "0dENZHWKpJpbFzPz9E9qdE"
  7608. },
  7609. {
  7610. "__type__": "cc.PrefabInfo",
  7611. "root": {
  7612. "__id__": 1
  7613. },
  7614. "asset": {
  7615. "__id__": 0
  7616. },
  7617. "fileId": "55ioE1SgBPjpIdB1LIRgyO",
  7618. "instance": null,
  7619. "targetOverrides": null,
  7620. "nestedPrefabInstanceRoots": null
  7621. },
  7622. {
  7623. "__type__": "cc.Node",
  7624. "_name": "showNode4",
  7625. "_objFlags": 0,
  7626. "__editorExtras__": {},
  7627. "_parent": {
  7628. "__id__": 1
  7629. },
  7630. "_children": [
  7631. {
  7632. "__id__": 370
  7633. },
  7634. {
  7635. "__id__": 376
  7636. },
  7637. {
  7638. "__id__": 382
  7639. },
  7640. {
  7641. "__id__": 408
  7642. }
  7643. ],
  7644. "_active": false,
  7645. "_components": [
  7646. {
  7647. "__id__": 428
  7648. },
  7649. {
  7650. "__id__": 430
  7651. }
  7652. ],
  7653. "_prefab": {
  7654. "__id__": 432
  7655. },
  7656. "_lpos": {
  7657. "__type__": "cc.Vec3",
  7658. "x": 0,
  7659. "y": 0,
  7660. "z": 0
  7661. },
  7662. "_lrot": {
  7663. "__type__": "cc.Quat",
  7664. "x": 0,
  7665. "y": 0,
  7666. "z": 0,
  7667. "w": 1
  7668. },
  7669. "_lscale": {
  7670. "__type__": "cc.Vec3",
  7671. "x": 1,
  7672. "y": 1,
  7673. "z": 1
  7674. },
  7675. "_mobility": 0,
  7676. "_layer": 33554432,
  7677. "_euler": {
  7678. "__type__": "cc.Vec3",
  7679. "x": 0,
  7680. "y": 0,
  7681. "z": 0
  7682. },
  7683. "_id": ""
  7684. },
  7685. {
  7686. "__type__": "cc.Node",
  7687. "_name": "bg7",
  7688. "_objFlags": 0,
  7689. "__editorExtras__": {},
  7690. "_parent": {
  7691. "__id__": 369
  7692. },
  7693. "_children": [],
  7694. "_active": true,
  7695. "_components": [
  7696. {
  7697. "__id__": 371
  7698. },
  7699. {
  7700. "__id__": 373
  7701. }
  7702. ],
  7703. "_prefab": {
  7704. "__id__": 375
  7705. },
  7706. "_lpos": {
  7707. "__type__": "cc.Vec3",
  7708. "x": 0,
  7709. "y": 40.16700000000003,
  7710. "z": 0
  7711. },
  7712. "_lrot": {
  7713. "__type__": "cc.Quat",
  7714. "x": 0,
  7715. "y": 0,
  7716. "z": 0,
  7717. "w": 1
  7718. },
  7719. "_lscale": {
  7720. "__type__": "cc.Vec3",
  7721. "x": 1,
  7722. "y": 1,
  7723. "z": 1
  7724. },
  7725. "_mobility": 0,
  7726. "_layer": 33554432,
  7727. "_euler": {
  7728. "__type__": "cc.Vec3",
  7729. "x": 0,
  7730. "y": 0,
  7731. "z": 0
  7732. },
  7733. "_id": ""
  7734. },
  7735. {
  7736. "__type__": "cc.UITransform",
  7737. "_name": "",
  7738. "_objFlags": 0,
  7739. "__editorExtras__": {},
  7740. "node": {
  7741. "__id__": 370
  7742. },
  7743. "_enabled": true,
  7744. "__prefab": {
  7745. "__id__": 372
  7746. },
  7747. "_contentSize": {
  7748. "__type__": "cc.Size",
  7749. "width": 720,
  7750. "height": 438
  7751. },
  7752. "_anchorPoint": {
  7753. "__type__": "cc.Vec2",
  7754. "x": 0.5,
  7755. "y": 0.5
  7756. },
  7757. "_id": ""
  7758. },
  7759. {
  7760. "__type__": "cc.CompPrefabInfo",
  7761. "fileId": "18COf59lRF/LkAM5kZ0XAJ"
  7762. },
  7763. {
  7764. "__type__": "cc.Sprite",
  7765. "_name": "",
  7766. "_objFlags": 0,
  7767. "__editorExtras__": {},
  7768. "node": {
  7769. "__id__": 370
  7770. },
  7771. "_enabled": true,
  7772. "__prefab": {
  7773. "__id__": 374
  7774. },
  7775. "_customMaterial": null,
  7776. "_srcBlendFactor": 2,
  7777. "_dstBlendFactor": 4,
  7778. "_color": {
  7779. "__type__": "cc.Color",
  7780. "r": 255,
  7781. "g": 255,
  7782. "b": 255,
  7783. "a": 255
  7784. },
  7785. "_spriteFrame": {
  7786. "__uuid__": "e484d473-8469-43c9-b1ff-6fd4d56927b8@f9941",
  7787. "__expectedType__": "cc.SpriteFrame"
  7788. },
  7789. "_type": 0,
  7790. "_fillType": 0,
  7791. "_sizeMode": 1,
  7792. "_fillCenter": {
  7793. "__type__": "cc.Vec2",
  7794. "x": 0,
  7795. "y": 0
  7796. },
  7797. "_fillStart": 0,
  7798. "_fillRange": 0,
  7799. "_isTrimmedMode": true,
  7800. "_useGrayscale": false,
  7801. "_atlas": null,
  7802. "_id": ""
  7803. },
  7804. {
  7805. "__type__": "cc.CompPrefabInfo",
  7806. "fileId": "1e9Nt7/JlJcp2ww1ZgChmQ"
  7807. },
  7808. {
  7809. "__type__": "cc.PrefabInfo",
  7810. "root": {
  7811. "__id__": 1
  7812. },
  7813. "asset": {
  7814. "__id__": 0
  7815. },
  7816. "fileId": "16AbBU7FdABZRDzibDLIET",
  7817. "instance": null,
  7818. "targetOverrides": null,
  7819. "nestedPrefabInstanceRoots": null
  7820. },
  7821. {
  7822. "__type__": "cc.Node",
  7823. "_name": "title_wxdkz",
  7824. "_objFlags": 0,
  7825. "__editorExtras__": {},
  7826. "_parent": {
  7827. "__id__": 369
  7828. },
  7829. "_children": [],
  7830. "_active": true,
  7831. "_components": [
  7832. {
  7833. "__id__": 377
  7834. },
  7835. {
  7836. "__id__": 379
  7837. }
  7838. ],
  7839. "_prefab": {
  7840. "__id__": 381
  7841. },
  7842. "_lpos": {
  7843. "__type__": "cc.Vec3",
  7844. "x": 0,
  7845. "y": 352.6399999999999,
  7846. "z": 0
  7847. },
  7848. "_lrot": {
  7849. "__type__": "cc.Quat",
  7850. "x": 0,
  7851. "y": 0,
  7852. "z": 0,
  7853. "w": 1
  7854. },
  7855. "_lscale": {
  7856. "__type__": "cc.Vec3",
  7857. "x": 1,
  7858. "y": 1,
  7859. "z": 1
  7860. },
  7861. "_mobility": 0,
  7862. "_layer": 33554432,
  7863. "_euler": {
  7864. "__type__": "cc.Vec3",
  7865. "x": 0,
  7866. "y": 0,
  7867. "z": 0
  7868. },
  7869. "_id": ""
  7870. },
  7871. {
  7872. "__type__": "cc.UITransform",
  7873. "_name": "",
  7874. "_objFlags": 0,
  7875. "__editorExtras__": {},
  7876. "node": {
  7877. "__id__": 376
  7878. },
  7879. "_enabled": true,
  7880. "__prefab": {
  7881. "__id__": 378
  7882. },
  7883. "_contentSize": {
  7884. "__type__": "cc.Size",
  7885. "width": 462,
  7886. "height": 91
  7887. },
  7888. "_anchorPoint": {
  7889. "__type__": "cc.Vec2",
  7890. "x": 0.5,
  7891. "y": 0.5
  7892. },
  7893. "_id": ""
  7894. },
  7895. {
  7896. "__type__": "cc.CompPrefabInfo",
  7897. "fileId": "a7nN0mf0ZHGJ3IXQJVsCZT"
  7898. },
  7899. {
  7900. "__type__": "cc.Sprite",
  7901. "_name": "",
  7902. "_objFlags": 0,
  7903. "__editorExtras__": {},
  7904. "node": {
  7905. "__id__": 376
  7906. },
  7907. "_enabled": true,
  7908. "__prefab": {
  7909. "__id__": 380
  7910. },
  7911. "_customMaterial": null,
  7912. "_srcBlendFactor": 2,
  7913. "_dstBlendFactor": 4,
  7914. "_color": {
  7915. "__type__": "cc.Color",
  7916. "r": 255,
  7917. "g": 255,
  7918. "b": 255,
  7919. "a": 255
  7920. },
  7921. "_spriteFrame": {
  7922. "__uuid__": "58ee209e-8311-46ec-9979-456ad877be44@f9941",
  7923. "__expectedType__": "cc.SpriteFrame"
  7924. },
  7925. "_type": 0,
  7926. "_fillType": 0,
  7927. "_sizeMode": 1,
  7928. "_fillCenter": {
  7929. "__type__": "cc.Vec2",
  7930. "x": 0,
  7931. "y": 0
  7932. },
  7933. "_fillStart": 0,
  7934. "_fillRange": 0,
  7935. "_isTrimmedMode": true,
  7936. "_useGrayscale": false,
  7937. "_atlas": null,
  7938. "_id": ""
  7939. },
  7940. {
  7941. "__type__": "cc.CompPrefabInfo",
  7942. "fileId": "5f5lKbx4RGLbgsnNYLobk0"
  7943. },
  7944. {
  7945. "__type__": "cc.PrefabInfo",
  7946. "root": {
  7947. "__id__": 1
  7948. },
  7949. "asset": {
  7950. "__id__": 0
  7951. },
  7952. "fileId": "60ug6TqTJGS67Ea2NiD/rT",
  7953. "instance": null,
  7954. "targetOverrides": null,
  7955. "nestedPrefabInstanceRoots": null
  7956. },
  7957. {
  7958. "__type__": "cc.Node",
  7959. "_name": "Node",
  7960. "_objFlags": 0,
  7961. "__editorExtras__": {},
  7962. "_parent": {
  7963. "__id__": 369
  7964. },
  7965. "_children": [
  7966. {
  7967. "__id__": 383
  7968. },
  7969. {
  7970. "__id__": 389
  7971. },
  7972. {
  7973. "__id__": 397
  7974. }
  7975. ],
  7976. "_active": true,
  7977. "_components": [
  7978. {
  7979. "__id__": 403
  7980. },
  7981. {
  7982. "__id__": 405
  7983. }
  7984. ],
  7985. "_prefab": {
  7986. "__id__": 407
  7987. },
  7988. "_lpos": {
  7989. "__type__": "cc.Vec3",
  7990. "x": -314.355,
  7991. "y": 96.61599999999999,
  7992. "z": 0
  7993. },
  7994. "_lrot": {
  7995. "__type__": "cc.Quat",
  7996. "x": 0,
  7997. "y": 0,
  7998. "z": 0,
  7999. "w": 1
  8000. },
  8001. "_lscale": {
  8002. "__type__": "cc.Vec3",
  8003. "x": 1,
  8004. "y": 1,
  8005. "z": 1
  8006. },
  8007. "_mobility": 0,
  8008. "_layer": 33554432,
  8009. "_euler": {
  8010. "__type__": "cc.Vec3",
  8011. "x": 0,
  8012. "y": 0,
  8013. "z": 0
  8014. },
  8015. "_id": ""
  8016. },
  8017. {
  8018. "__type__": "cc.Node",
  8019. "_name": "Label",
  8020. "_objFlags": 0,
  8021. "__editorExtras__": {},
  8022. "_parent": {
  8023. "__id__": 382
  8024. },
  8025. "_children": [],
  8026. "_active": true,
  8027. "_components": [
  8028. {
  8029. "__id__": 384
  8030. },
  8031. {
  8032. "__id__": 386
  8033. }
  8034. ],
  8035. "_prefab": {
  8036. "__id__": 388
  8037. },
  8038. "_lpos": {
  8039. "__type__": "cc.Vec3",
  8040. "x": 64,
  8041. "y": 0,
  8042. "z": 0
  8043. },
  8044. "_lrot": {
  8045. "__type__": "cc.Quat",
  8046. "x": 0,
  8047. "y": 0,
  8048. "z": 0,
  8049. "w": 1
  8050. },
  8051. "_lscale": {
  8052. "__type__": "cc.Vec3",
  8053. "x": 1,
  8054. "y": 1,
  8055. "z": 1
  8056. },
  8057. "_mobility": 0,
  8058. "_layer": 33554432,
  8059. "_euler": {
  8060. "__type__": "cc.Vec3",
  8061. "x": 0,
  8062. "y": 0,
  8063. "z": 0
  8064. },
  8065. "_id": ""
  8066. },
  8067. {
  8068. "__type__": "cc.UITransform",
  8069. "_name": "",
  8070. "_objFlags": 0,
  8071. "__editorExtras__": {},
  8072. "node": {
  8073. "__id__": 383
  8074. },
  8075. "_enabled": true,
  8076. "__prefab": {
  8077. "__id__": 385
  8078. },
  8079. "_contentSize": {
  8080. "__type__": "cc.Size",
  8081. "width": 128,
  8082. "height": 96.2
  8083. },
  8084. "_anchorPoint": {
  8085. "__type__": "cc.Vec2",
  8086. "x": 0.5,
  8087. "y": 0.5
  8088. },
  8089. "_id": ""
  8090. },
  8091. {
  8092. "__type__": "cc.CompPrefabInfo",
  8093. "fileId": "93eNd8V4tPw4aYYLub+o3r"
  8094. },
  8095. {
  8096. "__type__": "cc.Label",
  8097. "_name": "",
  8098. "_objFlags": 0,
  8099. "__editorExtras__": {},
  8100. "node": {
  8101. "__id__": 383
  8102. },
  8103. "_enabled": true,
  8104. "__prefab": {
  8105. "__id__": 387
  8106. },
  8107. "_customMaterial": null,
  8108. "_srcBlendFactor": 2,
  8109. "_dstBlendFactor": 4,
  8110. "_color": {
  8111. "__type__": "cc.Color",
  8112. "r": 255,
  8113. "g": 255,
  8114. "b": 255,
  8115. "a": 255
  8116. },
  8117. "_string": "再赚",
  8118. "_horizontalAlign": 1,
  8119. "_verticalAlign": 1,
  8120. "_actualFontSize": 60,
  8121. "_fontSize": 60,
  8122. "_fontFamily": "Arial",
  8123. "_lineHeight": 70,
  8124. "_overflow": 0,
  8125. "_enableWrapText": true,
  8126. "_font": null,
  8127. "_isSystemFontUsed": true,
  8128. "_spacingX": 0,
  8129. "_isItalic": false,
  8130. "_isBold": true,
  8131. "_isUnderline": false,
  8132. "_underlineHeight": 2,
  8133. "_cacheMode": 0,
  8134. "_enableOutline": true,
  8135. "_outlineColor": {
  8136. "__type__": "cc.Color",
  8137. "r": 160,
  8138. "g": 105,
  8139. "b": 66,
  8140. "a": 255
  8141. },
  8142. "_outlineWidth": 4,
  8143. "_enableShadow": false,
  8144. "_shadowColor": {
  8145. "__type__": "cc.Color",
  8146. "r": 0,
  8147. "g": 0,
  8148. "b": 0,
  8149. "a": 255
  8150. },
  8151. "_shadowOffset": {
  8152. "__type__": "cc.Vec2",
  8153. "x": 2,
  8154. "y": 2
  8155. },
  8156. "_shadowBlur": 2,
  8157. "_id": ""
  8158. },
  8159. {
  8160. "__type__": "cc.CompPrefabInfo",
  8161. "fileId": "aaACCRzMBIK660DP2NBLkw"
  8162. },
  8163. {
  8164. "__type__": "cc.PrefabInfo",
  8165. "root": {
  8166. "__id__": 1
  8167. },
  8168. "asset": {
  8169. "__id__": 0
  8170. },
  8171. "fileId": "bc+N0L4JlJ4rvQIuG9RrYw",
  8172. "instance": null,
  8173. "targetOverrides": null,
  8174. "nestedPrefabInstanceRoots": null
  8175. },
  8176. {
  8177. "__type__": "cc.Node",
  8178. "_name": "lab_money",
  8179. "_objFlags": 0,
  8180. "__editorExtras__": {},
  8181. "_parent": {
  8182. "__id__": 382
  8183. },
  8184. "_children": [],
  8185. "_active": true,
  8186. "_components": [
  8187. {
  8188. "__id__": 390
  8189. },
  8190. {
  8191. "__id__": 392
  8192. },
  8193. {
  8194. "__id__": 394
  8195. }
  8196. ],
  8197. "_prefab": {
  8198. "__id__": 396
  8199. },
  8200. "_lpos": {
  8201. "__type__": "cc.Vec3",
  8202. "x": 240.94775390625,
  8203. "y": 0,
  8204. "z": 0
  8205. },
  8206. "_lrot": {
  8207. "__type__": "cc.Quat",
  8208. "x": 0,
  8209. "y": 0,
  8210. "z": 0,
  8211. "w": 1
  8212. },
  8213. "_lscale": {
  8214. "__type__": "cc.Vec3",
  8215. "x": 1,
  8216. "y": 1,
  8217. "z": 1
  8218. },
  8219. "_mobility": 0,
  8220. "_layer": 33554432,
  8221. "_euler": {
  8222. "__type__": "cc.Vec3",
  8223. "x": 0,
  8224. "y": 0,
  8225. "z": 0
  8226. },
  8227. "_id": ""
  8228. },
  8229. {
  8230. "__type__": "cc.UITransform",
  8231. "_name": "",
  8232. "_objFlags": 0,
  8233. "__editorExtras__": {},
  8234. "node": {
  8235. "__id__": 389
  8236. },
  8237. "_enabled": true,
  8238. "__prefab": {
  8239. "__id__": 391
  8240. },
  8241. "_contentSize": {
  8242. "__type__": "cc.Size",
  8243. "width": 225.8955078125,
  8244. "height": 96.2
  8245. },
  8246. "_anchorPoint": {
  8247. "__type__": "cc.Vec2",
  8248. "x": 0.5,
  8249. "y": 0.5
  8250. },
  8251. "_id": ""
  8252. },
  8253. {
  8254. "__type__": "cc.CompPrefabInfo",
  8255. "fileId": "7fRDIVSGlJubY0zFHJWnEK"
  8256. },
  8257. {
  8258. "__type__": "cc.Label",
  8259. "_name": "",
  8260. "_objFlags": 0,
  8261. "__editorExtras__": {},
  8262. "node": {
  8263. "__id__": 389
  8264. },
  8265. "_enabled": true,
  8266. "__prefab": {
  8267. "__id__": 393
  8268. },
  8269. "_customMaterial": null,
  8270. "_srcBlendFactor": 2,
  8271. "_dstBlendFactor": 4,
  8272. "_color": {
  8273. "__type__": "cc.Color",
  8274. "r": 197,
  8275. "g": 47,
  8276. "b": 47,
  8277. "a": 255
  8278. },
  8279. "_string": "{{0}}元",
  8280. "_horizontalAlign": 1,
  8281. "_verticalAlign": 1,
  8282. "_actualFontSize": 70,
  8283. "_fontSize": 70,
  8284. "_fontFamily": "Arial",
  8285. "_lineHeight": 70,
  8286. "_overflow": 0,
  8287. "_enableWrapText": true,
  8288. "_font": null,
  8289. "_isSystemFontUsed": true,
  8290. "_spacingX": 0,
  8291. "_isItalic": false,
  8292. "_isBold": true,
  8293. "_isUnderline": false,
  8294. "_underlineHeight": 2,
  8295. "_cacheMode": 0,
  8296. "_enableOutline": true,
  8297. "_outlineColor": {
  8298. "__type__": "cc.Color",
  8299. "r": 255,
  8300. "g": 255,
  8301. "b": 255,
  8302. "a": 255
  8303. },
  8304. "_outlineWidth": 4,
  8305. "_enableShadow": false,
  8306. "_shadowColor": {
  8307. "__type__": "cc.Color",
  8308. "r": 0,
  8309. "g": 0,
  8310. "b": 0,
  8311. "a": 255
  8312. },
  8313. "_shadowOffset": {
  8314. "__type__": "cc.Vec2",
  8315. "x": 2,
  8316. "y": 2
  8317. },
  8318. "_shadowBlur": 2,
  8319. "_id": ""
  8320. },
  8321. {
  8322. "__type__": "cc.CompPrefabInfo",
  8323. "fileId": "abCoh4I3lEHI8BhjSI2ecQ"
  8324. },
  8325. {
  8326. "__type__": "545c05XsG9GDJispEGWKvYv",
  8327. "_name": "",
  8328. "_objFlags": 0,
  8329. "__editorExtras__": {},
  8330. "node": {
  8331. "__id__": 389
  8332. },
  8333. "_enabled": true,
  8334. "__prefab": {
  8335. "__id__": 395
  8336. },
  8337. "templateMode": true,
  8338. "watchPath": "",
  8339. "labelType": "cc.Label",
  8340. "watchPathArr": [
  8341. "*.differ"
  8342. ],
  8343. "_id": ""
  8344. },
  8345. {
  8346. "__type__": "cc.CompPrefabInfo",
  8347. "fileId": "19s3NJOClLB58byZ4RE60R"
  8348. },
  8349. {
  8350. "__type__": "cc.PrefabInfo",
  8351. "root": {
  8352. "__id__": 1
  8353. },
  8354. "asset": {
  8355. "__id__": 0
  8356. },
  8357. "fileId": "b9Po+qEzVJ24V16hnOWJD/",
  8358. "instance": null,
  8359. "targetOverrides": null,
  8360. "nestedPrefabInstanceRoots": null
  8361. },
  8362. {
  8363. "__type__": "cc.Node",
  8364. "_name": "Label-001",
  8365. "_objFlags": 0,
  8366. "__editorExtras__": {},
  8367. "_parent": {
  8368. "__id__": 382
  8369. },
  8370. "_children": [],
  8371. "_active": true,
  8372. "_components": [
  8373. {
  8374. "__id__": 398
  8375. },
  8376. {
  8377. "__id__": 400
  8378. }
  8379. ],
  8380. "_prefab": {
  8381. "__id__": 402
  8382. },
  8383. "_lpos": {
  8384. "__type__": "cc.Vec3",
  8385. "x": 447.8955078125,
  8386. "y": 0,
  8387. "z": 0
  8388. },
  8389. "_lrot": {
  8390. "__type__": "cc.Quat",
  8391. "x": 0,
  8392. "y": 0,
  8393. "z": 0,
  8394. "w": 1
  8395. },
  8396. "_lscale": {
  8397. "__type__": "cc.Vec3",
  8398. "x": 1,
  8399. "y": 1,
  8400. "z": 1
  8401. },
  8402. "_mobility": 0,
  8403. "_layer": 33554432,
  8404. "_euler": {
  8405. "__type__": "cc.Vec3",
  8406. "x": 0,
  8407. "y": 0,
  8408. "z": 0
  8409. },
  8410. "_id": ""
  8411. },
  8412. {
  8413. "__type__": "cc.UITransform",
  8414. "_name": "",
  8415. "_objFlags": 0,
  8416. "__editorExtras__": {},
  8417. "node": {
  8418. "__id__": 397
  8419. },
  8420. "_enabled": true,
  8421. "__prefab": {
  8422. "__id__": 399
  8423. },
  8424. "_contentSize": {
  8425. "__type__": "cc.Size",
  8426. "width": 188,
  8427. "height": 96.2
  8428. },
  8429. "_anchorPoint": {
  8430. "__type__": "cc.Vec2",
  8431. "x": 0.5,
  8432. "y": 0.5
  8433. },
  8434. "_id": ""
  8435. },
  8436. {
  8437. "__type__": "cc.CompPrefabInfo",
  8438. "fileId": "cfvNgdqShDWJK1pQnT/Cvu"
  8439. },
  8440. {
  8441. "__type__": "cc.Label",
  8442. "_name": "",
  8443. "_objFlags": 0,
  8444. "__editorExtras__": {},
  8445. "node": {
  8446. "__id__": 397
  8447. },
  8448. "_enabled": true,
  8449. "__prefab": {
  8450. "__id__": 401
  8451. },
  8452. "_customMaterial": null,
  8453. "_srcBlendFactor": 2,
  8454. "_dstBlendFactor": 4,
  8455. "_color": {
  8456. "__type__": "cc.Color",
  8457. "r": 255,
  8458. "g": 255,
  8459. "b": 255,
  8460. "a": 255
  8461. },
  8462. "_string": "手续费",
  8463. "_horizontalAlign": 1,
  8464. "_verticalAlign": 1,
  8465. "_actualFontSize": 60,
  8466. "_fontSize": 60,
  8467. "_fontFamily": "Arial",
  8468. "_lineHeight": 70,
  8469. "_overflow": 0,
  8470. "_enableWrapText": true,
  8471. "_font": null,
  8472. "_isSystemFontUsed": true,
  8473. "_spacingX": 0,
  8474. "_isItalic": false,
  8475. "_isBold": true,
  8476. "_isUnderline": false,
  8477. "_underlineHeight": 2,
  8478. "_cacheMode": 0,
  8479. "_enableOutline": true,
  8480. "_outlineColor": {
  8481. "__type__": "cc.Color",
  8482. "r": 160,
  8483. "g": 105,
  8484. "b": 66,
  8485. "a": 255
  8486. },
  8487. "_outlineWidth": 4,
  8488. "_enableShadow": false,
  8489. "_shadowColor": {
  8490. "__type__": "cc.Color",
  8491. "r": 0,
  8492. "g": 0,
  8493. "b": 0,
  8494. "a": 255
  8495. },
  8496. "_shadowOffset": {
  8497. "__type__": "cc.Vec2",
  8498. "x": 2,
  8499. "y": 2
  8500. },
  8501. "_shadowBlur": 2,
  8502. "_id": ""
  8503. },
  8504. {
  8505. "__type__": "cc.CompPrefabInfo",
  8506. "fileId": "d49HPUapBAZ5y1BocAEF37"
  8507. },
  8508. {
  8509. "__type__": "cc.PrefabInfo",
  8510. "root": {
  8511. "__id__": 1
  8512. },
  8513. "asset": {
  8514. "__id__": 0
  8515. },
  8516. "fileId": "4a6FN+bzREYrCWccXafrxg",
  8517. "instance": null,
  8518. "targetOverrides": null,
  8519. "nestedPrefabInstanceRoots": null
  8520. },
  8521. {
  8522. "__type__": "cc.UITransform",
  8523. "_name": "",
  8524. "_objFlags": 0,
  8525. "__editorExtras__": {},
  8526. "node": {
  8527. "__id__": 382
  8528. },
  8529. "_enabled": true,
  8530. "__prefab": {
  8531. "__id__": 404
  8532. },
  8533. "_contentSize": {
  8534. "__type__": "cc.Size",
  8535. "width": 541.8955078125,
  8536. "height": 80
  8537. },
  8538. "_anchorPoint": {
  8539. "__type__": "cc.Vec2",
  8540. "x": 0,
  8541. "y": 0.5
  8542. },
  8543. "_id": ""
  8544. },
  8545. {
  8546. "__type__": "cc.CompPrefabInfo",
  8547. "fileId": "8eqo5/4wJMioRhAMr91lIf"
  8548. },
  8549. {
  8550. "__type__": "cc.Layout",
  8551. "_name": "",
  8552. "_objFlags": 0,
  8553. "__editorExtras__": {},
  8554. "node": {
  8555. "__id__": 382
  8556. },
  8557. "_enabled": true,
  8558. "__prefab": {
  8559. "__id__": 406
  8560. },
  8561. "_resizeMode": 1,
  8562. "_layoutType": 1,
  8563. "_cellSize": {
  8564. "__type__": "cc.Size",
  8565. "width": 40,
  8566. "height": 40
  8567. },
  8568. "_startAxis": 0,
  8569. "_paddingLeft": 0,
  8570. "_paddingRight": 0,
  8571. "_paddingTop": 0,
  8572. "_paddingBottom": 0,
  8573. "_spacingX": 0,
  8574. "_spacingY": 0,
  8575. "_verticalDirection": 1,
  8576. "_horizontalDirection": 0,
  8577. "_constraint": 0,
  8578. "_constraintNum": 2,
  8579. "_affectedByScale": false,
  8580. "_isAlign": false,
  8581. "_id": ""
  8582. },
  8583. {
  8584. "__type__": "cc.CompPrefabInfo",
  8585. "fileId": "a2e/tsFS5Pw4V85JrpLMzY"
  8586. },
  8587. {
  8588. "__type__": "cc.PrefabInfo",
  8589. "root": {
  8590. "__id__": 1
  8591. },
  8592. "asset": {
  8593. "__id__": 0
  8594. },
  8595. "fileId": "73Pc5ty3NJBLQ7S0c5jzuU",
  8596. "instance": null,
  8597. "targetOverrides": null,
  8598. "nestedPrefabInstanceRoots": null
  8599. },
  8600. {
  8601. "__type__": "cc.Node",
  8602. "_name": "Node-001",
  8603. "_objFlags": 0,
  8604. "__editorExtras__": {},
  8605. "_parent": {
  8606. "__id__": 369
  8607. },
  8608. "_children": [
  8609. {
  8610. "__id__": 409
  8611. },
  8612. {
  8613. "__id__": 415
  8614. }
  8615. ],
  8616. "_active": true,
  8617. "_components": [
  8618. {
  8619. "__id__": 423
  8620. },
  8621. {
  8622. "__id__": 425
  8623. }
  8624. ],
  8625. "_prefab": {
  8626. "__id__": 427
  8627. },
  8628. "_lpos": {
  8629. "__type__": "cc.Vec3",
  8630. "x": -217.004,
  8631. "y": 12.788000000000011,
  8632. "z": 0
  8633. },
  8634. "_lrot": {
  8635. "__type__": "cc.Quat",
  8636. "x": 0,
  8637. "y": 0,
  8638. "z": 0,
  8639. "w": 1
  8640. },
  8641. "_lscale": {
  8642. "__type__": "cc.Vec3",
  8643. "x": 1,
  8644. "y": 1,
  8645. "z": 1
  8646. },
  8647. "_mobility": 0,
  8648. "_layer": 33554432,
  8649. "_euler": {
  8650. "__type__": "cc.Vec3",
  8651. "x": 0,
  8652. "y": 0,
  8653. "z": 0
  8654. },
  8655. "_id": ""
  8656. },
  8657. {
  8658. "__type__": "cc.Node",
  8659. "_name": "Label",
  8660. "_objFlags": 0,
  8661. "__editorExtras__": {},
  8662. "_parent": {
  8663. "__id__": 408
  8664. },
  8665. "_children": [],
  8666. "_active": true,
  8667. "_components": [
  8668. {
  8669. "__id__": 410
  8670. },
  8671. {
  8672. "__id__": 412
  8673. }
  8674. ],
  8675. "_prefab": {
  8676. "__id__": 414
  8677. },
  8678. "_lpos": {
  8679. "__type__": "cc.Vec3",
  8680. "x": 124,
  8681. "y": 0,
  8682. "z": 0
  8683. },
  8684. "_lrot": {
  8685. "__type__": "cc.Quat",
  8686. "x": 0,
  8687. "y": 0,
  8688. "z": 0,
  8689. "w": 1
  8690. },
  8691. "_lscale": {
  8692. "__type__": "cc.Vec3",
  8693. "x": 1,
  8694. "y": 1,
  8695. "z": 1
  8696. },
  8697. "_mobility": 0,
  8698. "_layer": 33554432,
  8699. "_euler": {
  8700. "__type__": "cc.Vec3",
  8701. "x": 0,
  8702. "y": 0,
  8703. "z": 0
  8704. },
  8705. "_id": ""
  8706. },
  8707. {
  8708. "__type__": "cc.UITransform",
  8709. "_name": "",
  8710. "_objFlags": 0,
  8711. "__editorExtras__": {},
  8712. "node": {
  8713. "__id__": 409
  8714. },
  8715. "_enabled": true,
  8716. "__prefab": {
  8717. "__id__": 411
  8718. },
  8719. "_contentSize": {
  8720. "__type__": "cc.Size",
  8721. "width": 248,
  8722. "height": 96.2
  8723. },
  8724. "_anchorPoint": {
  8725. "__type__": "cc.Vec2",
  8726. "x": 0.5,
  8727. "y": 0.5
  8728. },
  8729. "_id": ""
  8730. },
  8731. {
  8732. "__type__": "cc.CompPrefabInfo",
  8733. "fileId": "94DUPDwvRFtLBKTOp+2Xdq"
  8734. },
  8735. {
  8736. "__type__": "cc.Label",
  8737. "_name": "",
  8738. "_objFlags": 0,
  8739. "__editorExtras__": {},
  8740. "node": {
  8741. "__id__": 409
  8742. },
  8743. "_enabled": true,
  8744. "__prefab": {
  8745. "__id__": 413
  8746. },
  8747. "_customMaterial": null,
  8748. "_srcBlendFactor": 2,
  8749. "_dstBlendFactor": 4,
  8750. "_color": {
  8751. "__type__": "cc.Color",
  8752. "r": 255,
  8753. "g": 255,
  8754. "b": 255,
  8755. "a": 255
  8756. },
  8757. "_string": "微信到账",
  8758. "_horizontalAlign": 1,
  8759. "_verticalAlign": 1,
  8760. "_actualFontSize": 60,
  8761. "_fontSize": 60,
  8762. "_fontFamily": "Arial",
  8763. "_lineHeight": 70,
  8764. "_overflow": 0,
  8765. "_enableWrapText": true,
  8766. "_font": null,
  8767. "_isSystemFontUsed": true,
  8768. "_spacingX": 0,
  8769. "_isItalic": false,
  8770. "_isBold": true,
  8771. "_isUnderline": false,
  8772. "_underlineHeight": 2,
  8773. "_cacheMode": 0,
  8774. "_enableOutline": true,
  8775. "_outlineColor": {
  8776. "__type__": "cc.Color",
  8777. "r": 160,
  8778. "g": 105,
  8779. "b": 66,
  8780. "a": 255
  8781. },
  8782. "_outlineWidth": 4,
  8783. "_enableShadow": false,
  8784. "_shadowColor": {
  8785. "__type__": "cc.Color",
  8786. "r": 0,
  8787. "g": 0,
  8788. "b": 0,
  8789. "a": 255
  8790. },
  8791. "_shadowOffset": {
  8792. "__type__": "cc.Vec2",
  8793. "x": 2,
  8794. "y": 2
  8795. },
  8796. "_shadowBlur": 2,
  8797. "_id": ""
  8798. },
  8799. {
  8800. "__type__": "cc.CompPrefabInfo",
  8801. "fileId": "57laKhwSNJFLBpLiJqVzG/"
  8802. },
  8803. {
  8804. "__type__": "cc.PrefabInfo",
  8805. "root": {
  8806. "__id__": 1
  8807. },
  8808. "asset": {
  8809. "__id__": 0
  8810. },
  8811. "fileId": "82CcvlmNRIq6LlUaFh1T6m",
  8812. "instance": null,
  8813. "targetOverrides": null,
  8814. "nestedPrefabInstanceRoots": null
  8815. },
  8816. {
  8817. "__type__": "cc.Node",
  8818. "_name": "lab_total",
  8819. "_objFlags": 0,
  8820. "__editorExtras__": {},
  8821. "_parent": {
  8822. "__id__": 408
  8823. },
  8824. "_children": [],
  8825. "_active": true,
  8826. "_components": [
  8827. {
  8828. "__id__": 416
  8829. },
  8830. {
  8831. "__id__": 418
  8832. },
  8833. {
  8834. "__id__": 420
  8835. }
  8836. ],
  8837. "_prefab": {
  8838. "__id__": 422
  8839. },
  8840. "_lpos": {
  8841. "__type__": "cc.Vec3",
  8842. "x": 353.165771484375,
  8843. "y": 0,
  8844. "z": 0
  8845. },
  8846. "_lrot": {
  8847. "__type__": "cc.Quat",
  8848. "x": 0,
  8849. "y": 0,
  8850. "z": 0,
  8851. "w": 1
  8852. },
  8853. "_lscale": {
  8854. "__type__": "cc.Vec3",
  8855. "x": 1,
  8856. "y": 1,
  8857. "z": 1
  8858. },
  8859. "_mobility": 0,
  8860. "_layer": 33554432,
  8861. "_euler": {
  8862. "__type__": "cc.Vec3",
  8863. "x": 0,
  8864. "y": 0,
  8865. "z": 0
  8866. },
  8867. "_id": ""
  8868. },
  8869. {
  8870. "__type__": "cc.UITransform",
  8871. "_name": "",
  8872. "_objFlags": 0,
  8873. "__editorExtras__": {},
  8874. "node": {
  8875. "__id__": 415
  8876. },
  8877. "_enabled": true,
  8878. "__prefab": {
  8879. "__id__": 417
  8880. },
  8881. "_contentSize": {
  8882. "__type__": "cc.Size",
  8883. "width": 210.33154296875,
  8884. "height": 96.2
  8885. },
  8886. "_anchorPoint": {
  8887. "__type__": "cc.Vec2",
  8888. "x": 0.5,
  8889. "y": 0.5
  8890. },
  8891. "_id": ""
  8892. },
  8893. {
  8894. "__type__": "cc.CompPrefabInfo",
  8895. "fileId": "6dLJUWz7xHZbLKRBU0fYYZ"
  8896. },
  8897. {
  8898. "__type__": "cc.Label",
  8899. "_name": "",
  8900. "_objFlags": 0,
  8901. "__editorExtras__": {},
  8902. "node": {
  8903. "__id__": 415
  8904. },
  8905. "_enabled": true,
  8906. "__prefab": {
  8907. "__id__": 419
  8908. },
  8909. "_customMaterial": null,
  8910. "_srcBlendFactor": 2,
  8911. "_dstBlendFactor": 4,
  8912. "_color": {
  8913. "__type__": "cc.Color",
  8914. "r": 197,
  8915. "g": 47,
  8916. "b": 47,
  8917. "a": 255
  8918. },
  8919. "_string": "{{0}}元",
  8920. "_horizontalAlign": 1,
  8921. "_verticalAlign": 1,
  8922. "_actualFontSize": 65,
  8923. "_fontSize": 65,
  8924. "_fontFamily": "Arial",
  8925. "_lineHeight": 70,
  8926. "_overflow": 0,
  8927. "_enableWrapText": true,
  8928. "_font": null,
  8929. "_isSystemFontUsed": true,
  8930. "_spacingX": 0,
  8931. "_isItalic": false,
  8932. "_isBold": true,
  8933. "_isUnderline": false,
  8934. "_underlineHeight": 2,
  8935. "_cacheMode": 0,
  8936. "_enableOutline": true,
  8937. "_outlineColor": {
  8938. "__type__": "cc.Color",
  8939. "r": 255,
  8940. "g": 255,
  8941. "b": 255,
  8942. "a": 255
  8943. },
  8944. "_outlineWidth": 4,
  8945. "_enableShadow": false,
  8946. "_shadowColor": {
  8947. "__type__": "cc.Color",
  8948. "r": 0,
  8949. "g": 0,
  8950. "b": 0,
  8951. "a": 255
  8952. },
  8953. "_shadowOffset": {
  8954. "__type__": "cc.Vec2",
  8955. "x": 2,
  8956. "y": 2
  8957. },
  8958. "_shadowBlur": 2,
  8959. "_id": ""
  8960. },
  8961. {
  8962. "__type__": "cc.CompPrefabInfo",
  8963. "fileId": "99cjlKMDZJSLxQPYKqvzSG"
  8964. },
  8965. {
  8966. "__type__": "545c05XsG9GDJispEGWKvYv",
  8967. "_name": "",
  8968. "_objFlags": 0,
  8969. "__editorExtras__": {},
  8970. "node": {
  8971. "__id__": 415
  8972. },
  8973. "_enabled": true,
  8974. "__prefab": {
  8975. "__id__": 421
  8976. },
  8977. "templateMode": true,
  8978. "watchPath": "",
  8979. "labelType": "cc.Label",
  8980. "watchPathArr": [
  8981. "*.money"
  8982. ],
  8983. "_id": ""
  8984. },
  8985. {
  8986. "__type__": "cc.CompPrefabInfo",
  8987. "fileId": "7fTUI9YktAnI2KuSrDvPbT"
  8988. },
  8989. {
  8990. "__type__": "cc.PrefabInfo",
  8991. "root": {
  8992. "__id__": 1
  8993. },
  8994. "asset": {
  8995. "__id__": 0
  8996. },
  8997. "fileId": "4dwBBObpFBL5KjDhSmp5x+",
  8998. "instance": null,
  8999. "targetOverrides": null,
  9000. "nestedPrefabInstanceRoots": null
  9001. },
  9002. {
  9003. "__type__": "cc.UITransform",
  9004. "_name": "",
  9005. "_objFlags": 0,
  9006. "__editorExtras__": {},
  9007. "node": {
  9008. "__id__": 408
  9009. },
  9010. "_enabled": true,
  9011. "__prefab": {
  9012. "__id__": 424
  9013. },
  9014. "_contentSize": {
  9015. "__type__": "cc.Size",
  9016. "width": 458.33154296875,
  9017. "height": 80
  9018. },
  9019. "_anchorPoint": {
  9020. "__type__": "cc.Vec2",
  9021. "x": 0,
  9022. "y": 0.5
  9023. },
  9024. "_id": ""
  9025. },
  9026. {
  9027. "__type__": "cc.CompPrefabInfo",
  9028. "fileId": "2dwckB/CZC/L9yMeS2lTsR"
  9029. },
  9030. {
  9031. "__type__": "cc.Layout",
  9032. "_name": "",
  9033. "_objFlags": 0,
  9034. "__editorExtras__": {},
  9035. "node": {
  9036. "__id__": 408
  9037. },
  9038. "_enabled": true,
  9039. "__prefab": {
  9040. "__id__": 426
  9041. },
  9042. "_resizeMode": 1,
  9043. "_layoutType": 1,
  9044. "_cellSize": {
  9045. "__type__": "cc.Size",
  9046. "width": 40,
  9047. "height": 40
  9048. },
  9049. "_startAxis": 0,
  9050. "_paddingLeft": 0,
  9051. "_paddingRight": 0,
  9052. "_paddingTop": 0,
  9053. "_paddingBottom": 0,
  9054. "_spacingX": 0,
  9055. "_spacingY": 0,
  9056. "_verticalDirection": 1,
  9057. "_horizontalDirection": 0,
  9058. "_constraint": 0,
  9059. "_constraintNum": 2,
  9060. "_affectedByScale": false,
  9061. "_isAlign": false,
  9062. "_id": ""
  9063. },
  9064. {
  9065. "__type__": "cc.CompPrefabInfo",
  9066. "fileId": "f2aoDfhNBLvIeMcFqSTE45"
  9067. },
  9068. {
  9069. "__type__": "cc.PrefabInfo",
  9070. "root": {
  9071. "__id__": 1
  9072. },
  9073. "asset": {
  9074. "__id__": 0
  9075. },
  9076. "fileId": "c2SXA0e2pETJwao7nzSJ2h",
  9077. "instance": null,
  9078. "targetOverrides": null,
  9079. "nestedPrefabInstanceRoots": null
  9080. },
  9081. {
  9082. "__type__": "cc.UITransform",
  9083. "_name": "",
  9084. "_objFlags": 0,
  9085. "__editorExtras__": {},
  9086. "node": {
  9087. "__id__": 369
  9088. },
  9089. "_enabled": true,
  9090. "__prefab": {
  9091. "__id__": 429
  9092. },
  9093. "_contentSize": {
  9094. "__type__": "cc.Size",
  9095. "width": 720,
  9096. "height": 300
  9097. },
  9098. "_anchorPoint": {
  9099. "__type__": "cc.Vec2",
  9100. "x": 0.5,
  9101. "y": 0.5
  9102. },
  9103. "_id": ""
  9104. },
  9105. {
  9106. "__type__": "cc.CompPrefabInfo",
  9107. "fileId": "183SiJegFL4IUGvwBmFpzP"
  9108. },
  9109. {
  9110. "__type__": "cc.Animation",
  9111. "_name": "",
  9112. "_objFlags": 0,
  9113. "__editorExtras__": {},
  9114. "node": {
  9115. "__id__": 369
  9116. },
  9117. "_enabled": true,
  9118. "__prefab": {
  9119. "__id__": 431
  9120. },
  9121. "playOnLoad": false,
  9122. "_clips": [
  9123. {
  9124. "__uuid__": "215e6d81-2f46-4ee4-bdb9-75009426e99a",
  9125. "__expectedType__": "cc.AnimationClip"
  9126. }
  9127. ],
  9128. "_defaultClip": {
  9129. "__uuid__": "215e6d81-2f46-4ee4-bdb9-75009426e99a",
  9130. "__expectedType__": "cc.AnimationClip"
  9131. },
  9132. "_id": ""
  9133. },
  9134. {
  9135. "__type__": "cc.CompPrefabInfo",
  9136. "fileId": "b6QJFdGVBF27wiL/R2mr/J"
  9137. },
  9138. {
  9139. "__type__": "cc.PrefabInfo",
  9140. "root": {
  9141. "__id__": 1
  9142. },
  9143. "asset": {
  9144. "__id__": 0
  9145. },
  9146. "fileId": "b9vKNn3XhGYqC+Dj3gukxr",
  9147. "instance": null,
  9148. "targetOverrides": null,
  9149. "nestedPrefabInstanceRoots": null
  9150. },
  9151. {
  9152. "__type__": "cc.UITransform",
  9153. "_name": "",
  9154. "_objFlags": 0,
  9155. "__editorExtras__": {},
  9156. "node": {
  9157. "__id__": 1
  9158. },
  9159. "_enabled": true,
  9160. "__prefab": {
  9161. "__id__": 434
  9162. },
  9163. "_contentSize": {
  9164. "__type__": "cc.Size",
  9165. "width": 720,
  9166. "height": 1600
  9167. },
  9168. "_anchorPoint": {
  9169. "__type__": "cc.Vec2",
  9170. "x": 0.5,
  9171. "y": 0.5
  9172. },
  9173. "_id": ""
  9174. },
  9175. {
  9176. "__type__": "cc.CompPrefabInfo",
  9177. "fileId": "3dsNsonHVHR6tu+0OgVgEY"
  9178. },
  9179. {
  9180. "__type__": "cc.Widget",
  9181. "_name": "",
  9182. "_objFlags": 0,
  9183. "__editorExtras__": {},
  9184. "node": {
  9185. "__id__": 1
  9186. },
  9187. "_enabled": true,
  9188. "__prefab": {
  9189. "__id__": 436
  9190. },
  9191. "_alignFlags": 45,
  9192. "_target": null,
  9193. "_left": 0,
  9194. "_right": 0,
  9195. "_top": 0,
  9196. "_bottom": 0,
  9197. "_horizontalCenter": 0,
  9198. "_verticalCenter": 0,
  9199. "_isAbsLeft": true,
  9200. "_isAbsRight": true,
  9201. "_isAbsTop": true,
  9202. "_isAbsBottom": true,
  9203. "_isAbsHorizontalCenter": true,
  9204. "_isAbsVerticalCenter": true,
  9205. "_originalWidth": 720,
  9206. "_originalHeight": 1280,
  9207. "_alignMode": 2,
  9208. "_lockFlags": 0,
  9209. "_id": ""
  9210. },
  9211. {
  9212. "__type__": "cc.CompPrefabInfo",
  9213. "fileId": "26ptd8vUxB47wdyexc0Av9"
  9214. },
  9215. {
  9216. "__type__": "57aedu58StCq7JvKaZsqxtG",
  9217. "_name": "",
  9218. "_objFlags": 0,
  9219. "__editorExtras__": {},
  9220. "node": {
  9221. "__id__": 1
  9222. },
  9223. "_enabled": true,
  9224. "__prefab": {
  9225. "__id__": 438
  9226. },
  9227. "showNode1": {
  9228. "__id__": 2
  9229. },
  9230. "showNode2": {
  9231. "__id__": 229
  9232. },
  9233. "showNode3": {
  9234. "__id__": 285
  9235. },
  9236. "showNode4": {
  9237. "__id__": 369
  9238. },
  9239. "_id": ""
  9240. },
  9241. {
  9242. "__type__": "cc.CompPrefabInfo",
  9243. "fileId": "7bKuo7Na9D0YY1L1y7Fy7U"
  9244. },
  9245. {
  9246. "__type__": "cc.PrefabInfo",
  9247. "root": {
  9248. "__id__": 1
  9249. },
  9250. "asset": {
  9251. "__id__": 0
  9252. },
  9253. "fileId": "25Y3gSZ9dGN7S/XgiZLuHd",
  9254. "instance": null,
  9255. "targetOverrides": [],
  9256. "nestedPrefabInstanceRoots": [
  9257. {
  9258. "__id__": 182
  9259. },
  9260. {
  9261. "__id__": 153
  9262. },
  9263. {
  9264. "__id__": 99
  9265. },
  9266. {
  9267. "__id__": 71
  9268. },
  9269. {
  9270. "__id__": 55
  9271. },
  9272. {
  9273. "__id__": 47
  9274. }
  9275. ]
  9276. }
  9277. ]