Bet.prefab 125 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "Bet",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 105
  28. }
  29. ],
  30. "_active": true,
  31. "_components": [
  32. {
  33. "__id__": 184
  34. },
  35. {
  36. "__id__": 185
  37. },
  38. {
  39. "__id__": 186
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 187
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 1624,
  56. "height": 750
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_trs": {
  64. "__type__": "TypedArray",
  65. "ctor": "Float64Array",
  66. "array": [
  67. 812,
  68. 375,
  69. 0,
  70. 0,
  71. 0,
  72. 0,
  73. 1,
  74. 1,
  75. 1,
  76. 1
  77. ]
  78. },
  79. "_eulerAngles": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_skewX": 0,
  86. "_skewY": 0,
  87. "_is3DNode": false,
  88. "_groupIndex": 0,
  89. "groupIndex": 0,
  90. "_id": ""
  91. },
  92. {
  93. "__type__": "cc.Node",
  94. "_name": "mask",
  95. "_objFlags": 0,
  96. "_parent": {
  97. "__id__": 1
  98. },
  99. "_children": [],
  100. "_active": true,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. },
  105. {
  106. "__id__": 4
  107. },
  108. {
  109. "__id__": 5
  110. }
  111. ],
  112. "_prefab": {
  113. "__id__": 6
  114. },
  115. "_opacity": 125,
  116. "_color": {
  117. "__type__": "cc.Color",
  118. "r": 0,
  119. "g": 0,
  120. "b": 0,
  121. "a": 255
  122. },
  123. "_contentSize": {
  124. "__type__": "cc.Size",
  125. "width": 1624,
  126. "height": 750
  127. },
  128. "_anchorPoint": {
  129. "__type__": "cc.Vec2",
  130. "x": 0.5,
  131. "y": 0.5
  132. },
  133. "_trs": {
  134. "__type__": "TypedArray",
  135. "ctor": "Float64Array",
  136. "array": [
  137. 0,
  138. 0,
  139. 0,
  140. 0,
  141. 0,
  142. 0,
  143. 1,
  144. 1,
  145. 1,
  146. 1
  147. ]
  148. },
  149. "_eulerAngles": {
  150. "__type__": "cc.Vec3",
  151. "x": 0,
  152. "y": 0,
  153. "z": 0
  154. },
  155. "_skewX": 0,
  156. "_skewY": 0,
  157. "_is3DNode": false,
  158. "_groupIndex": 0,
  159. "groupIndex": 0,
  160. "_id": ""
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "node": {
  167. "__id__": 2
  168. },
  169. "_enabled": true,
  170. "_materials": [
  171. {
  172. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  173. }
  174. ],
  175. "_srcBlendFactor": 770,
  176. "_dstBlendFactor": 771,
  177. "_spriteFrame": {
  178. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  179. },
  180. "_type": 0,
  181. "_sizeMode": 0,
  182. "_fillType": 0,
  183. "_fillCenter": {
  184. "__type__": "cc.Vec2",
  185. "x": 0,
  186. "y": 0
  187. },
  188. "_fillStart": 0,
  189. "_fillRange": 0,
  190. "_isTrimmedMode": true,
  191. "_atlas": null,
  192. "_id": ""
  193. },
  194. {
  195. "__type__": "cc.Widget",
  196. "_name": "",
  197. "_objFlags": 0,
  198. "node": {
  199. "__id__": 2
  200. },
  201. "_enabled": true,
  202. "alignMode": 1,
  203. "_target": null,
  204. "_alignFlags": 45,
  205. "_left": 0,
  206. "_right": 0,
  207. "_top": 0,
  208. "_bottom": 0,
  209. "_verticalCenter": 0,
  210. "_horizontalCenter": 0,
  211. "_isAbsLeft": true,
  212. "_isAbsRight": true,
  213. "_isAbsTop": true,
  214. "_isAbsBottom": true,
  215. "_isAbsHorizontalCenter": true,
  216. "_isAbsVerticalCenter": true,
  217. "_originalWidth": 100,
  218. "_originalHeight": 100,
  219. "_id": ""
  220. },
  221. {
  222. "__type__": "cc.Button",
  223. "_name": "",
  224. "_objFlags": 0,
  225. "node": {
  226. "__id__": 2
  227. },
  228. "_enabled": true,
  229. "_normalMaterial": null,
  230. "_grayMaterial": null,
  231. "duration": 0.1,
  232. "zoomScale": 1.2,
  233. "clickEvents": [],
  234. "_N$interactable": true,
  235. "_N$enableAutoGrayEffect": false,
  236. "_N$transition": 0,
  237. "transition": 0,
  238. "_N$normalColor": {
  239. "__type__": "cc.Color",
  240. "r": 214,
  241. "g": 214,
  242. "b": 214,
  243. "a": 255
  244. },
  245. "_N$pressedColor": {
  246. "__type__": "cc.Color",
  247. "r": 211,
  248. "g": 211,
  249. "b": 211,
  250. "a": 255
  251. },
  252. "pressedColor": {
  253. "__type__": "cc.Color",
  254. "r": 211,
  255. "g": 211,
  256. "b": 211,
  257. "a": 255
  258. },
  259. "_N$hoverColor": {
  260. "__type__": "cc.Color",
  261. "r": 255,
  262. "g": 255,
  263. "b": 255,
  264. "a": 255
  265. },
  266. "hoverColor": {
  267. "__type__": "cc.Color",
  268. "r": 255,
  269. "g": 255,
  270. "b": 255,
  271. "a": 255
  272. },
  273. "_N$disabledColor": {
  274. "__type__": "cc.Color",
  275. "r": 124,
  276. "g": 124,
  277. "b": 124,
  278. "a": 255
  279. },
  280. "_N$normalSprite": null,
  281. "_N$pressedSprite": null,
  282. "pressedSprite": null,
  283. "_N$hoverSprite": null,
  284. "hoverSprite": null,
  285. "_N$disabledSprite": null,
  286. "_N$target": {
  287. "__id__": 2
  288. },
  289. "_id": ""
  290. },
  291. {
  292. "__type__": "cc.PrefabInfo",
  293. "root": {
  294. "__id__": 1
  295. },
  296. "asset": {
  297. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  298. },
  299. "fileId": "38fDY/N65KqY5tYapFzkVf",
  300. "sync": false
  301. },
  302. {
  303. "__type__": "cc.Node",
  304. "_name": "rootNode",
  305. "_objFlags": 0,
  306. "_parent": {
  307. "__id__": 1
  308. },
  309. "_children": [
  310. {
  311. "__id__": 8
  312. },
  313. {
  314. "__id__": 12
  315. },
  316. {
  317. "__id__": 15
  318. },
  319. {
  320. "__id__": 20
  321. },
  322. {
  323. "__id__": 27
  324. },
  325. {
  326. "__id__": 30
  327. },
  328. {
  329. "__id__": 39
  330. },
  331. {
  332. "__id__": 42
  333. },
  334. {
  335. "__id__": 51
  336. },
  337. {
  338. "__id__": 61
  339. },
  340. {
  341. "__id__": 71
  342. },
  343. {
  344. "__id__": 74
  345. },
  346. {
  347. "__id__": 77
  348. }
  349. ],
  350. "_active": true,
  351. "_components": [],
  352. "_prefab": {
  353. "__id__": 104
  354. },
  355. "_opacity": 255,
  356. "_color": {
  357. "__type__": "cc.Color",
  358. "r": 255,
  359. "g": 255,
  360. "b": 255,
  361. "a": 255
  362. },
  363. "_contentSize": {
  364. "__type__": "cc.Size",
  365. "width": 0,
  366. "height": 0
  367. },
  368. "_anchorPoint": {
  369. "__type__": "cc.Vec2",
  370. "x": 0.5,
  371. "y": 0.5
  372. },
  373. "_trs": {
  374. "__type__": "TypedArray",
  375. "ctor": "Float64Array",
  376. "array": [
  377. 0,
  378. 0,
  379. 0,
  380. 0,
  381. 0,
  382. 0,
  383. 1,
  384. 1,
  385. 1,
  386. 1
  387. ]
  388. },
  389. "_eulerAngles": {
  390. "__type__": "cc.Vec3",
  391. "x": 0,
  392. "y": 0,
  393. "z": 0
  394. },
  395. "_skewX": 0,
  396. "_skewY": 0,
  397. "_is3DNode": false,
  398. "_groupIndex": 0,
  399. "groupIndex": 0,
  400. "_id": ""
  401. },
  402. {
  403. "__type__": "cc.Node",
  404. "_name": "bg",
  405. "_objFlags": 0,
  406. "_parent": {
  407. "__id__": 7
  408. },
  409. "_children": [],
  410. "_active": true,
  411. "_components": [
  412. {
  413. "__id__": 9
  414. },
  415. {
  416. "__id__": 10
  417. }
  418. ],
  419. "_prefab": {
  420. "__id__": 11
  421. },
  422. "_opacity": 255,
  423. "_color": {
  424. "__type__": "cc.Color",
  425. "r": 255,
  426. "g": 255,
  427. "b": 255,
  428. "a": 255
  429. },
  430. "_contentSize": {
  431. "__type__": "cc.Size",
  432. "width": 891,
  433. "height": 661
  434. },
  435. "_anchorPoint": {
  436. "__type__": "cc.Vec2",
  437. "x": 0.5,
  438. "y": 0.5
  439. },
  440. "_trs": {
  441. "__type__": "TypedArray",
  442. "ctor": "Float64Array",
  443. "array": [
  444. 0,
  445. 0,
  446. 0,
  447. 0,
  448. 0,
  449. 0,
  450. 1,
  451. 1,
  452. 1,
  453. 1
  454. ]
  455. },
  456. "_eulerAngles": {
  457. "__type__": "cc.Vec3",
  458. "x": 0,
  459. "y": 0,
  460. "z": 0
  461. },
  462. "_skewX": 0,
  463. "_skewY": 0,
  464. "_is3DNode": false,
  465. "_groupIndex": 0,
  466. "groupIndex": 0,
  467. "_id": ""
  468. },
  469. {
  470. "__type__": "cc.Sprite",
  471. "_name": "",
  472. "_objFlags": 0,
  473. "node": {
  474. "__id__": 8
  475. },
  476. "_enabled": true,
  477. "_materials": [
  478. {
  479. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  480. }
  481. ],
  482. "_srcBlendFactor": 770,
  483. "_dstBlendFactor": 771,
  484. "_spriteFrame": {
  485. "__uuid__": "4a82da95-9293-4bf8-bcb0-10f79ca614e3"
  486. },
  487. "_type": 0,
  488. "_sizeMode": 1,
  489. "_fillType": 0,
  490. "_fillCenter": {
  491. "__type__": "cc.Vec2",
  492. "x": 0,
  493. "y": 0
  494. },
  495. "_fillStart": 0,
  496. "_fillRange": 0,
  497. "_isTrimmedMode": true,
  498. "_atlas": null,
  499. "_id": ""
  500. },
  501. {
  502. "__type__": "cc.Button",
  503. "_name": "",
  504. "_objFlags": 0,
  505. "node": {
  506. "__id__": 8
  507. },
  508. "_enabled": true,
  509. "_normalMaterial": null,
  510. "_grayMaterial": null,
  511. "duration": 0.1,
  512. "zoomScale": 1.2,
  513. "clickEvents": [],
  514. "_N$interactable": true,
  515. "_N$enableAutoGrayEffect": false,
  516. "_N$transition": 0,
  517. "transition": 0,
  518. "_N$normalColor": {
  519. "__type__": "cc.Color",
  520. "r": 214,
  521. "g": 214,
  522. "b": 214,
  523. "a": 255
  524. },
  525. "_N$pressedColor": {
  526. "__type__": "cc.Color",
  527. "r": 211,
  528. "g": 211,
  529. "b": 211,
  530. "a": 255
  531. },
  532. "pressedColor": {
  533. "__type__": "cc.Color",
  534. "r": 211,
  535. "g": 211,
  536. "b": 211,
  537. "a": 255
  538. },
  539. "_N$hoverColor": {
  540. "__type__": "cc.Color",
  541. "r": 255,
  542. "g": 255,
  543. "b": 255,
  544. "a": 255
  545. },
  546. "hoverColor": {
  547. "__type__": "cc.Color",
  548. "r": 255,
  549. "g": 255,
  550. "b": 255,
  551. "a": 255
  552. },
  553. "_N$disabledColor": {
  554. "__type__": "cc.Color",
  555. "r": 124,
  556. "g": 124,
  557. "b": 124,
  558. "a": 255
  559. },
  560. "_N$normalSprite": null,
  561. "_N$pressedSprite": null,
  562. "pressedSprite": null,
  563. "_N$hoverSprite": null,
  564. "hoverSprite": null,
  565. "_N$disabledSprite": null,
  566. "_N$target": {
  567. "__id__": 8
  568. },
  569. "_id": ""
  570. },
  571. {
  572. "__type__": "cc.PrefabInfo",
  573. "root": {
  574. "__id__": 1
  575. },
  576. "asset": {
  577. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  578. },
  579. "fileId": "b0a7MI1M9LPZmpTJ+GCDfK",
  580. "sync": false
  581. },
  582. {
  583. "__type__": "cc.Node",
  584. "_name": "bg_itemGroup",
  585. "_objFlags": 0,
  586. "_parent": {
  587. "__id__": 7
  588. },
  589. "_children": [],
  590. "_active": true,
  591. "_components": [
  592. {
  593. "__id__": 13
  594. }
  595. ],
  596. "_prefab": {
  597. "__id__": 14
  598. },
  599. "_opacity": 255,
  600. "_color": {
  601. "__type__": "cc.Color",
  602. "r": 255,
  603. "g": 255,
  604. "b": 255,
  605. "a": 255
  606. },
  607. "_contentSize": {
  608. "__type__": "cc.Size",
  609. "width": 850,
  610. "height": 550
  611. },
  612. "_anchorPoint": {
  613. "__type__": "cc.Vec2",
  614. "x": 0.5,
  615. "y": 0.5
  616. },
  617. "_trs": {
  618. "__type__": "TypedArray",
  619. "ctor": "Float64Array",
  620. "array": [
  621. 0,
  622. -40,
  623. 0,
  624. 0,
  625. 0,
  626. 0,
  627. 1,
  628. 1,
  629. 1,
  630. 1
  631. ]
  632. },
  633. "_eulerAngles": {
  634. "__type__": "cc.Vec3",
  635. "x": 0,
  636. "y": 0,
  637. "z": 0
  638. },
  639. "_skewX": 0,
  640. "_skewY": 0,
  641. "_is3DNode": false,
  642. "_groupIndex": 0,
  643. "groupIndex": 0,
  644. "_id": ""
  645. },
  646. {
  647. "__type__": "cc.Sprite",
  648. "_name": "",
  649. "_objFlags": 0,
  650. "node": {
  651. "__id__": 12
  652. },
  653. "_enabled": true,
  654. "_materials": [
  655. {
  656. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  657. }
  658. ],
  659. "_srcBlendFactor": 770,
  660. "_dstBlendFactor": 771,
  661. "_spriteFrame": {
  662. "__uuid__": "6e7f010b-6ea6-4942-98e1-db98d0677d2b"
  663. },
  664. "_type": 1,
  665. "_sizeMode": 0,
  666. "_fillType": 0,
  667. "_fillCenter": {
  668. "__type__": "cc.Vec2",
  669. "x": 0,
  670. "y": 0
  671. },
  672. "_fillStart": 0,
  673. "_fillRange": 0,
  674. "_isTrimmedMode": true,
  675. "_atlas": null,
  676. "_id": ""
  677. },
  678. {
  679. "__type__": "cc.PrefabInfo",
  680. "root": {
  681. "__id__": 1
  682. },
  683. "asset": {
  684. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  685. },
  686. "fileId": "1c1ClcBBNAkafFWkrroTCh",
  687. "sync": false
  688. },
  689. {
  690. "__type__": "cc.Node",
  691. "_name": "btn_rule",
  692. "_objFlags": 0,
  693. "_parent": {
  694. "__id__": 7
  695. },
  696. "_children": [],
  697. "_active": true,
  698. "_components": [
  699. {
  700. "__id__": 16
  701. },
  702. {
  703. "__id__": 17
  704. }
  705. ],
  706. "_prefab": {
  707. "__id__": 19
  708. },
  709. "_opacity": 255,
  710. "_color": {
  711. "__type__": "cc.Color",
  712. "r": 255,
  713. "g": 255,
  714. "b": 255,
  715. "a": 255
  716. },
  717. "_contentSize": {
  718. "__type__": "cc.Size",
  719. "width": 76,
  720. "height": 77
  721. },
  722. "_anchorPoint": {
  723. "__type__": "cc.Vec2",
  724. "x": 0.5,
  725. "y": 0.5
  726. },
  727. "_trs": {
  728. "__type__": "TypedArray",
  729. "ctor": "Float64Array",
  730. "array": [
  731. -370.647,
  732. 178.474,
  733. 0,
  734. 0,
  735. 0,
  736. 0,
  737. 1,
  738. 1,
  739. 1,
  740. 0
  741. ]
  742. },
  743. "_eulerAngles": {
  744. "__type__": "cc.Vec3",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0
  748. },
  749. "_skewX": 0,
  750. "_skewY": 0,
  751. "_is3DNode": false,
  752. "_groupIndex": 0,
  753. "groupIndex": 0,
  754. "_id": ""
  755. },
  756. {
  757. "__type__": "cc.Sprite",
  758. "_name": "",
  759. "_objFlags": 0,
  760. "node": {
  761. "__id__": 15
  762. },
  763. "_enabled": true,
  764. "_materials": [
  765. {
  766. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  767. }
  768. ],
  769. "_srcBlendFactor": 770,
  770. "_dstBlendFactor": 771,
  771. "_spriteFrame": {
  772. "__uuid__": "5b0f7ec7-35c3-4581-a066-b92f78cc26df"
  773. },
  774. "_type": 0,
  775. "_sizeMode": 1,
  776. "_fillType": 0,
  777. "_fillCenter": {
  778. "__type__": "cc.Vec2",
  779. "x": 0,
  780. "y": 0
  781. },
  782. "_fillStart": 0,
  783. "_fillRange": 0,
  784. "_isTrimmedMode": true,
  785. "_atlas": null,
  786. "_id": ""
  787. },
  788. {
  789. "__type__": "cc.Button",
  790. "_name": "",
  791. "_objFlags": 0,
  792. "node": {
  793. "__id__": 15
  794. },
  795. "_enabled": true,
  796. "_normalMaterial": null,
  797. "_grayMaterial": null,
  798. "duration": 0.1,
  799. "zoomScale": 1.2,
  800. "clickEvents": [
  801. {
  802. "__id__": 18
  803. }
  804. ],
  805. "_N$interactable": true,
  806. "_N$enableAutoGrayEffect": false,
  807. "_N$transition": 3,
  808. "transition": 3,
  809. "_N$normalColor": {
  810. "__type__": "cc.Color",
  811. "r": 255,
  812. "g": 255,
  813. "b": 255,
  814. "a": 255
  815. },
  816. "_N$pressedColor": {
  817. "__type__": "cc.Color",
  818. "r": 211,
  819. "g": 211,
  820. "b": 211,
  821. "a": 255
  822. },
  823. "pressedColor": {
  824. "__type__": "cc.Color",
  825. "r": 211,
  826. "g": 211,
  827. "b": 211,
  828. "a": 255
  829. },
  830. "_N$hoverColor": {
  831. "__type__": "cc.Color",
  832. "r": 255,
  833. "g": 255,
  834. "b": 255,
  835. "a": 255
  836. },
  837. "hoverColor": {
  838. "__type__": "cc.Color",
  839. "r": 255,
  840. "g": 255,
  841. "b": 255,
  842. "a": 255
  843. },
  844. "_N$disabledColor": {
  845. "__type__": "cc.Color",
  846. "r": 124,
  847. "g": 124,
  848. "b": 124,
  849. "a": 255
  850. },
  851. "_N$normalSprite": null,
  852. "_N$pressedSprite": null,
  853. "pressedSprite": null,
  854. "_N$hoverSprite": null,
  855. "hoverSprite": null,
  856. "_N$disabledSprite": null,
  857. "_N$target": null,
  858. "_id": ""
  859. },
  860. {
  861. "__type__": "cc.ClickEvent",
  862. "target": {
  863. "__id__": 1
  864. },
  865. "component": "",
  866. "_componentId": "ad0afFl455PiZHgjXceDHdn",
  867. "handler": "onBtnRule",
  868. "customEventData": ""
  869. },
  870. {
  871. "__type__": "cc.PrefabInfo",
  872. "root": {
  873. "__id__": 1
  874. },
  875. "asset": {
  876. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  877. },
  878. "fileId": "b8vOSBijJBbbMORa6HqtWI",
  879. "sync": false
  880. },
  881. {
  882. "__type__": "cc.Node",
  883. "_name": "btn_close",
  884. "_objFlags": 0,
  885. "_parent": {
  886. "__id__": 7
  887. },
  888. "_children": [
  889. {
  890. "__id__": 21
  891. }
  892. ],
  893. "_active": true,
  894. "_components": [
  895. {
  896. "__id__": 24
  897. }
  898. ],
  899. "_prefab": {
  900. "__id__": 26
  901. },
  902. "_opacity": 255,
  903. "_color": {
  904. "__type__": "cc.Color",
  905. "r": 255,
  906. "g": 255,
  907. "b": 255,
  908. "a": 255
  909. },
  910. "_contentSize": {
  911. "__type__": "cc.Size",
  912. "width": 120,
  913. "height": 120
  914. },
  915. "_anchorPoint": {
  916. "__type__": "cc.Vec2",
  917. "x": 0.5,
  918. "y": 0.5
  919. },
  920. "_trs": {
  921. "__type__": "TypedArray",
  922. "ctor": "Float64Array",
  923. "array": [
  924. 441,
  925. 278,
  926. 0,
  927. 0,
  928. 0,
  929. 0,
  930. 1,
  931. 1,
  932. 1,
  933. 1
  934. ]
  935. },
  936. "_eulerAngles": {
  937. "__type__": "cc.Vec3",
  938. "x": 0,
  939. "y": 0,
  940. "z": 0
  941. },
  942. "_skewX": 0,
  943. "_skewY": 0,
  944. "_is3DNode": false,
  945. "_groupIndex": 0,
  946. "groupIndex": 0,
  947. "_id": ""
  948. },
  949. {
  950. "__type__": "cc.Node",
  951. "_name": "sprite",
  952. "_objFlags": 0,
  953. "_parent": {
  954. "__id__": 20
  955. },
  956. "_children": [],
  957. "_active": true,
  958. "_components": [
  959. {
  960. "__id__": 22
  961. }
  962. ],
  963. "_prefab": {
  964. "__id__": 23
  965. },
  966. "_opacity": 255,
  967. "_color": {
  968. "__type__": "cc.Color",
  969. "r": 255,
  970. "g": 255,
  971. "b": 255,
  972. "a": 255
  973. },
  974. "_contentSize": {
  975. "__type__": "cc.Size",
  976. "width": 70,
  977. "height": 70
  978. },
  979. "_anchorPoint": {
  980. "__type__": "cc.Vec2",
  981. "x": 0.5,
  982. "y": 0.5
  983. },
  984. "_trs": {
  985. "__type__": "TypedArray",
  986. "ctor": "Float64Array",
  987. "array": [
  988. 0,
  989. 0,
  990. 0,
  991. 0,
  992. 0,
  993. 0,
  994. 1,
  995. 1,
  996. 1,
  997. 1
  998. ]
  999. },
  1000. "_eulerAngles": {
  1001. "__type__": "cc.Vec3",
  1002. "x": 0,
  1003. "y": 0,
  1004. "z": 0
  1005. },
  1006. "_skewX": 0,
  1007. "_skewY": 0,
  1008. "_is3DNode": false,
  1009. "_groupIndex": 0,
  1010. "groupIndex": 0,
  1011. "_id": ""
  1012. },
  1013. {
  1014. "__type__": "cc.Sprite",
  1015. "_name": "",
  1016. "_objFlags": 0,
  1017. "node": {
  1018. "__id__": 21
  1019. },
  1020. "_enabled": true,
  1021. "_materials": [
  1022. {
  1023. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1024. }
  1025. ],
  1026. "_srcBlendFactor": 770,
  1027. "_dstBlendFactor": 771,
  1028. "_spriteFrame": {
  1029. "__uuid__": "ae46eea1-3aea-47c2-b76c-ddaa14714e7d"
  1030. },
  1031. "_type": 0,
  1032. "_sizeMode": 1,
  1033. "_fillType": 0,
  1034. "_fillCenter": {
  1035. "__type__": "cc.Vec2",
  1036. "x": 0,
  1037. "y": 0
  1038. },
  1039. "_fillStart": 0,
  1040. "_fillRange": 0,
  1041. "_isTrimmedMode": true,
  1042. "_atlas": null,
  1043. "_id": ""
  1044. },
  1045. {
  1046. "__type__": "cc.PrefabInfo",
  1047. "root": {
  1048. "__id__": 1
  1049. },
  1050. "asset": {
  1051. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1052. },
  1053. "fileId": "32irkd5kNCk7c4NDZdS5eP",
  1054. "sync": false
  1055. },
  1056. {
  1057. "__type__": "cc.Button",
  1058. "_name": "",
  1059. "_objFlags": 0,
  1060. "node": {
  1061. "__id__": 20
  1062. },
  1063. "_enabled": true,
  1064. "_normalMaterial": null,
  1065. "_grayMaterial": null,
  1066. "duration": 0.1,
  1067. "zoomScale": 1.2,
  1068. "clickEvents": [
  1069. {
  1070. "__id__": 25
  1071. }
  1072. ],
  1073. "_N$interactable": true,
  1074. "_N$enableAutoGrayEffect": false,
  1075. "_N$transition": 1,
  1076. "transition": 1,
  1077. "_N$normalColor": {
  1078. "__type__": "cc.Color",
  1079. "r": 255,
  1080. "g": 255,
  1081. "b": 255,
  1082. "a": 255
  1083. },
  1084. "_N$pressedColor": {
  1085. "__type__": "cc.Color",
  1086. "r": 136,
  1087. "g": 136,
  1088. "b": 136,
  1089. "a": 255
  1090. },
  1091. "pressedColor": {
  1092. "__type__": "cc.Color",
  1093. "r": 136,
  1094. "g": 136,
  1095. "b": 136,
  1096. "a": 255
  1097. },
  1098. "_N$hoverColor": {
  1099. "__type__": "cc.Color",
  1100. "r": 255,
  1101. "g": 255,
  1102. "b": 255,
  1103. "a": 255
  1104. },
  1105. "hoverColor": {
  1106. "__type__": "cc.Color",
  1107. "r": 255,
  1108. "g": 255,
  1109. "b": 255,
  1110. "a": 255
  1111. },
  1112. "_N$disabledColor": {
  1113. "__type__": "cc.Color",
  1114. "r": 124,
  1115. "g": 124,
  1116. "b": 124,
  1117. "a": 255
  1118. },
  1119. "_N$normalSprite": null,
  1120. "_N$pressedSprite": null,
  1121. "pressedSprite": null,
  1122. "_N$hoverSprite": null,
  1123. "hoverSprite": null,
  1124. "_N$disabledSprite": null,
  1125. "_N$target": {
  1126. "__id__": 21
  1127. },
  1128. "_id": ""
  1129. },
  1130. {
  1131. "__type__": "cc.ClickEvent",
  1132. "target": {
  1133. "__id__": 1
  1134. },
  1135. "component": "",
  1136. "_componentId": "ad0afFl455PiZHgjXceDHdn",
  1137. "handler": "onBtnClose",
  1138. "customEventData": ""
  1139. },
  1140. {
  1141. "__type__": "cc.PrefabInfo",
  1142. "root": {
  1143. "__id__": 1
  1144. },
  1145. "asset": {
  1146. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1147. },
  1148. "fileId": "2aNyI44rZFbrDxxUmODvOf",
  1149. "sync": false
  1150. },
  1151. {
  1152. "__type__": "cc.Node",
  1153. "_name": "img_title",
  1154. "_objFlags": 0,
  1155. "_parent": {
  1156. "__id__": 7
  1157. },
  1158. "_children": [],
  1159. "_active": true,
  1160. "_components": [
  1161. {
  1162. "__id__": 28
  1163. }
  1164. ],
  1165. "_prefab": {
  1166. "__id__": 29
  1167. },
  1168. "_opacity": 255,
  1169. "_color": {
  1170. "__type__": "cc.Color",
  1171. "r": 255,
  1172. "g": 255,
  1173. "b": 255,
  1174. "a": 255
  1175. },
  1176. "_contentSize": {
  1177. "__type__": "cc.Size",
  1178. "width": 254,
  1179. "height": 121
  1180. },
  1181. "_anchorPoint": {
  1182. "__type__": "cc.Vec2",
  1183. "x": 0.5,
  1184. "y": 0.5
  1185. },
  1186. "_trs": {
  1187. "__type__": "TypedArray",
  1188. "ctor": "Float64Array",
  1189. "array": [
  1190. 0,
  1191. 302.5,
  1192. 0,
  1193. 0,
  1194. 0,
  1195. 0,
  1196. 1,
  1197. 1,
  1198. 1,
  1199. 1
  1200. ]
  1201. },
  1202. "_eulerAngles": {
  1203. "__type__": "cc.Vec3",
  1204. "x": 0,
  1205. "y": 0,
  1206. "z": 0
  1207. },
  1208. "_skewX": 0,
  1209. "_skewY": 0,
  1210. "_is3DNode": false,
  1211. "_groupIndex": 0,
  1212. "groupIndex": 0,
  1213. "_id": ""
  1214. },
  1215. {
  1216. "__type__": "cc.Sprite",
  1217. "_name": "",
  1218. "_objFlags": 0,
  1219. "node": {
  1220. "__id__": 27
  1221. },
  1222. "_enabled": true,
  1223. "_materials": [
  1224. {
  1225. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1226. }
  1227. ],
  1228. "_srcBlendFactor": 770,
  1229. "_dstBlendFactor": 771,
  1230. "_spriteFrame": {
  1231. "__uuid__": "d76117bf-7fea-4b2e-8001-b9c86eb08868"
  1232. },
  1233. "_type": 0,
  1234. "_sizeMode": 1,
  1235. "_fillType": 0,
  1236. "_fillCenter": {
  1237. "__type__": "cc.Vec2",
  1238. "x": 0,
  1239. "y": 0
  1240. },
  1241. "_fillStart": 0,
  1242. "_fillRange": 0,
  1243. "_isTrimmedMode": true,
  1244. "_atlas": null,
  1245. "_id": ""
  1246. },
  1247. {
  1248. "__type__": "cc.PrefabInfo",
  1249. "root": {
  1250. "__id__": 1
  1251. },
  1252. "asset": {
  1253. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1254. },
  1255. "fileId": "1eWITL395PKpqL16dxY3Ko",
  1256. "sync": false
  1257. },
  1258. {
  1259. "__type__": "cc.Node",
  1260. "_name": "Bet",
  1261. "_objFlags": 0,
  1262. "_parent": {
  1263. "__id__": 7
  1264. },
  1265. "_children": [
  1266. {
  1267. "__id__": 31
  1268. }
  1269. ],
  1270. "_active": true,
  1271. "_components": [
  1272. {
  1273. "__id__": 37
  1274. }
  1275. ],
  1276. "_prefab": {
  1277. "__id__": 38
  1278. },
  1279. "_opacity": 255,
  1280. "_color": {
  1281. "__type__": "cc.Color",
  1282. "r": 255,
  1283. "g": 255,
  1284. "b": 255,
  1285. "a": 255
  1286. },
  1287. "_contentSize": {
  1288. "__type__": "cc.Size",
  1289. "width": 527.84,
  1290. "height": 422.27
  1291. },
  1292. "_anchorPoint": {
  1293. "__type__": "cc.Vec2",
  1294. "x": 0.5,
  1295. "y": 0.5
  1296. },
  1297. "_trs": {
  1298. "__type__": "TypedArray",
  1299. "ctor": "Float64Array",
  1300. "array": [
  1301. 0,
  1302. 68.786,
  1303. 0,
  1304. 0,
  1305. 0,
  1306. 0,
  1307. 1,
  1308. 1,
  1309. 1,
  1310. 1
  1311. ]
  1312. },
  1313. "_eulerAngles": {
  1314. "__type__": "cc.Vec3",
  1315. "x": 0,
  1316. "y": 0,
  1317. "z": 0
  1318. },
  1319. "_skewX": 0,
  1320. "_skewY": 0,
  1321. "_is3DNode": false,
  1322. "_groupIndex": 0,
  1323. "groupIndex": 0,
  1324. "_id": ""
  1325. },
  1326. {
  1327. "__type__": "cc.Node",
  1328. "_name": "Time",
  1329. "_objFlags": 0,
  1330. "_parent": {
  1331. "__id__": 30
  1332. },
  1333. "_children": [
  1334. {
  1335. "__id__": 32
  1336. }
  1337. ],
  1338. "_active": true,
  1339. "_components": [
  1340. {
  1341. "__id__": 35
  1342. }
  1343. ],
  1344. "_prefab": {
  1345. "__id__": 36
  1346. },
  1347. "_opacity": 255,
  1348. "_color": {
  1349. "__type__": "cc.Color",
  1350. "r": 255,
  1351. "g": 255,
  1352. "b": 255,
  1353. "a": 255
  1354. },
  1355. "_contentSize": {
  1356. "__type__": "cc.Size",
  1357. "width": 235,
  1358. "height": 39
  1359. },
  1360. "_anchorPoint": {
  1361. "__type__": "cc.Vec2",
  1362. "x": 0.5,
  1363. "y": 0.5
  1364. },
  1365. "_trs": {
  1366. "__type__": "TypedArray",
  1367. "ctor": "Float64Array",
  1368. "array": [
  1369. 0,
  1370. -89.563,
  1371. 0,
  1372. 0,
  1373. 0,
  1374. 0,
  1375. 1,
  1376. 1,
  1377. 1,
  1378. 1
  1379. ]
  1380. },
  1381. "_eulerAngles": {
  1382. "__type__": "cc.Vec3",
  1383. "x": 0,
  1384. "y": 0,
  1385. "z": 0
  1386. },
  1387. "_skewX": 0,
  1388. "_skewY": 0,
  1389. "_is3DNode": false,
  1390. "_groupIndex": 0,
  1391. "groupIndex": 0,
  1392. "_id": ""
  1393. },
  1394. {
  1395. "__type__": "cc.Node",
  1396. "_name": "TimeLabel",
  1397. "_objFlags": 0,
  1398. "_parent": {
  1399. "__id__": 31
  1400. },
  1401. "_children": [],
  1402. "_active": true,
  1403. "_components": [
  1404. {
  1405. "__id__": 33
  1406. }
  1407. ],
  1408. "_prefab": {
  1409. "__id__": 34
  1410. },
  1411. "_opacity": 255,
  1412. "_color": {
  1413. "__type__": "cc.Color",
  1414. "r": 255,
  1415. "g": 255,
  1416. "b": 255,
  1417. "a": 255
  1418. },
  1419. "_contentSize": {
  1420. "__type__": "cc.Size",
  1421. "width": 108.99,
  1422. "height": 37.8
  1423. },
  1424. "_anchorPoint": {
  1425. "__type__": "cc.Vec2",
  1426. "x": 0.5,
  1427. "y": 0.5
  1428. },
  1429. "_trs": {
  1430. "__type__": "TypedArray",
  1431. "ctor": "Float64Array",
  1432. "array": [
  1433. 0,
  1434. 0,
  1435. 0,
  1436. 0,
  1437. 0,
  1438. 0,
  1439. 1,
  1440. 1,
  1441. 1,
  1442. 1
  1443. ]
  1444. },
  1445. "_eulerAngles": {
  1446. "__type__": "cc.Vec3",
  1447. "x": 0,
  1448. "y": 0,
  1449. "z": 0
  1450. },
  1451. "_skewX": 0,
  1452. "_skewY": 0,
  1453. "_is3DNode": false,
  1454. "_groupIndex": 0,
  1455. "groupIndex": 0,
  1456. "_id": ""
  1457. },
  1458. {
  1459. "__type__": "cc.Label",
  1460. "_name": "",
  1461. "_objFlags": 0,
  1462. "node": {
  1463. "__id__": 32
  1464. },
  1465. "_enabled": true,
  1466. "_materials": [
  1467. {
  1468. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1469. }
  1470. ],
  1471. "_srcBlendFactor": 770,
  1472. "_dstBlendFactor": 771,
  1473. "_useOriginalSize": false,
  1474. "_string": "23:59:59",
  1475. "_N$string": "23:59:59",
  1476. "_fontSize": 28,
  1477. "_lineHeight": 30,
  1478. "_enableWrapText": true,
  1479. "_N$file": null,
  1480. "_isSystemFontUsed": true,
  1481. "_spacingX": 0,
  1482. "_batchAsBitmap": false,
  1483. "_styleFlags": 0,
  1484. "_underlineHeight": 0,
  1485. "_N$horizontalAlign": 1,
  1486. "_N$verticalAlign": 1,
  1487. "_N$fontFamily": "Arial",
  1488. "_N$overflow": 0,
  1489. "_N$cacheMode": 0,
  1490. "_id": ""
  1491. },
  1492. {
  1493. "__type__": "cc.PrefabInfo",
  1494. "root": {
  1495. "__id__": 1
  1496. },
  1497. "asset": {
  1498. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1499. },
  1500. "fileId": "52/+TuQ+tNoI7aoWxzsyLt",
  1501. "sync": false
  1502. },
  1503. {
  1504. "__type__": "cc.Sprite",
  1505. "_name": "",
  1506. "_objFlags": 0,
  1507. "node": {
  1508. "__id__": 31
  1509. },
  1510. "_enabled": true,
  1511. "_materials": [
  1512. {
  1513. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1514. }
  1515. ],
  1516. "_srcBlendFactor": 770,
  1517. "_dstBlendFactor": 771,
  1518. "_spriteFrame": {
  1519. "__uuid__": "45804efc-ce85-4954-a395-a823822d7221"
  1520. },
  1521. "_type": 0,
  1522. "_sizeMode": 1,
  1523. "_fillType": 0,
  1524. "_fillCenter": {
  1525. "__type__": "cc.Vec2",
  1526. "x": 0,
  1527. "y": 0
  1528. },
  1529. "_fillStart": 0,
  1530. "_fillRange": 0,
  1531. "_isTrimmedMode": true,
  1532. "_atlas": null,
  1533. "_id": ""
  1534. },
  1535. {
  1536. "__type__": "cc.PrefabInfo",
  1537. "root": {
  1538. "__id__": 1
  1539. },
  1540. "asset": {
  1541. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1542. },
  1543. "fileId": "cbRVUfzOtJCJfnBVAAKHUl",
  1544. "sync": false
  1545. },
  1546. {
  1547. "__type__": "sp.Skeleton",
  1548. "_name": "",
  1549. "_objFlags": 0,
  1550. "node": {
  1551. "__id__": 30
  1552. },
  1553. "_enabled": true,
  1554. "_materials": [
  1555. {
  1556. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  1557. }
  1558. ],
  1559. "paused": false,
  1560. "defaultSkin": "default",
  1561. "defaultAnimation": "a1",
  1562. "_preCacheMode": 0,
  1563. "_cacheMode": 0,
  1564. "loop": true,
  1565. "premultipliedAlpha": false,
  1566. "timeScale": 1,
  1567. "_accTime": 0,
  1568. "_playCount": 0,
  1569. "_frameCache": null,
  1570. "_curFrame": null,
  1571. "_skeletonCache": null,
  1572. "_animationName": "a1",
  1573. "_animationQueue": [],
  1574. "_headAniInfo": null,
  1575. "_playTimes": 0,
  1576. "_isAniComplete": true,
  1577. "_N$skeletonData": {
  1578. "__uuid__": "0cd42363-edb8-4802-b38e-eb9183902bb4"
  1579. },
  1580. "_N$_defaultCacheMode": 0,
  1581. "_N$debugSlots": false,
  1582. "_N$debugBones": false,
  1583. "_N$debugMesh": false,
  1584. "_N$useTint": false,
  1585. "_N$enableBatch": false,
  1586. "_id": ""
  1587. },
  1588. {
  1589. "__type__": "cc.PrefabInfo",
  1590. "root": {
  1591. "__id__": 1
  1592. },
  1593. "asset": {
  1594. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1595. },
  1596. "fileId": "f4VOLkJ8JMLahDCWzy1SMJ",
  1597. "sync": false
  1598. },
  1599. {
  1600. "__type__": "cc.Node",
  1601. "_name": "info_label",
  1602. "_objFlags": 0,
  1603. "_parent": {
  1604. "__id__": 7
  1605. },
  1606. "_children": [],
  1607. "_active": true,
  1608. "_components": [
  1609. {
  1610. "__id__": 40
  1611. }
  1612. ],
  1613. "_prefab": {
  1614. "__id__": 41
  1615. },
  1616. "_opacity": 255,
  1617. "_color": {
  1618. "__type__": "cc.Color",
  1619. "r": 255,
  1620. "g": 255,
  1621. "b": 255,
  1622. "a": 255
  1623. },
  1624. "_contentSize": {
  1625. "__type__": "cc.Size",
  1626. "width": 192.11,
  1627. "height": 32.76
  1628. },
  1629. "_anchorPoint": {
  1630. "__type__": "cc.Vec2",
  1631. "x": 0.5,
  1632. "y": 0.5
  1633. },
  1634. "_trs": {
  1635. "__type__": "TypedArray",
  1636. "ctor": "Float64Array",
  1637. "array": [
  1638. 0,
  1639. -75.828,
  1640. 0,
  1641. 0,
  1642. 0,
  1643. 0,
  1644. 1,
  1645. 1,
  1646. 1,
  1647. 1
  1648. ]
  1649. },
  1650. "_eulerAngles": {
  1651. "__type__": "cc.Vec3",
  1652. "x": 0,
  1653. "y": 0,
  1654. "z": 0
  1655. },
  1656. "_skewX": 0,
  1657. "_skewY": 0,
  1658. "_is3DNode": false,
  1659. "_groupIndex": 0,
  1660. "groupIndex": 0,
  1661. "_id": ""
  1662. },
  1663. {
  1664. "__type__": "cc.Label",
  1665. "_name": "",
  1666. "_objFlags": 0,
  1667. "node": {
  1668. "__id__": 39
  1669. },
  1670. "_enabled": true,
  1671. "_materials": [
  1672. {
  1673. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1674. }
  1675. ],
  1676. "_srcBlendFactor": 770,
  1677. "_dstBlendFactor": 771,
  1678. "_useOriginalSize": false,
  1679. "_string": "Cumulative bonus",
  1680. "_N$string": "Cumulative bonus",
  1681. "_fontSize": 24,
  1682. "_lineHeight": 26,
  1683. "_enableWrapText": true,
  1684. "_N$file": null,
  1685. "_isSystemFontUsed": true,
  1686. "_spacingX": 0,
  1687. "_batchAsBitmap": false,
  1688. "_styleFlags": 0,
  1689. "_underlineHeight": 0,
  1690. "_N$horizontalAlign": 1,
  1691. "_N$verticalAlign": 1,
  1692. "_N$fontFamily": "Arial",
  1693. "_N$overflow": 0,
  1694. "_N$cacheMode": 0,
  1695. "_id": ""
  1696. },
  1697. {
  1698. "__type__": "cc.PrefabInfo",
  1699. "root": {
  1700. "__id__": 1
  1701. },
  1702. "asset": {
  1703. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1704. },
  1705. "fileId": "a4TLJ2xZJDfqECpRULDxwu",
  1706. "sync": false
  1707. },
  1708. {
  1709. "__type__": "cc.Node",
  1710. "_name": "ChipNode",
  1711. "_objFlags": 0,
  1712. "_parent": {
  1713. "__id__": 7
  1714. },
  1715. "_children": [
  1716. {
  1717. "__id__": 43
  1718. },
  1719. {
  1720. "__id__": 46
  1721. }
  1722. ],
  1723. "_active": true,
  1724. "_components": [
  1725. {
  1726. "__id__": 49
  1727. }
  1728. ],
  1729. "_prefab": {
  1730. "__id__": 50
  1731. },
  1732. "_opacity": 255,
  1733. "_color": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_contentSize": {
  1741. "__type__": "cc.Size",
  1742. "width": 277.86,
  1743. "height": 50
  1744. },
  1745. "_anchorPoint": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0.5,
  1748. "y": 0.5
  1749. },
  1750. "_trs": {
  1751. "__type__": "TypedArray",
  1752. "ctor": "Float64Array",
  1753. "array": [
  1754. 0,
  1755. -128.447,
  1756. 0,
  1757. 0,
  1758. 0,
  1759. 0,
  1760. 1,
  1761. 1,
  1762. 1,
  1763. 1
  1764. ]
  1765. },
  1766. "_eulerAngles": {
  1767. "__type__": "cc.Vec3",
  1768. "x": 0,
  1769. "y": 0,
  1770. "z": 0
  1771. },
  1772. "_skewX": 0,
  1773. "_skewY": 0,
  1774. "_is3DNode": false,
  1775. "_groupIndex": 0,
  1776. "groupIndex": 0,
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.Node",
  1781. "_name": "num",
  1782. "_objFlags": 0,
  1783. "_parent": {
  1784. "__id__": 42
  1785. },
  1786. "_children": [],
  1787. "_active": true,
  1788. "_components": [
  1789. {
  1790. "__id__": 44
  1791. }
  1792. ],
  1793. "_prefab": {
  1794. "__id__": 45
  1795. },
  1796. "_opacity": 255,
  1797. "_color": {
  1798. "__type__": "cc.Color",
  1799. "r": 255,
  1800. "g": 255,
  1801. "b": 255,
  1802. "a": 255
  1803. },
  1804. "_contentSize": {
  1805. "__type__": "cc.Size",
  1806. "width": 193.86,
  1807. "height": 40
  1808. },
  1809. "_anchorPoint": {
  1810. "__type__": "cc.Vec2",
  1811. "x": 0.5,
  1812. "y": 0.5
  1813. },
  1814. "_trs": {
  1815. "__type__": "TypedArray",
  1816. "ctor": "Float64Array",
  1817. "array": [
  1818. -42,
  1819. 0,
  1820. 0,
  1821. 0,
  1822. 0,
  1823. 0,
  1824. 1,
  1825. 1,
  1826. 1,
  1827. 1
  1828. ]
  1829. },
  1830. "_eulerAngles": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 0,
  1833. "y": 0,
  1834. "z": 0
  1835. },
  1836. "_skewX": 0,
  1837. "_skewY": 0,
  1838. "_is3DNode": false,
  1839. "_groupIndex": 0,
  1840. "groupIndex": 0,
  1841. "_id": ""
  1842. },
  1843. {
  1844. "__type__": "cc.Label",
  1845. "_name": "",
  1846. "_objFlags": 0,
  1847. "node": {
  1848. "__id__": 43
  1849. },
  1850. "_enabled": true,
  1851. "_materials": [
  1852. {
  1853. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1854. }
  1855. ],
  1856. "_srcBlendFactor": 770,
  1857. "_dstBlendFactor": 771,
  1858. "_useOriginalSize": false,
  1859. "_string": "100,000.00",
  1860. "_N$string": "100,000.00",
  1861. "_fontSize": 40,
  1862. "_lineHeight": 40,
  1863. "_enableWrapText": true,
  1864. "_N$file": {
  1865. "__uuid__": "249bfb63-b014-4efd-b804-b9f244b6bf7c"
  1866. },
  1867. "_isSystemFontUsed": false,
  1868. "_spacingX": -5,
  1869. "_batchAsBitmap": false,
  1870. "_styleFlags": 0,
  1871. "_underlineHeight": 0,
  1872. "_N$horizontalAlign": 1,
  1873. "_N$verticalAlign": 1,
  1874. "_N$fontFamily": "Arial",
  1875. "_N$overflow": 0,
  1876. "_N$cacheMode": 0,
  1877. "_id": ""
  1878. },
  1879. {
  1880. "__type__": "cc.PrefabInfo",
  1881. "root": {
  1882. "__id__": 1
  1883. },
  1884. "asset": {
  1885. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1886. },
  1887. "fileId": "c3Y8DtE+pEloa6ME3GYvdl",
  1888. "sync": false
  1889. },
  1890. {
  1891. "__type__": "cc.Node",
  1892. "_name": "img_chips",
  1893. "_objFlags": 0,
  1894. "_parent": {
  1895. "__id__": 42
  1896. },
  1897. "_children": [],
  1898. "_active": true,
  1899. "_components": [
  1900. {
  1901. "__id__": 47
  1902. }
  1903. ],
  1904. "_prefab": {
  1905. "__id__": 48
  1906. },
  1907. "_opacity": 255,
  1908. "_color": {
  1909. "__type__": "cc.Color",
  1910. "r": 255,
  1911. "g": 255,
  1912. "b": 255,
  1913. "a": 255
  1914. },
  1915. "_contentSize": {
  1916. "__type__": "cc.Size",
  1917. "width": 79,
  1918. "height": 35
  1919. },
  1920. "_anchorPoint": {
  1921. "__type__": "cc.Vec2",
  1922. "x": 0.5,
  1923. "y": 0.5
  1924. },
  1925. "_trs": {
  1926. "__type__": "TypedArray",
  1927. "ctor": "Float64Array",
  1928. "array": [
  1929. 99.43,
  1930. -5,
  1931. 0,
  1932. 0,
  1933. 0,
  1934. 0,
  1935. 1,
  1936. 1,
  1937. 1,
  1938. 1
  1939. ]
  1940. },
  1941. "_eulerAngles": {
  1942. "__type__": "cc.Vec3",
  1943. "x": 0,
  1944. "y": 0,
  1945. "z": 0
  1946. },
  1947. "_skewX": 0,
  1948. "_skewY": 0,
  1949. "_is3DNode": false,
  1950. "_groupIndex": 0,
  1951. "groupIndex": 0,
  1952. "_id": ""
  1953. },
  1954. {
  1955. "__type__": "cc.Sprite",
  1956. "_name": "",
  1957. "_objFlags": 0,
  1958. "node": {
  1959. "__id__": 46
  1960. },
  1961. "_enabled": true,
  1962. "_materials": [
  1963. {
  1964. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1965. }
  1966. ],
  1967. "_srcBlendFactor": 770,
  1968. "_dstBlendFactor": 771,
  1969. "_spriteFrame": {
  1970. "__uuid__": "10387efa-83b7-4738-a1cb-0b0637278d1f"
  1971. },
  1972. "_type": 0,
  1973. "_sizeMode": 1,
  1974. "_fillType": 0,
  1975. "_fillCenter": {
  1976. "__type__": "cc.Vec2",
  1977. "x": 0,
  1978. "y": 0
  1979. },
  1980. "_fillStart": 0,
  1981. "_fillRange": 0,
  1982. "_isTrimmedMode": true,
  1983. "_atlas": null,
  1984. "_id": ""
  1985. },
  1986. {
  1987. "__type__": "cc.PrefabInfo",
  1988. "root": {
  1989. "__id__": 1
  1990. },
  1991. "asset": {
  1992. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  1993. },
  1994. "fileId": "99XGIOGI5JXoZu7UGzC482",
  1995. "sync": false
  1996. },
  1997. {
  1998. "__type__": "cc.Layout",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "node": {
  2002. "__id__": 42
  2003. },
  2004. "_enabled": true,
  2005. "_layoutSize": {
  2006. "__type__": "cc.Size",
  2007. "width": 277.86,
  2008. "height": 50
  2009. },
  2010. "_resize": 1,
  2011. "_N$layoutType": 1,
  2012. "_N$cellSize": {
  2013. "__type__": "cc.Size",
  2014. "width": 40,
  2015. "height": 40
  2016. },
  2017. "_N$startAxis": 0,
  2018. "_N$paddingLeft": 0,
  2019. "_N$paddingRight": 0,
  2020. "_N$paddingTop": 0,
  2021. "_N$paddingBottom": 0,
  2022. "_N$spacingX": 5,
  2023. "_N$spacingY": 0,
  2024. "_N$verticalDirection": 1,
  2025. "_N$horizontalDirection": 0,
  2026. "_N$affectedByScale": false,
  2027. "_id": ""
  2028. },
  2029. {
  2030. "__type__": "cc.PrefabInfo",
  2031. "root": {
  2032. "__id__": 1
  2033. },
  2034. "asset": {
  2035. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2036. },
  2037. "fileId": "3dXhY9IvRPa69q5YRp/gGe",
  2038. "sync": false
  2039. },
  2040. {
  2041. "__type__": "cc.Node",
  2042. "_name": "btn_getBonus",
  2043. "_objFlags": 0,
  2044. "_parent": {
  2045. "__id__": 7
  2046. },
  2047. "_children": [
  2048. {
  2049. "__id__": 52
  2050. },
  2051. {
  2052. "__id__": 55
  2053. }
  2054. ],
  2055. "_active": true,
  2056. "_components": [
  2057. {
  2058. "__id__": 58
  2059. }
  2060. ],
  2061. "_prefab": {
  2062. "__id__": 60
  2063. },
  2064. "_opacity": 255,
  2065. "_color": {
  2066. "__type__": "cc.Color",
  2067. "r": 255,
  2068. "g": 255,
  2069. "b": 255,
  2070. "a": 255
  2071. },
  2072. "_contentSize": {
  2073. "__type__": "cc.Size",
  2074. "width": 307,
  2075. "height": 80
  2076. },
  2077. "_anchorPoint": {
  2078. "__type__": "cc.Vec2",
  2079. "x": 0.5,
  2080. "y": 0.5
  2081. },
  2082. "_trs": {
  2083. "__type__": "TypedArray",
  2084. "ctor": "Float64Array",
  2085. "array": [
  2086. 0,
  2087. -200,
  2088. 0,
  2089. 0,
  2090. 0,
  2091. 0,
  2092. 1,
  2093. 1,
  2094. 1,
  2095. 1
  2096. ]
  2097. },
  2098. "_eulerAngles": {
  2099. "__type__": "cc.Vec3",
  2100. "x": 0,
  2101. "y": 0,
  2102. "z": 0
  2103. },
  2104. "_skewX": 0,
  2105. "_skewY": 0,
  2106. "_is3DNode": false,
  2107. "_groupIndex": 0,
  2108. "groupIndex": 0,
  2109. "_id": ""
  2110. },
  2111. {
  2112. "__type__": "cc.Node",
  2113. "_name": "sprite",
  2114. "_objFlags": 0,
  2115. "_parent": {
  2116. "__id__": 51
  2117. },
  2118. "_children": [],
  2119. "_active": true,
  2120. "_components": [
  2121. {
  2122. "__id__": 53
  2123. }
  2124. ],
  2125. "_prefab": {
  2126. "__id__": 54
  2127. },
  2128. "_opacity": 255,
  2129. "_color": {
  2130. "__type__": "cc.Color",
  2131. "r": 255,
  2132. "g": 255,
  2133. "b": 255,
  2134. "a": 255
  2135. },
  2136. "_contentSize": {
  2137. "__type__": "cc.Size",
  2138. "width": 302,
  2139. "height": 80
  2140. },
  2141. "_anchorPoint": {
  2142. "__type__": "cc.Vec2",
  2143. "x": 0.5,
  2144. "y": 0.5
  2145. },
  2146. "_trs": {
  2147. "__type__": "TypedArray",
  2148. "ctor": "Float64Array",
  2149. "array": [
  2150. 0,
  2151. 0,
  2152. 0,
  2153. 0,
  2154. 0,
  2155. 0,
  2156. 1,
  2157. 1,
  2158. 1,
  2159. 0
  2160. ]
  2161. },
  2162. "_eulerAngles": {
  2163. "__type__": "cc.Vec3",
  2164. "x": 0,
  2165. "y": 0,
  2166. "z": 0
  2167. },
  2168. "_skewX": 0,
  2169. "_skewY": 0,
  2170. "_is3DNode": false,
  2171. "_groupIndex": 0,
  2172. "groupIndex": 0,
  2173. "_id": ""
  2174. },
  2175. {
  2176. "__type__": "cc.Sprite",
  2177. "_name": "",
  2178. "_objFlags": 0,
  2179. "node": {
  2180. "__id__": 52
  2181. },
  2182. "_enabled": true,
  2183. "_materials": [
  2184. {
  2185. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2186. }
  2187. ],
  2188. "_srcBlendFactor": 770,
  2189. "_dstBlendFactor": 771,
  2190. "_spriteFrame": {
  2191. "__uuid__": "fe11ac5e-748c-420f-9d03-e71aadd7b363"
  2192. },
  2193. "_type": 0,
  2194. "_sizeMode": 1,
  2195. "_fillType": 0,
  2196. "_fillCenter": {
  2197. "__type__": "cc.Vec2",
  2198. "x": 0,
  2199. "y": 0
  2200. },
  2201. "_fillStart": 0,
  2202. "_fillRange": 0,
  2203. "_isTrimmedMode": true,
  2204. "_atlas": null,
  2205. "_id": ""
  2206. },
  2207. {
  2208. "__type__": "cc.PrefabInfo",
  2209. "root": {
  2210. "__id__": 1
  2211. },
  2212. "asset": {
  2213. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2214. },
  2215. "fileId": "1fc4+YpRpPWIgnlt0jLkvu",
  2216. "sync": false
  2217. },
  2218. {
  2219. "__type__": "cc.Node",
  2220. "_name": "New Label",
  2221. "_objFlags": 0,
  2222. "_parent": {
  2223. "__id__": 51
  2224. },
  2225. "_children": [],
  2226. "_active": true,
  2227. "_components": [
  2228. {
  2229. "__id__": 56
  2230. }
  2231. ],
  2232. "_prefab": {
  2233. "__id__": 57
  2234. },
  2235. "_opacity": 255,
  2236. "_color": {
  2237. "__type__": "cc.Color",
  2238. "r": 134,
  2239. "g": 50,
  2240. "b": 0,
  2241. "a": 255
  2242. },
  2243. "_contentSize": {
  2244. "__type__": "cc.Size",
  2245. "width": 184.57,
  2246. "height": 52.92
  2247. },
  2248. "_anchorPoint": {
  2249. "__type__": "cc.Vec2",
  2250. "x": 0.5,
  2251. "y": 0.5
  2252. },
  2253. "_trs": {
  2254. "__type__": "TypedArray",
  2255. "ctor": "Float64Array",
  2256. "array": [
  2257. 0,
  2258. 5,
  2259. 0,
  2260. 0,
  2261. 0,
  2262. 0,
  2263. 1,
  2264. 1,
  2265. 1,
  2266. 1
  2267. ]
  2268. },
  2269. "_eulerAngles": {
  2270. "__type__": "cc.Vec3",
  2271. "x": 0,
  2272. "y": 0,
  2273. "z": 0
  2274. },
  2275. "_skewX": 0,
  2276. "_skewY": 0,
  2277. "_is3DNode": false,
  2278. "_groupIndex": 0,
  2279. "groupIndex": 0,
  2280. "_id": ""
  2281. },
  2282. {
  2283. "__type__": "cc.Label",
  2284. "_name": "",
  2285. "_objFlags": 0,
  2286. "node": {
  2287. "__id__": 55
  2288. },
  2289. "_enabled": true,
  2290. "_materials": [
  2291. {
  2292. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2293. }
  2294. ],
  2295. "_srcBlendFactor": 770,
  2296. "_dstBlendFactor": 771,
  2297. "_useOriginalSize": false,
  2298. "_string": "Get bonus",
  2299. "_N$string": "Get bonus",
  2300. "_fontSize": 40,
  2301. "_lineHeight": 42,
  2302. "_enableWrapText": true,
  2303. "_N$file": null,
  2304. "_isSystemFontUsed": true,
  2305. "_spacingX": 0,
  2306. "_batchAsBitmap": false,
  2307. "_styleFlags": 0,
  2308. "_underlineHeight": 0,
  2309. "_N$horizontalAlign": 1,
  2310. "_N$verticalAlign": 1,
  2311. "_N$fontFamily": "Arial",
  2312. "_N$overflow": 0,
  2313. "_N$cacheMode": 0,
  2314. "_id": ""
  2315. },
  2316. {
  2317. "__type__": "cc.PrefabInfo",
  2318. "root": {
  2319. "__id__": 1
  2320. },
  2321. "asset": {
  2322. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2323. },
  2324. "fileId": "1dmAocxzVDm4cxDRw568As",
  2325. "sync": false
  2326. },
  2327. {
  2328. "__type__": "cc.Button",
  2329. "_name": "",
  2330. "_objFlags": 0,
  2331. "node": {
  2332. "__id__": 51
  2333. },
  2334. "_enabled": true,
  2335. "_normalMaterial": null,
  2336. "_grayMaterial": null,
  2337. "duration": 0.1,
  2338. "zoomScale": 1.2,
  2339. "clickEvents": [
  2340. {
  2341. "__id__": 59
  2342. }
  2343. ],
  2344. "_N$interactable": true,
  2345. "_N$enableAutoGrayEffect": false,
  2346. "_N$transition": 3,
  2347. "transition": 3,
  2348. "_N$normalColor": {
  2349. "__type__": "cc.Color",
  2350. "r": 255,
  2351. "g": 255,
  2352. "b": 255,
  2353. "a": 255
  2354. },
  2355. "_N$pressedColor": {
  2356. "__type__": "cc.Color",
  2357. "r": 136,
  2358. "g": 136,
  2359. "b": 136,
  2360. "a": 255
  2361. },
  2362. "pressedColor": {
  2363. "__type__": "cc.Color",
  2364. "r": 136,
  2365. "g": 136,
  2366. "b": 136,
  2367. "a": 255
  2368. },
  2369. "_N$hoverColor": {
  2370. "__type__": "cc.Color",
  2371. "r": 255,
  2372. "g": 255,
  2373. "b": 255,
  2374. "a": 255
  2375. },
  2376. "hoverColor": {
  2377. "__type__": "cc.Color",
  2378. "r": 255,
  2379. "g": 255,
  2380. "b": 255,
  2381. "a": 255
  2382. },
  2383. "_N$disabledColor": {
  2384. "__type__": "cc.Color",
  2385. "r": 124,
  2386. "g": 124,
  2387. "b": 124,
  2388. "a": 255
  2389. },
  2390. "_N$normalSprite": null,
  2391. "_N$pressedSprite": null,
  2392. "pressedSprite": null,
  2393. "_N$hoverSprite": null,
  2394. "hoverSprite": null,
  2395. "_N$disabledSprite": null,
  2396. "_N$target": {
  2397. "__id__": 52
  2398. },
  2399. "_id": ""
  2400. },
  2401. {
  2402. "__type__": "cc.ClickEvent",
  2403. "target": {
  2404. "__id__": 1
  2405. },
  2406. "component": "",
  2407. "_componentId": "ad0afFl455PiZHgjXceDHdn",
  2408. "handler": "onBtnClickGetBonus",
  2409. "customEventData": ""
  2410. },
  2411. {
  2412. "__type__": "cc.PrefabInfo",
  2413. "root": {
  2414. "__id__": 1
  2415. },
  2416. "asset": {
  2417. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2418. },
  2419. "fileId": "f0EWc6/JdKp4z4cVbm7eab",
  2420. "sync": false
  2421. },
  2422. {
  2423. "__type__": "cc.Node",
  2424. "_name": "btn_collect",
  2425. "_objFlags": 0,
  2426. "_parent": {
  2427. "__id__": 7
  2428. },
  2429. "_children": [
  2430. {
  2431. "__id__": 62
  2432. },
  2433. {
  2434. "__id__": 65
  2435. }
  2436. ],
  2437. "_active": false,
  2438. "_components": [
  2439. {
  2440. "__id__": 68
  2441. }
  2442. ],
  2443. "_prefab": {
  2444. "__id__": 70
  2445. },
  2446. "_opacity": 255,
  2447. "_color": {
  2448. "__type__": "cc.Color",
  2449. "r": 255,
  2450. "g": 255,
  2451. "b": 255,
  2452. "a": 255
  2453. },
  2454. "_contentSize": {
  2455. "__type__": "cc.Size",
  2456. "width": 307,
  2457. "height": 80
  2458. },
  2459. "_anchorPoint": {
  2460. "__type__": "cc.Vec2",
  2461. "x": 0.5,
  2462. "y": 0.5
  2463. },
  2464. "_trs": {
  2465. "__type__": "TypedArray",
  2466. "ctor": "Float64Array",
  2467. "array": [
  2468. 0,
  2469. -200,
  2470. 0,
  2471. 0,
  2472. 0,
  2473. 0,
  2474. 1,
  2475. 1,
  2476. 1,
  2477. 1
  2478. ]
  2479. },
  2480. "_eulerAngles": {
  2481. "__type__": "cc.Vec3",
  2482. "x": 0,
  2483. "y": 0,
  2484. "z": 0
  2485. },
  2486. "_skewX": 0,
  2487. "_skewY": 0,
  2488. "_is3DNode": false,
  2489. "_groupIndex": 0,
  2490. "groupIndex": 0,
  2491. "_id": ""
  2492. },
  2493. {
  2494. "__type__": "cc.Node",
  2495. "_name": "sprite",
  2496. "_objFlags": 0,
  2497. "_parent": {
  2498. "__id__": 61
  2499. },
  2500. "_children": [],
  2501. "_active": true,
  2502. "_components": [
  2503. {
  2504. "__id__": 63
  2505. }
  2506. ],
  2507. "_prefab": {
  2508. "__id__": 64
  2509. },
  2510. "_opacity": 255,
  2511. "_color": {
  2512. "__type__": "cc.Color",
  2513. "r": 255,
  2514. "g": 255,
  2515. "b": 255,
  2516. "a": 255
  2517. },
  2518. "_contentSize": {
  2519. "__type__": "cc.Size",
  2520. "width": 302,
  2521. "height": 80
  2522. },
  2523. "_anchorPoint": {
  2524. "__type__": "cc.Vec2",
  2525. "x": 0.5,
  2526. "y": 0.5
  2527. },
  2528. "_trs": {
  2529. "__type__": "TypedArray",
  2530. "ctor": "Float64Array",
  2531. "array": [
  2532. 0,
  2533. 0,
  2534. 0,
  2535. 0,
  2536. 0,
  2537. 0,
  2538. 1,
  2539. 1,
  2540. 1,
  2541. 1
  2542. ]
  2543. },
  2544. "_eulerAngles": {
  2545. "__type__": "cc.Vec3",
  2546. "x": 0,
  2547. "y": 0,
  2548. "z": 0
  2549. },
  2550. "_skewX": 0,
  2551. "_skewY": 0,
  2552. "_is3DNode": false,
  2553. "_groupIndex": 0,
  2554. "groupIndex": 0,
  2555. "_id": ""
  2556. },
  2557. {
  2558. "__type__": "cc.Sprite",
  2559. "_name": "",
  2560. "_objFlags": 0,
  2561. "node": {
  2562. "__id__": 62
  2563. },
  2564. "_enabled": true,
  2565. "_materials": [
  2566. {
  2567. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2568. }
  2569. ],
  2570. "_srcBlendFactor": 770,
  2571. "_dstBlendFactor": 771,
  2572. "_spriteFrame": {
  2573. "__uuid__": "fe11ac5e-748c-420f-9d03-e71aadd7b363"
  2574. },
  2575. "_type": 0,
  2576. "_sizeMode": 1,
  2577. "_fillType": 0,
  2578. "_fillCenter": {
  2579. "__type__": "cc.Vec2",
  2580. "x": 0,
  2581. "y": 0
  2582. },
  2583. "_fillStart": 0,
  2584. "_fillRange": 0,
  2585. "_isTrimmedMode": true,
  2586. "_atlas": null,
  2587. "_id": ""
  2588. },
  2589. {
  2590. "__type__": "cc.PrefabInfo",
  2591. "root": {
  2592. "__id__": 1
  2593. },
  2594. "asset": {
  2595. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2596. },
  2597. "fileId": "d2dfquc2xFUq0JXanrUDGm",
  2598. "sync": false
  2599. },
  2600. {
  2601. "__type__": "cc.Node",
  2602. "_name": "New Label",
  2603. "_objFlags": 0,
  2604. "_parent": {
  2605. "__id__": 61
  2606. },
  2607. "_children": [],
  2608. "_active": true,
  2609. "_components": [
  2610. {
  2611. "__id__": 66
  2612. }
  2613. ],
  2614. "_prefab": {
  2615. "__id__": 67
  2616. },
  2617. "_opacity": 255,
  2618. "_color": {
  2619. "__type__": "cc.Color",
  2620. "r": 136,
  2621. "g": 81,
  2622. "b": 31,
  2623. "a": 255
  2624. },
  2625. "_contentSize": {
  2626. "__type__": "cc.Size",
  2627. "width": 122.27,
  2628. "height": 52.92
  2629. },
  2630. "_anchorPoint": {
  2631. "__type__": "cc.Vec2",
  2632. "x": 0.5,
  2633. "y": 0.5
  2634. },
  2635. "_trs": {
  2636. "__type__": "TypedArray",
  2637. "ctor": "Float64Array",
  2638. "array": [
  2639. 0,
  2640. 5,
  2641. 0,
  2642. 0,
  2643. 0,
  2644. 0,
  2645. 1,
  2646. 1,
  2647. 1,
  2648. 1
  2649. ]
  2650. },
  2651. "_eulerAngles": {
  2652. "__type__": "cc.Vec3",
  2653. "x": 0,
  2654. "y": 0,
  2655. "z": 0
  2656. },
  2657. "_skewX": 0,
  2658. "_skewY": 0,
  2659. "_is3DNode": false,
  2660. "_groupIndex": 0,
  2661. "groupIndex": 0,
  2662. "_id": ""
  2663. },
  2664. {
  2665. "__type__": "cc.Label",
  2666. "_name": "",
  2667. "_objFlags": 0,
  2668. "node": {
  2669. "__id__": 65
  2670. },
  2671. "_enabled": true,
  2672. "_materials": [
  2673. {
  2674. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2675. }
  2676. ],
  2677. "_srcBlendFactor": 770,
  2678. "_dstBlendFactor": 771,
  2679. "_useOriginalSize": false,
  2680. "_string": "Collect",
  2681. "_N$string": "Collect",
  2682. "_fontSize": 40,
  2683. "_lineHeight": 42,
  2684. "_enableWrapText": true,
  2685. "_N$file": null,
  2686. "_isSystemFontUsed": true,
  2687. "_spacingX": 0,
  2688. "_batchAsBitmap": false,
  2689. "_styleFlags": 0,
  2690. "_underlineHeight": 0,
  2691. "_N$horizontalAlign": 1,
  2692. "_N$verticalAlign": 1,
  2693. "_N$fontFamily": "Arial",
  2694. "_N$overflow": 0,
  2695. "_N$cacheMode": 0,
  2696. "_id": ""
  2697. },
  2698. {
  2699. "__type__": "cc.PrefabInfo",
  2700. "root": {
  2701. "__id__": 1
  2702. },
  2703. "asset": {
  2704. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2705. },
  2706. "fileId": "8cQweLY89PK7aPy9QQl/q9",
  2707. "sync": false
  2708. },
  2709. {
  2710. "__type__": "cc.Button",
  2711. "_name": "",
  2712. "_objFlags": 0,
  2713. "node": {
  2714. "__id__": 61
  2715. },
  2716. "_enabled": true,
  2717. "_normalMaterial": null,
  2718. "_grayMaterial": null,
  2719. "duration": 0.1,
  2720. "zoomScale": 1.2,
  2721. "clickEvents": [
  2722. {
  2723. "__id__": 69
  2724. }
  2725. ],
  2726. "_N$interactable": true,
  2727. "_N$enableAutoGrayEffect": false,
  2728. "_N$transition": 3,
  2729. "transition": 3,
  2730. "_N$normalColor": {
  2731. "__type__": "cc.Color",
  2732. "r": 255,
  2733. "g": 255,
  2734. "b": 255,
  2735. "a": 255
  2736. },
  2737. "_N$pressedColor": {
  2738. "__type__": "cc.Color",
  2739. "r": 136,
  2740. "g": 136,
  2741. "b": 136,
  2742. "a": 255
  2743. },
  2744. "pressedColor": {
  2745. "__type__": "cc.Color",
  2746. "r": 136,
  2747. "g": 136,
  2748. "b": 136,
  2749. "a": 255
  2750. },
  2751. "_N$hoverColor": {
  2752. "__type__": "cc.Color",
  2753. "r": 255,
  2754. "g": 255,
  2755. "b": 255,
  2756. "a": 255
  2757. },
  2758. "hoverColor": {
  2759. "__type__": "cc.Color",
  2760. "r": 255,
  2761. "g": 255,
  2762. "b": 255,
  2763. "a": 255
  2764. },
  2765. "_N$disabledColor": {
  2766. "__type__": "cc.Color",
  2767. "r": 124,
  2768. "g": 124,
  2769. "b": 124,
  2770. "a": 255
  2771. },
  2772. "_N$normalSprite": null,
  2773. "_N$pressedSprite": null,
  2774. "pressedSprite": null,
  2775. "_N$hoverSprite": null,
  2776. "hoverSprite": null,
  2777. "_N$disabledSprite": null,
  2778. "_N$target": {
  2779. "__id__": 62
  2780. },
  2781. "_id": ""
  2782. },
  2783. {
  2784. "__type__": "cc.ClickEvent",
  2785. "target": {
  2786. "__id__": 1
  2787. },
  2788. "component": "",
  2789. "_componentId": "ad0afFl455PiZHgjXceDHdn",
  2790. "handler": "onBtnClickCollect",
  2791. "customEventData": ""
  2792. },
  2793. {
  2794. "__type__": "cc.PrefabInfo",
  2795. "root": {
  2796. "__id__": 1
  2797. },
  2798. "asset": {
  2799. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2800. },
  2801. "fileId": "3dARq5PONFK4TZMFGAuMAg",
  2802. "sync": false
  2803. },
  2804. {
  2805. "__type__": "cc.Node",
  2806. "_name": "New Label",
  2807. "_objFlags": 0,
  2808. "_parent": {
  2809. "__id__": 7
  2810. },
  2811. "_children": [],
  2812. "_active": true,
  2813. "_components": [
  2814. {
  2815. "__id__": 72
  2816. }
  2817. ],
  2818. "_prefab": {
  2819. "__id__": 73
  2820. },
  2821. "_opacity": 255,
  2822. "_color": {
  2823. "__type__": "cc.Color",
  2824. "r": 170,
  2825. "g": 146,
  2826. "b": 89,
  2827. "a": 255
  2828. },
  2829. "_contentSize": {
  2830. "__type__": "cc.Size",
  2831. "width": 655.94,
  2832. "height": 27.72
  2833. },
  2834. "_anchorPoint": {
  2835. "__type__": "cc.Vec2",
  2836. "x": 0.5,
  2837. "y": 0.5
  2838. },
  2839. "_trs": {
  2840. "__type__": "TypedArray",
  2841. "ctor": "Float64Array",
  2842. "array": [
  2843. 0,
  2844. -255.564,
  2845. 0,
  2846. 0,
  2847. 0,
  2848. 0,
  2849. 1,
  2850. 1,
  2851. 1,
  2852. 1
  2853. ]
  2854. },
  2855. "_eulerAngles": {
  2856. "__type__": "cc.Vec3",
  2857. "x": 0,
  2858. "y": 0,
  2859. "z": 0
  2860. },
  2861. "_skewX": 0,
  2862. "_skewY": 0,
  2863. "_is3DNode": false,
  2864. "_groupIndex": 0,
  2865. "groupIndex": 0,
  2866. "_id": ""
  2867. },
  2868. {
  2869. "__type__": "cc.Label",
  2870. "_name": "",
  2871. "_objFlags": 0,
  2872. "node": {
  2873. "__id__": 71
  2874. },
  2875. "_enabled": true,
  2876. "_materials": [
  2877. {
  2878. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2879. }
  2880. ],
  2881. "_srcBlendFactor": 770,
  2882. "_dstBlendFactor": 771,
  2883. "_useOriginalSize": false,
  2884. "_string": "La recompensa se puede reclamar después de 24 horas tras la activación",
  2885. "_N$string": "La recompensa se puede reclamar después de 24 horas tras la activación",
  2886. "_fontSize": 20,
  2887. "_lineHeight": 22,
  2888. "_enableWrapText": true,
  2889. "_N$file": null,
  2890. "_isSystemFontUsed": true,
  2891. "_spacingX": 0,
  2892. "_batchAsBitmap": false,
  2893. "_styleFlags": 0,
  2894. "_underlineHeight": 0,
  2895. "_N$horizontalAlign": 1,
  2896. "_N$verticalAlign": 1,
  2897. "_N$fontFamily": "Arial",
  2898. "_N$overflow": 0,
  2899. "_N$cacheMode": 0,
  2900. "_id": ""
  2901. },
  2902. {
  2903. "__type__": "cc.PrefabInfo",
  2904. "root": {
  2905. "__id__": 1
  2906. },
  2907. "asset": {
  2908. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  2909. },
  2910. "fileId": "c4eHhhGPZPaYhBN42KLx9G",
  2911. "sync": false
  2912. },
  2913. {
  2914. "__type__": "cc.Node",
  2915. "_name": "New Label",
  2916. "_objFlags": 0,
  2917. "_parent": {
  2918. "__id__": 7
  2919. },
  2920. "_children": [],
  2921. "_active": true,
  2922. "_components": [
  2923. {
  2924. "__id__": 75
  2925. }
  2926. ],
  2927. "_prefab": {
  2928. "__id__": 76
  2929. },
  2930. "_opacity": 255,
  2931. "_color": {
  2932. "__type__": "cc.Color",
  2933. "r": 170,
  2934. "g": 146,
  2935. "b": 89,
  2936. "a": 255
  2937. },
  2938. "_contentSize": {
  2939. "__type__": "cc.Size",
  2940. "width": 543.61,
  2941. "height": 27.72
  2942. },
  2943. "_anchorPoint": {
  2944. "__type__": "cc.Vec2",
  2945. "x": 0.5,
  2946. "y": 0.5
  2947. },
  2948. "_trs": {
  2949. "__type__": "TypedArray",
  2950. "ctor": "Float64Array",
  2951. "array": [
  2952. 0,
  2953. -284.425,
  2954. 0,
  2955. 0,
  2956. 0,
  2957. 0,
  2958. 1,
  2959. 1,
  2960. 1,
  2961. 1
  2962. ]
  2963. },
  2964. "_eulerAngles": {
  2965. "__type__": "cc.Vec3",
  2966. "x": 0,
  2967. "y": 0,
  2968. "z": 0
  2969. },
  2970. "_skewX": 0,
  2971. "_skewY": 0,
  2972. "_is3DNode": false,
  2973. "_groupIndex": 0,
  2974. "groupIndex": 0,
  2975. "_id": ""
  2976. },
  2977. {
  2978. "__type__": "cc.Label",
  2979. "_name": "",
  2980. "_objFlags": 0,
  2981. "node": {
  2982. "__id__": 74
  2983. },
  2984. "_enabled": true,
  2985. "_materials": [
  2986. {
  2987. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2988. }
  2989. ],
  2990. "_srcBlendFactor": 770,
  2991. "_dstBlendFactor": 771,
  2992. "_useOriginalSize": false,
  2993. "_string": "Cuanto mayor sea el importe de la bota, mayor será la rebaja",
  2994. "_N$string": "Cuanto mayor sea el importe de la bota, mayor será la rebaja",
  2995. "_fontSize": 20,
  2996. "_lineHeight": 22,
  2997. "_enableWrapText": true,
  2998. "_N$file": null,
  2999. "_isSystemFontUsed": true,
  3000. "_spacingX": 0,
  3001. "_batchAsBitmap": false,
  3002. "_styleFlags": 0,
  3003. "_underlineHeight": 0,
  3004. "_N$horizontalAlign": 1,
  3005. "_N$verticalAlign": 1,
  3006. "_N$fontFamily": "Arial",
  3007. "_N$overflow": 0,
  3008. "_N$cacheMode": 0,
  3009. "_id": ""
  3010. },
  3011. {
  3012. "__type__": "cc.PrefabInfo",
  3013. "root": {
  3014. "__id__": 1
  3015. },
  3016. "asset": {
  3017. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  3018. },
  3019. "fileId": "daCPl39xtBcoaSWXrNpQct",
  3020. "sync": false
  3021. },
  3022. {
  3023. "__type__": "cc.Node",
  3024. "_name": "topNode",
  3025. "_objFlags": 0,
  3026. "_parent": {
  3027. "__id__": 7
  3028. },
  3029. "_children": [
  3030. {
  3031. "__id__": 78
  3032. },
  3033. {
  3034. "__id__": 83
  3035. }
  3036. ],
  3037. "_active": false,
  3038. "_components": [
  3039. {
  3040. "__id__": 100
  3041. },
  3042. {
  3043. "__id__": 101
  3044. },
  3045. {
  3046. "__id__": 102
  3047. }
  3048. ],
  3049. "_prefab": {
  3050. "__id__": 103
  3051. },
  3052. "_opacity": 255,
  3053. "_color": {
  3054. "__type__": "cc.Color",
  3055. "r": 255,
  3056. "g": 255,
  3057. "b": 255,
  3058. "a": 255
  3059. },
  3060. "_contentSize": {
  3061. "__type__": "cc.Size",
  3062. "width": 640,
  3063. "height": 297.00000000000006
  3064. },
  3065. "_anchorPoint": {
  3066. "__type__": "cc.Vec2",
  3067. "x": 0.5,
  3068. "y": 0.5
  3069. },
  3070. "_trs": {
  3071. "__type__": "TypedArray",
  3072. "ctor": "Float64Array",
  3073. "array": [
  3074. 0,
  3075. 57.95500000000003,
  3076. 0,
  3077. 0,
  3078. 0,
  3079. 0,
  3080. 1,
  3081. 1,
  3082. 1,
  3083. 1
  3084. ]
  3085. },
  3086. "_eulerAngles": {
  3087. "__type__": "cc.Vec3",
  3088. "x": 0,
  3089. "y": 0,
  3090. "z": 0
  3091. },
  3092. "_skewX": 0,
  3093. "_skewY": 0,
  3094. "_is3DNode": false,
  3095. "_groupIndex": 0,
  3096. "groupIndex": 0,
  3097. "_id": ""
  3098. },
  3099. {
  3100. "__type__": "cc.Node",
  3101. "_name": "Mask",
  3102. "_objFlags": 0,
  3103. "_parent": {
  3104. "__id__": 77
  3105. },
  3106. "_children": [],
  3107. "_active": false,
  3108. "_components": [
  3109. {
  3110. "__id__": 79
  3111. },
  3112. {
  3113. "__id__": 80
  3114. },
  3115. {
  3116. "__id__": 81
  3117. }
  3118. ],
  3119. "_prefab": {
  3120. "__id__": 82
  3121. },
  3122. "_opacity": 125,
  3123. "_color": {
  3124. "__type__": "cc.Color",
  3125. "r": 0,
  3126. "g": 0,
  3127. "b": 0,
  3128. "a": 255
  3129. },
  3130. "_contentSize": {
  3131. "__type__": "cc.Size",
  3132. "width": 640,
  3133. "height": 297.00000000000006
  3134. },
  3135. "_anchorPoint": {
  3136. "__type__": "cc.Vec2",
  3137. "x": 0.5,
  3138. "y": 0.5
  3139. },
  3140. "_trs": {
  3141. "__type__": "TypedArray",
  3142. "ctor": "Float64Array",
  3143. "array": [
  3144. 0,
  3145. 0,
  3146. 0,
  3147. 0,
  3148. 0,
  3149. 0,
  3150. 1,
  3151. 1,
  3152. 1,
  3153. 1
  3154. ]
  3155. },
  3156. "_eulerAngles": {
  3157. "__type__": "cc.Vec3",
  3158. "x": 0,
  3159. "y": 0,
  3160. "z": 0
  3161. },
  3162. "_skewX": 0,
  3163. "_skewY": 0,
  3164. "_is3DNode": false,
  3165. "_groupIndex": 0,
  3166. "groupIndex": 0,
  3167. "_id": ""
  3168. },
  3169. {
  3170. "__type__": "cc.Sprite",
  3171. "_name": "",
  3172. "_objFlags": 0,
  3173. "node": {
  3174. "__id__": 78
  3175. },
  3176. "_enabled": true,
  3177. "_materials": [
  3178. {
  3179. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3180. }
  3181. ],
  3182. "_srcBlendFactor": 770,
  3183. "_dstBlendFactor": 771,
  3184. "_spriteFrame": {
  3185. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3186. },
  3187. "_type": 0,
  3188. "_sizeMode": 0,
  3189. "_fillType": 0,
  3190. "_fillCenter": {
  3191. "__type__": "cc.Vec2",
  3192. "x": 0,
  3193. "y": 0
  3194. },
  3195. "_fillStart": 0,
  3196. "_fillRange": 0,
  3197. "_isTrimmedMode": true,
  3198. "_atlas": null,
  3199. "_id": ""
  3200. },
  3201. {
  3202. "__type__": "cc.Button",
  3203. "_name": "",
  3204. "_objFlags": 0,
  3205. "node": {
  3206. "__id__": 78
  3207. },
  3208. "_enabled": true,
  3209. "_normalMaterial": null,
  3210. "_grayMaterial": null,
  3211. "duration": 0.1,
  3212. "zoomScale": 1.2,
  3213. "clickEvents": [],
  3214. "_N$interactable": true,
  3215. "_N$enableAutoGrayEffect": false,
  3216. "_N$transition": 0,
  3217. "transition": 0,
  3218. "_N$normalColor": {
  3219. "__type__": "cc.Color",
  3220. "r": 214,
  3221. "g": 214,
  3222. "b": 214,
  3223. "a": 255
  3224. },
  3225. "_N$pressedColor": {
  3226. "__type__": "cc.Color",
  3227. "r": 211,
  3228. "g": 211,
  3229. "b": 211,
  3230. "a": 255
  3231. },
  3232. "pressedColor": {
  3233. "__type__": "cc.Color",
  3234. "r": 211,
  3235. "g": 211,
  3236. "b": 211,
  3237. "a": 255
  3238. },
  3239. "_N$hoverColor": {
  3240. "__type__": "cc.Color",
  3241. "r": 255,
  3242. "g": 255,
  3243. "b": 255,
  3244. "a": 255
  3245. },
  3246. "hoverColor": {
  3247. "__type__": "cc.Color",
  3248. "r": 255,
  3249. "g": 255,
  3250. "b": 255,
  3251. "a": 255
  3252. },
  3253. "_N$disabledColor": {
  3254. "__type__": "cc.Color",
  3255. "r": 124,
  3256. "g": 124,
  3257. "b": 124,
  3258. "a": 255
  3259. },
  3260. "_N$normalSprite": null,
  3261. "_N$pressedSprite": null,
  3262. "pressedSprite": null,
  3263. "_N$hoverSprite": null,
  3264. "hoverSprite": null,
  3265. "_N$disabledSprite": null,
  3266. "_N$target": {
  3267. "__id__": 78
  3268. },
  3269. "_id": ""
  3270. },
  3271. {
  3272. "__type__": "cc.Widget",
  3273. "_name": "",
  3274. "_objFlags": 0,
  3275. "node": {
  3276. "__id__": 78
  3277. },
  3278. "_enabled": true,
  3279. "alignMode": 1,
  3280. "_target": null,
  3281. "_alignFlags": 45,
  3282. "_left": 0,
  3283. "_right": 0,
  3284. "_top": 0,
  3285. "_bottom": 0,
  3286. "_verticalCenter": 0,
  3287. "_horizontalCenter": 0,
  3288. "_isAbsLeft": true,
  3289. "_isAbsRight": true,
  3290. "_isAbsTop": true,
  3291. "_isAbsBottom": true,
  3292. "_isAbsHorizontalCenter": true,
  3293. "_isAbsVerticalCenter": true,
  3294. "_originalWidth": 100,
  3295. "_originalHeight": 100,
  3296. "_id": ""
  3297. },
  3298. {
  3299. "__type__": "cc.PrefabInfo",
  3300. "root": {
  3301. "__id__": 1
  3302. },
  3303. "asset": {
  3304. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  3305. },
  3306. "fileId": "03WooqNDtBKoBrqYVCnIJt",
  3307. "sync": false
  3308. },
  3309. {
  3310. "__type__": "cc.Node",
  3311. "_name": "rootNode",
  3312. "_objFlags": 0,
  3313. "_parent": {
  3314. "__id__": 77
  3315. },
  3316. "_children": [
  3317. {
  3318. "__id__": 84
  3319. },
  3320. {
  3321. "__id__": 87
  3322. },
  3323. {
  3324. "__id__": 96
  3325. }
  3326. ],
  3327. "_active": true,
  3328. "_components": [],
  3329. "_prefab": {
  3330. "__id__": 99
  3331. },
  3332. "_opacity": 255,
  3333. "_color": {
  3334. "__type__": "cc.Color",
  3335. "r": 255,
  3336. "g": 255,
  3337. "b": 255,
  3338. "a": 255
  3339. },
  3340. "_contentSize": {
  3341. "__type__": "cc.Size",
  3342. "width": 0,
  3343. "height": 0
  3344. },
  3345. "_anchorPoint": {
  3346. "__type__": "cc.Vec2",
  3347. "x": 0.5,
  3348. "y": 0.5
  3349. },
  3350. "_trs": {
  3351. "__type__": "TypedArray",
  3352. "ctor": "Float64Array",
  3353. "array": [
  3354. 0,
  3355. 0,
  3356. 0,
  3357. 0,
  3358. 0,
  3359. 0,
  3360. 1,
  3361. 1,
  3362. 1,
  3363. 1
  3364. ]
  3365. },
  3366. "_eulerAngles": {
  3367. "__type__": "cc.Vec3",
  3368. "x": 0,
  3369. "y": 0,
  3370. "z": 0
  3371. },
  3372. "_skewX": 0,
  3373. "_skewY": 0,
  3374. "_is3DNode": false,
  3375. "_groupIndex": 0,
  3376. "groupIndex": 0,
  3377. "_id": ""
  3378. },
  3379. {
  3380. "__type__": "cc.Node",
  3381. "_name": "bg",
  3382. "_objFlags": 0,
  3383. "_parent": {
  3384. "__id__": 83
  3385. },
  3386. "_children": [],
  3387. "_active": true,
  3388. "_components": [
  3389. {
  3390. "__id__": 85
  3391. }
  3392. ],
  3393. "_prefab": {
  3394. "__id__": 86
  3395. },
  3396. "_opacity": 255,
  3397. "_color": {
  3398. "__type__": "cc.Color",
  3399. "r": 255,
  3400. "g": 255,
  3401. "b": 255,
  3402. "a": 255
  3403. },
  3404. "_contentSize": {
  3405. "__type__": "cc.Size",
  3406. "width": 640,
  3407. "height": 297
  3408. },
  3409. "_anchorPoint": {
  3410. "__type__": "cc.Vec2",
  3411. "x": 0.5,
  3412. "y": 0.5
  3413. },
  3414. "_trs": {
  3415. "__type__": "TypedArray",
  3416. "ctor": "Float64Array",
  3417. "array": [
  3418. 0,
  3419. 0,
  3420. 0,
  3421. 0,
  3422. 0,
  3423. 0,
  3424. 1,
  3425. 1,
  3426. 1,
  3427. 1
  3428. ]
  3429. },
  3430. "_eulerAngles": {
  3431. "__type__": "cc.Vec3",
  3432. "x": 0,
  3433. "y": 0,
  3434. "z": 0
  3435. },
  3436. "_skewX": 0,
  3437. "_skewY": 0,
  3438. "_is3DNode": false,
  3439. "_groupIndex": 0,
  3440. "groupIndex": 0,
  3441. "_id": ""
  3442. },
  3443. {
  3444. "__type__": "cc.Sprite",
  3445. "_name": "",
  3446. "_objFlags": 0,
  3447. "node": {
  3448. "__id__": 84
  3449. },
  3450. "_enabled": true,
  3451. "_materials": [
  3452. {
  3453. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3454. }
  3455. ],
  3456. "_srcBlendFactor": 770,
  3457. "_dstBlendFactor": 771,
  3458. "_spriteFrame": {
  3459. "__uuid__": "fb367a09-f8b1-418d-9b56-4a91cb2f2ca4"
  3460. },
  3461. "_type": 1,
  3462. "_sizeMode": 0,
  3463. "_fillType": 0,
  3464. "_fillCenter": {
  3465. "__type__": "cc.Vec2",
  3466. "x": 0,
  3467. "y": 0
  3468. },
  3469. "_fillStart": 0,
  3470. "_fillRange": 0,
  3471. "_isTrimmedMode": true,
  3472. "_atlas": null,
  3473. "_id": ""
  3474. },
  3475. {
  3476. "__type__": "cc.PrefabInfo",
  3477. "root": {
  3478. "__id__": 1
  3479. },
  3480. "asset": {
  3481. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  3482. },
  3483. "fileId": "58jntdsz9Piay8LEKUjsqU",
  3484. "sync": false
  3485. },
  3486. {
  3487. "__type__": "cc.Node",
  3488. "_name": "btnSure",
  3489. "_objFlags": 0,
  3490. "_parent": {
  3491. "__id__": 83
  3492. },
  3493. "_children": [
  3494. {
  3495. "__id__": 88
  3496. }
  3497. ],
  3498. "_active": true,
  3499. "_components": [
  3500. {
  3501. "__id__": 92
  3502. },
  3503. {
  3504. "__id__": 94
  3505. }
  3506. ],
  3507. "_prefab": {
  3508. "__id__": 95
  3509. },
  3510. "_opacity": 255,
  3511. "_color": {
  3512. "__type__": "cc.Color",
  3513. "r": 255,
  3514. "g": 255,
  3515. "b": 255,
  3516. "a": 255
  3517. },
  3518. "_contentSize": {
  3519. "__type__": "cc.Size",
  3520. "width": 226,
  3521. "height": 63
  3522. },
  3523. "_anchorPoint": {
  3524. "__type__": "cc.Vec2",
  3525. "x": 0.5,
  3526. "y": 0.5
  3527. },
  3528. "_trs": {
  3529. "__type__": "TypedArray",
  3530. "ctor": "Float64Array",
  3531. "array": [
  3532. 0,
  3533. -68.6,
  3534. 0,
  3535. 0,
  3536. 0,
  3537. 0,
  3538. 1,
  3539. 1,
  3540. 1,
  3541. 1
  3542. ]
  3543. },
  3544. "_eulerAngles": {
  3545. "__type__": "cc.Vec3",
  3546. "x": 0,
  3547. "y": 0,
  3548. "z": 0
  3549. },
  3550. "_skewX": 0,
  3551. "_skewY": 0,
  3552. "_is3DNode": false,
  3553. "_groupIndex": 0,
  3554. "groupIndex": 0,
  3555. "_id": ""
  3556. },
  3557. {
  3558. "__type__": "cc.Node",
  3559. "_name": "label",
  3560. "_objFlags": 0,
  3561. "_parent": {
  3562. "__id__": 87
  3563. },
  3564. "_children": [],
  3565. "_active": true,
  3566. "_components": [
  3567. {
  3568. "__id__": 89
  3569. },
  3570. {
  3571. "__id__": 90
  3572. }
  3573. ],
  3574. "_prefab": {
  3575. "__id__": 91
  3576. },
  3577. "_opacity": 255,
  3578. "_color": {
  3579. "__type__": "cc.Color",
  3580. "r": 136,
  3581. "g": 81,
  3582. "b": 31,
  3583. "a": 255
  3584. },
  3585. "_contentSize": {
  3586. "__type__": "cc.Size",
  3587. "width": 200,
  3588. "height": 40
  3589. },
  3590. "_anchorPoint": {
  3591. "__type__": "cc.Vec2",
  3592. "x": 0.5,
  3593. "y": 0.5
  3594. },
  3595. "_trs": {
  3596. "__type__": "TypedArray",
  3597. "ctor": "Float64Array",
  3598. "array": [
  3599. 0,
  3600. 5,
  3601. 0,
  3602. 0,
  3603. 0,
  3604. 0,
  3605. 1,
  3606. 1,
  3607. 1,
  3608. 1
  3609. ]
  3610. },
  3611. "_eulerAngles": {
  3612. "__type__": "cc.Vec3",
  3613. "x": 0,
  3614. "y": 0,
  3615. "z": 0
  3616. },
  3617. "_skewX": 0,
  3618. "_skewY": 0,
  3619. "_is3DNode": false,
  3620. "_groupIndex": 0,
  3621. "groupIndex": 0,
  3622. "_id": ""
  3623. },
  3624. {
  3625. "__type__": "cc.Label",
  3626. "_name": "",
  3627. "_objFlags": 0,
  3628. "node": {
  3629. "__id__": 88
  3630. },
  3631. "_enabled": true,
  3632. "_materials": [
  3633. {
  3634. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3635. }
  3636. ],
  3637. "_srcBlendFactor": 770,
  3638. "_dstBlendFactor": 771,
  3639. "_useOriginalSize": false,
  3640. "_string": "popScence.rootNode_btnSure",
  3641. "_N$string": "popScence.rootNode_btnSure",
  3642. "_fontSize": 30,
  3643. "_lineHeight": 40,
  3644. "_enableWrapText": false,
  3645. "_N$file": null,
  3646. "_isSystemFontUsed": true,
  3647. "_spacingX": 0,
  3648. "_batchAsBitmap": false,
  3649. "_styleFlags": 0,
  3650. "_underlineHeight": 0,
  3651. "_N$horizontalAlign": 1,
  3652. "_N$verticalAlign": 1,
  3653. "_N$fontFamily": "Arial",
  3654. "_N$overflow": 2,
  3655. "_N$cacheMode": 0,
  3656. "_id": ""
  3657. },
  3658. {
  3659. "__type__": "744dcs4DCdNprNhG0xwq6FK",
  3660. "_name": "",
  3661. "_objFlags": 0,
  3662. "node": {
  3663. "__id__": 88
  3664. },
  3665. "_enabled": true,
  3666. "_dataID": "popScence.rootNode_btnSure",
  3667. "_id": ""
  3668. },
  3669. {
  3670. "__type__": "cc.PrefabInfo",
  3671. "root": {
  3672. "__id__": 1
  3673. },
  3674. "asset": {
  3675. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  3676. },
  3677. "fileId": "83fPCxxG5NYoivJK3HspLF",
  3678. "sync": false
  3679. },
  3680. {
  3681. "__type__": "cc.Button",
  3682. "_name": "",
  3683. "_objFlags": 0,
  3684. "node": {
  3685. "__id__": 87
  3686. },
  3687. "_enabled": true,
  3688. "_normalMaterial": null,
  3689. "_grayMaterial": null,
  3690. "duration": 0.1,
  3691. "zoomScale": 1.02,
  3692. "clickEvents": [
  3693. {
  3694. "__id__": 93
  3695. }
  3696. ],
  3697. "_N$interactable": true,
  3698. "_N$enableAutoGrayEffect": false,
  3699. "_N$transition": 3,
  3700. "transition": 3,
  3701. "_N$normalColor": {
  3702. "__type__": "cc.Color",
  3703. "r": 255,
  3704. "g": 255,
  3705. "b": 255,
  3706. "a": 255
  3707. },
  3708. "_N$pressedColor": {
  3709. "__type__": "cc.Color",
  3710. "r": 150,
  3711. "g": 150,
  3712. "b": 150,
  3713. "a": 255
  3714. },
  3715. "pressedColor": {
  3716. "__type__": "cc.Color",
  3717. "r": 150,
  3718. "g": 150,
  3719. "b": 150,
  3720. "a": 255
  3721. },
  3722. "_N$hoverColor": {
  3723. "__type__": "cc.Color",
  3724. "r": 255,
  3725. "g": 255,
  3726. "b": 255,
  3727. "a": 255
  3728. },
  3729. "hoverColor": {
  3730. "__type__": "cc.Color",
  3731. "r": 255,
  3732. "g": 255,
  3733. "b": 255,
  3734. "a": 255
  3735. },
  3736. "_N$disabledColor": {
  3737. "__type__": "cc.Color",
  3738. "r": 255,
  3739. "g": 255,
  3740. "b": 255,
  3741. "a": 255
  3742. },
  3743. "_N$normalSprite": null,
  3744. "_N$pressedSprite": null,
  3745. "pressedSprite": null,
  3746. "_N$hoverSprite": null,
  3747. "hoverSprite": null,
  3748. "_N$disabledSprite": null,
  3749. "_N$target": {
  3750. "__id__": 87
  3751. },
  3752. "_id": ""
  3753. },
  3754. {
  3755. "__type__": "cc.ClickEvent",
  3756. "target": {
  3757. "__id__": 1
  3758. },
  3759. "component": "",
  3760. "_componentId": "ad0afFl455PiZHgjXceDHdn",
  3761. "handler": "onBtnClickTopNodeOK",
  3762. "customEventData": ""
  3763. },
  3764. {
  3765. "__type__": "cc.Sprite",
  3766. "_name": "",
  3767. "_objFlags": 0,
  3768. "node": {
  3769. "__id__": 87
  3770. },
  3771. "_enabled": true,
  3772. "_materials": [
  3773. {
  3774. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3775. }
  3776. ],
  3777. "_srcBlendFactor": 770,
  3778. "_dstBlendFactor": 771,
  3779. "_spriteFrame": {
  3780. "__uuid__": "fe11ac5e-748c-420f-9d03-e71aadd7b363"
  3781. },
  3782. "_type": 1,
  3783. "_sizeMode": 0,
  3784. "_fillType": 0,
  3785. "_fillCenter": {
  3786. "__type__": "cc.Vec2",
  3787. "x": 0,
  3788. "y": 0
  3789. },
  3790. "_fillStart": 0,
  3791. "_fillRange": 0,
  3792. "_isTrimmedMode": true,
  3793. "_atlas": null,
  3794. "_id": ""
  3795. },
  3796. {
  3797. "__type__": "cc.PrefabInfo",
  3798. "root": {
  3799. "__id__": 1
  3800. },
  3801. "asset": {
  3802. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  3803. },
  3804. "fileId": "1blBt2CdtIZI18tPAPuIeC",
  3805. "sync": false
  3806. },
  3807. {
  3808. "__type__": "cc.Node",
  3809. "_name": "label0",
  3810. "_objFlags": 0,
  3811. "_parent": {
  3812. "__id__": 83
  3813. },
  3814. "_children": [],
  3815. "_active": true,
  3816. "_components": [
  3817. {
  3818. "__id__": 97
  3819. }
  3820. ],
  3821. "_prefab": {
  3822. "__id__": 98
  3823. },
  3824. "_opacity": 255,
  3825. "_color": {
  3826. "__type__": "cc.Color",
  3827. "r": 246,
  3828. "g": 246,
  3829. "b": 246,
  3830. "a": 255
  3831. },
  3832. "_contentSize": {
  3833. "__type__": "cc.Size",
  3834. "width": 550,
  3835. "height": 79.1
  3836. },
  3837. "_anchorPoint": {
  3838. "__type__": "cc.Vec2",
  3839. "x": 0.5,
  3840. "y": 0.5
  3841. },
  3842. "_trs": {
  3843. "__type__": "TypedArray",
  3844. "ctor": "Float64Array",
  3845. "array": [
  3846. 6,
  3847. 55,
  3848. 0,
  3849. 0,
  3850. 0,
  3851. 0,
  3852. 1,
  3853. 1,
  3854. 1,
  3855. 1
  3856. ]
  3857. },
  3858. "_eulerAngles": {
  3859. "__type__": "cc.Vec3",
  3860. "x": 0,
  3861. "y": 0,
  3862. "z": 0
  3863. },
  3864. "_skewX": 0,
  3865. "_skewY": 0,
  3866. "_is3DNode": false,
  3867. "_groupIndex": 0,
  3868. "groupIndex": 0,
  3869. "_id": ""
  3870. },
  3871. {
  3872. "__type__": "cc.Label",
  3873. "_name": "",
  3874. "_objFlags": 0,
  3875. "node": {
  3876. "__id__": 96
  3877. },
  3878. "_enabled": true,
  3879. "_materials": [
  3880. {
  3881. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3882. }
  3883. ],
  3884. "_srcBlendFactor": 770,
  3885. "_dstBlendFactor": 771,
  3886. "_useOriginalSize": false,
  3887. "_string": "You must recharge to participate in the event",
  3888. "_N$string": "You must recharge to participate in the event",
  3889. "_fontSize": 30,
  3890. "_lineHeight": 35,
  3891. "_enableWrapText": true,
  3892. "_N$file": null,
  3893. "_isSystemFontUsed": true,
  3894. "_spacingX": 0,
  3895. "_batchAsBitmap": false,
  3896. "_styleFlags": 0,
  3897. "_underlineHeight": 0,
  3898. "_N$horizontalAlign": 0,
  3899. "_N$verticalAlign": 1,
  3900. "_N$fontFamily": "Arial",
  3901. "_N$overflow": 3,
  3902. "_N$cacheMode": 0,
  3903. "_id": ""
  3904. },
  3905. {
  3906. "__type__": "cc.PrefabInfo",
  3907. "root": {
  3908. "__id__": 1
  3909. },
  3910. "asset": {
  3911. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  3912. },
  3913. "fileId": "33wJjgO0lM6rFUwSjvtE7h",
  3914. "sync": false
  3915. },
  3916. {
  3917. "__type__": "cc.PrefabInfo",
  3918. "root": {
  3919. "__id__": 1
  3920. },
  3921. "asset": {
  3922. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  3923. },
  3924. "fileId": "e0nZJO13xPepLvflTbLomC",
  3925. "sync": false
  3926. },
  3927. {
  3928. "__type__": "02105K1AlNMhrw7MxOmMk0D",
  3929. "_name": "",
  3930. "_objFlags": 0,
  3931. "node": {
  3932. "__id__": 77
  3933. },
  3934. "_enabled": true,
  3935. "_id": ""
  3936. },
  3937. {
  3938. "__type__": "cc.Widget",
  3939. "_name": "",
  3940. "_objFlags": 0,
  3941. "node": {
  3942. "__id__": 77
  3943. },
  3944. "_enabled": true,
  3945. "alignMode": 0,
  3946. "_target": null,
  3947. "_alignFlags": 45,
  3948. "_left": -320,
  3949. "_right": -320,
  3950. "_top": -206.45500000000004,
  3951. "_bottom": -90.545,
  3952. "_verticalCenter": 0,
  3953. "_horizontalCenter": 0,
  3954. "_isAbsLeft": true,
  3955. "_isAbsRight": true,
  3956. "_isAbsTop": true,
  3957. "_isAbsBottom": true,
  3958. "_isAbsHorizontalCenter": true,
  3959. "_isAbsVerticalCenter": true,
  3960. "_originalWidth": 0,
  3961. "_originalHeight": 0,
  3962. "_id": ""
  3963. },
  3964. {
  3965. "__type__": "cc.Button",
  3966. "_name": "",
  3967. "_objFlags": 0,
  3968. "node": {
  3969. "__id__": 77
  3970. },
  3971. "_enabled": true,
  3972. "_normalMaterial": null,
  3973. "_grayMaterial": null,
  3974. "duration": 0.1,
  3975. "zoomScale": 1.2,
  3976. "clickEvents": [],
  3977. "_N$interactable": true,
  3978. "_N$enableAutoGrayEffect": false,
  3979. "_N$transition": 0,
  3980. "transition": 0,
  3981. "_N$normalColor": {
  3982. "__type__": "cc.Color",
  3983. "r": 255,
  3984. "g": 255,
  3985. "b": 255,
  3986. "a": 255
  3987. },
  3988. "_N$pressedColor": {
  3989. "__type__": "cc.Color",
  3990. "r": 211,
  3991. "g": 211,
  3992. "b": 211,
  3993. "a": 255
  3994. },
  3995. "pressedColor": {
  3996. "__type__": "cc.Color",
  3997. "r": 211,
  3998. "g": 211,
  3999. "b": 211,
  4000. "a": 255
  4001. },
  4002. "_N$hoverColor": {
  4003. "__type__": "cc.Color",
  4004. "r": 255,
  4005. "g": 255,
  4006. "b": 255,
  4007. "a": 255
  4008. },
  4009. "hoverColor": {
  4010. "__type__": "cc.Color",
  4011. "r": 255,
  4012. "g": 255,
  4013. "b": 255,
  4014. "a": 255
  4015. },
  4016. "_N$disabledColor": {
  4017. "__type__": "cc.Color",
  4018. "r": 124,
  4019. "g": 124,
  4020. "b": 124,
  4021. "a": 255
  4022. },
  4023. "_N$normalSprite": null,
  4024. "_N$pressedSprite": null,
  4025. "pressedSprite": null,
  4026. "_N$hoverSprite": null,
  4027. "hoverSprite": null,
  4028. "_N$disabledSprite": null,
  4029. "_N$target": null,
  4030. "_id": ""
  4031. },
  4032. {
  4033. "__type__": "cc.PrefabInfo",
  4034. "root": {
  4035. "__id__": 1
  4036. },
  4037. "asset": {
  4038. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  4039. },
  4040. "fileId": "29w8SnOjFBO7TsfD/8e9Aq",
  4041. "sync": false
  4042. },
  4043. {
  4044. "__type__": "cc.PrefabInfo",
  4045. "root": {
  4046. "__id__": 1
  4047. },
  4048. "asset": {
  4049. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  4050. },
  4051. "fileId": "f5MoYBxGBGv7k+XgvFmj9b",
  4052. "sync": false
  4053. },
  4054. {
  4055. "__type__": "cc.Node",
  4056. "_name": "RuleNode",
  4057. "_objFlags": 0,
  4058. "_parent": {
  4059. "__id__": 1
  4060. },
  4061. "_children": [
  4062. {
  4063. "__id__": 106
  4064. },
  4065. {
  4066. "__id__": 111
  4067. },
  4068. {
  4069. "__id__": 115
  4070. },
  4071. {
  4072. "__id__": 120
  4073. },
  4074. {
  4075. "__id__": 129
  4076. },
  4077. {
  4078. "__id__": 132
  4079. },
  4080. {
  4081. "__id__": 162
  4082. },
  4083. {
  4084. "__id__": 165
  4085. }
  4086. ],
  4087. "_active": false,
  4088. "_components": [],
  4089. "_prefab": {
  4090. "__id__": 183
  4091. },
  4092. "_opacity": 255,
  4093. "_color": {
  4094. "__type__": "cc.Color",
  4095. "r": 255,
  4096. "g": 255,
  4097. "b": 255,
  4098. "a": 255
  4099. },
  4100. "_contentSize": {
  4101. "__type__": "cc.Size",
  4102. "width": 1624,
  4103. "height": 750
  4104. },
  4105. "_anchorPoint": {
  4106. "__type__": "cc.Vec2",
  4107. "x": 0.5,
  4108. "y": 0.5
  4109. },
  4110. "_trs": {
  4111. "__type__": "TypedArray",
  4112. "ctor": "Float64Array",
  4113. "array": [
  4114. 0,
  4115. 0,
  4116. 0,
  4117. 0,
  4118. 0,
  4119. 0,
  4120. 1,
  4121. 1,
  4122. 1,
  4123. 1
  4124. ]
  4125. },
  4126. "_eulerAngles": {
  4127. "__type__": "cc.Vec3",
  4128. "x": 0,
  4129. "y": 0,
  4130. "z": 0
  4131. },
  4132. "_skewX": 0,
  4133. "_skewY": 0,
  4134. "_is3DNode": false,
  4135. "_groupIndex": 0,
  4136. "groupIndex": 0,
  4137. "_id": ""
  4138. },
  4139. {
  4140. "__type__": "cc.Node",
  4141. "_name": "Mask",
  4142. "_objFlags": 0,
  4143. "_parent": {
  4144. "__id__": 105
  4145. },
  4146. "_children": [],
  4147. "_active": true,
  4148. "_components": [
  4149. {
  4150. "__id__": 107
  4151. },
  4152. {
  4153. "__id__": 108
  4154. },
  4155. {
  4156. "__id__": 109
  4157. }
  4158. ],
  4159. "_prefab": {
  4160. "__id__": 110
  4161. },
  4162. "_opacity": 120,
  4163. "_color": {
  4164. "__type__": "cc.Color",
  4165. "r": 0,
  4166. "g": 0,
  4167. "b": 0,
  4168. "a": 255
  4169. },
  4170. "_contentSize": {
  4171. "__type__": "cc.Size",
  4172. "width": 1624,
  4173. "height": 750
  4174. },
  4175. "_anchorPoint": {
  4176. "__type__": "cc.Vec2",
  4177. "x": 0.5,
  4178. "y": 0.5
  4179. },
  4180. "_trs": {
  4181. "__type__": "TypedArray",
  4182. "ctor": "Float64Array",
  4183. "array": [
  4184. 0,
  4185. 0,
  4186. 0,
  4187. 0,
  4188. 0,
  4189. 0,
  4190. 1,
  4191. 1,
  4192. 1,
  4193. 1
  4194. ]
  4195. },
  4196. "_eulerAngles": {
  4197. "__type__": "cc.Vec3",
  4198. "x": 0,
  4199. "y": 0,
  4200. "z": 0
  4201. },
  4202. "_skewX": 0,
  4203. "_skewY": 0,
  4204. "_is3DNode": false,
  4205. "_groupIndex": 0,
  4206. "groupIndex": 0,
  4207. "_id": ""
  4208. },
  4209. {
  4210. "__type__": "cc.Sprite",
  4211. "_name": "",
  4212. "_objFlags": 0,
  4213. "node": {
  4214. "__id__": 106
  4215. },
  4216. "_enabled": true,
  4217. "_materials": [
  4218. {
  4219. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4220. }
  4221. ],
  4222. "_srcBlendFactor": 770,
  4223. "_dstBlendFactor": 771,
  4224. "_spriteFrame": {
  4225. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  4226. },
  4227. "_type": 0,
  4228. "_sizeMode": 0,
  4229. "_fillType": 0,
  4230. "_fillCenter": {
  4231. "__type__": "cc.Vec2",
  4232. "x": 0,
  4233. "y": 0
  4234. },
  4235. "_fillStart": 0,
  4236. "_fillRange": 0,
  4237. "_isTrimmedMode": true,
  4238. "_atlas": null,
  4239. "_id": ""
  4240. },
  4241. {
  4242. "__type__": "cc.Button",
  4243. "_name": "",
  4244. "_objFlags": 0,
  4245. "node": {
  4246. "__id__": 106
  4247. },
  4248. "_enabled": true,
  4249. "_normalMaterial": null,
  4250. "_grayMaterial": null,
  4251. "duration": 0.1,
  4252. "zoomScale": 1.2,
  4253. "clickEvents": [],
  4254. "_N$interactable": true,
  4255. "_N$enableAutoGrayEffect": false,
  4256. "_N$transition": 0,
  4257. "transition": 0,
  4258. "_N$normalColor": {
  4259. "__type__": "cc.Color",
  4260. "r": 214,
  4261. "g": 214,
  4262. "b": 214,
  4263. "a": 255
  4264. },
  4265. "_N$pressedColor": {
  4266. "__type__": "cc.Color",
  4267. "r": 211,
  4268. "g": 211,
  4269. "b": 211,
  4270. "a": 255
  4271. },
  4272. "pressedColor": {
  4273. "__type__": "cc.Color",
  4274. "r": 211,
  4275. "g": 211,
  4276. "b": 211,
  4277. "a": 255
  4278. },
  4279. "_N$hoverColor": {
  4280. "__type__": "cc.Color",
  4281. "r": 255,
  4282. "g": 255,
  4283. "b": 255,
  4284. "a": 255
  4285. },
  4286. "hoverColor": {
  4287. "__type__": "cc.Color",
  4288. "r": 255,
  4289. "g": 255,
  4290. "b": 255,
  4291. "a": 255
  4292. },
  4293. "_N$disabledColor": {
  4294. "__type__": "cc.Color",
  4295. "r": 124,
  4296. "g": 124,
  4297. "b": 124,
  4298. "a": 255
  4299. },
  4300. "_N$normalSprite": null,
  4301. "_N$pressedSprite": null,
  4302. "pressedSprite": null,
  4303. "_N$hoverSprite": null,
  4304. "hoverSprite": null,
  4305. "_N$disabledSprite": null,
  4306. "_N$target": {
  4307. "__id__": 106
  4308. },
  4309. "_id": ""
  4310. },
  4311. {
  4312. "__type__": "cc.Widget",
  4313. "_name": "",
  4314. "_objFlags": 0,
  4315. "node": {
  4316. "__id__": 106
  4317. },
  4318. "_enabled": true,
  4319. "alignMode": 1,
  4320. "_target": null,
  4321. "_alignFlags": 45,
  4322. "_left": 0,
  4323. "_right": 0,
  4324. "_top": 0,
  4325. "_bottom": 0,
  4326. "_verticalCenter": 0,
  4327. "_horizontalCenter": 0,
  4328. "_isAbsLeft": true,
  4329. "_isAbsRight": true,
  4330. "_isAbsTop": true,
  4331. "_isAbsBottom": true,
  4332. "_isAbsHorizontalCenter": true,
  4333. "_isAbsVerticalCenter": true,
  4334. "_originalWidth": 1624,
  4335. "_originalHeight": 900,
  4336. "_id": ""
  4337. },
  4338. {
  4339. "__type__": "cc.PrefabInfo",
  4340. "root": {
  4341. "__id__": 1
  4342. },
  4343. "asset": {
  4344. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  4345. },
  4346. "fileId": "29P0Ijwt9Kk4CW5PJZEHqp",
  4347. "sync": false
  4348. },
  4349. {
  4350. "__type__": "cc.Node",
  4351. "_name": "bg",
  4352. "_objFlags": 0,
  4353. "_parent": {
  4354. "__id__": 105
  4355. },
  4356. "_children": [],
  4357. "_active": true,
  4358. "_components": [
  4359. {
  4360. "__id__": 112
  4361. },
  4362. {
  4363. "__id__": 113
  4364. }
  4365. ],
  4366. "_prefab": {
  4367. "__id__": 114
  4368. },
  4369. "_opacity": 255,
  4370. "_color": {
  4371. "__type__": "cc.Color",
  4372. "r": 255,
  4373. "g": 255,
  4374. "b": 255,
  4375. "a": 255
  4376. },
  4377. "_contentSize": {
  4378. "__type__": "cc.Size",
  4379. "width": 887,
  4380. "height": 620
  4381. },
  4382. "_anchorPoint": {
  4383. "__type__": "cc.Vec2",
  4384. "x": 0.5,
  4385. "y": 0.5
  4386. },
  4387. "_trs": {
  4388. "__type__": "TypedArray",
  4389. "ctor": "Float64Array",
  4390. "array": [
  4391. 0,
  4392. -15.469,
  4393. 0,
  4394. 0,
  4395. 0,
  4396. 0,
  4397. 1,
  4398. 1,
  4399. 1,
  4400. 1
  4401. ]
  4402. },
  4403. "_eulerAngles": {
  4404. "__type__": "cc.Vec3",
  4405. "x": 0,
  4406. "y": 0,
  4407. "z": 0
  4408. },
  4409. "_skewX": 0,
  4410. "_skewY": 0,
  4411. "_is3DNode": false,
  4412. "_groupIndex": 0,
  4413. "groupIndex": 0,
  4414. "_id": ""
  4415. },
  4416. {
  4417. "__type__": "cc.Sprite",
  4418. "_name": "",
  4419. "_objFlags": 0,
  4420. "node": {
  4421. "__id__": 111
  4422. },
  4423. "_enabled": true,
  4424. "_materials": [
  4425. {
  4426. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4427. }
  4428. ],
  4429. "_srcBlendFactor": 770,
  4430. "_dstBlendFactor": 771,
  4431. "_spriteFrame": {
  4432. "__uuid__": "fb367a09-f8b1-418d-9b56-4a91cb2f2ca4"
  4433. },
  4434. "_type": 1,
  4435. "_sizeMode": 0,
  4436. "_fillType": 0,
  4437. "_fillCenter": {
  4438. "__type__": "cc.Vec2",
  4439. "x": 0,
  4440. "y": 0
  4441. },
  4442. "_fillStart": 0,
  4443. "_fillRange": 0,
  4444. "_isTrimmedMode": true,
  4445. "_atlas": null,
  4446. "_id": ""
  4447. },
  4448. {
  4449. "__type__": "cc.Button",
  4450. "_name": "",
  4451. "_objFlags": 0,
  4452. "node": {
  4453. "__id__": 111
  4454. },
  4455. "_enabled": true,
  4456. "_normalMaterial": null,
  4457. "_grayMaterial": null,
  4458. "duration": 0.1,
  4459. "zoomScale": 1.2,
  4460. "clickEvents": [],
  4461. "_N$interactable": true,
  4462. "_N$enableAutoGrayEffect": false,
  4463. "_N$transition": 0,
  4464. "transition": 0,
  4465. "_N$normalColor": {
  4466. "__type__": "cc.Color",
  4467. "r": 214,
  4468. "g": 214,
  4469. "b": 214,
  4470. "a": 255
  4471. },
  4472. "_N$pressedColor": {
  4473. "__type__": "cc.Color",
  4474. "r": 211,
  4475. "g": 211,
  4476. "b": 211,
  4477. "a": 255
  4478. },
  4479. "pressedColor": {
  4480. "__type__": "cc.Color",
  4481. "r": 211,
  4482. "g": 211,
  4483. "b": 211,
  4484. "a": 255
  4485. },
  4486. "_N$hoverColor": {
  4487. "__type__": "cc.Color",
  4488. "r": 255,
  4489. "g": 255,
  4490. "b": 255,
  4491. "a": 255
  4492. },
  4493. "hoverColor": {
  4494. "__type__": "cc.Color",
  4495. "r": 255,
  4496. "g": 255,
  4497. "b": 255,
  4498. "a": 255
  4499. },
  4500. "_N$disabledColor": {
  4501. "__type__": "cc.Color",
  4502. "r": 124,
  4503. "g": 124,
  4504. "b": 124,
  4505. "a": 255
  4506. },
  4507. "_N$normalSprite": null,
  4508. "_N$pressedSprite": null,
  4509. "pressedSprite": null,
  4510. "_N$hoverSprite": null,
  4511. "hoverSprite": null,
  4512. "_N$disabledSprite": null,
  4513. "_N$target": {
  4514. "__id__": 111
  4515. },
  4516. "_id": ""
  4517. },
  4518. {
  4519. "__type__": "cc.PrefabInfo",
  4520. "root": {
  4521. "__id__": 1
  4522. },
  4523. "asset": {
  4524. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  4525. },
  4526. "fileId": "50wZCf0mdOvpl1/GwG2aiX",
  4527. "sync": false
  4528. },
  4529. {
  4530. "__type__": "cc.Node",
  4531. "_name": "btn_close",
  4532. "_objFlags": 0,
  4533. "_parent": {
  4534. "__id__": 105
  4535. },
  4536. "_children": [],
  4537. "_active": true,
  4538. "_components": [
  4539. {
  4540. "__id__": 116
  4541. },
  4542. {
  4543. "__id__": 117
  4544. }
  4545. ],
  4546. "_prefab": {
  4547. "__id__": 119
  4548. },
  4549. "_opacity": 255,
  4550. "_color": {
  4551. "__type__": "cc.Color",
  4552. "r": 255,
  4553. "g": 255,
  4554. "b": 255,
  4555. "a": 255
  4556. },
  4557. "_contentSize": {
  4558. "__type__": "cc.Size",
  4559. "width": 71,
  4560. "height": 72
  4561. },
  4562. "_anchorPoint": {
  4563. "__type__": "cc.Vec2",
  4564. "x": 0.5,
  4565. "y": 0.5
  4566. },
  4567. "_trs": {
  4568. "__type__": "TypedArray",
  4569. "ctor": "Float64Array",
  4570. "array": [
  4571. 441.862,
  4572. 278.244,
  4573. 0,
  4574. 0,
  4575. 0,
  4576. 0,
  4577. 1,
  4578. 1,
  4579. 1,
  4580. 1
  4581. ]
  4582. },
  4583. "_eulerAngles": {
  4584. "__type__": "cc.Vec3",
  4585. "x": 0,
  4586. "y": 0,
  4587. "z": 0
  4588. },
  4589. "_skewX": 0,
  4590. "_skewY": 0,
  4591. "_is3DNode": false,
  4592. "_groupIndex": 0,
  4593. "groupIndex": 0,
  4594. "_id": ""
  4595. },
  4596. {
  4597. "__type__": "cc.Sprite",
  4598. "_name": "",
  4599. "_objFlags": 0,
  4600. "node": {
  4601. "__id__": 115
  4602. },
  4603. "_enabled": true,
  4604. "_materials": [
  4605. {
  4606. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4607. }
  4608. ],
  4609. "_srcBlendFactor": 770,
  4610. "_dstBlendFactor": 771,
  4611. "_spriteFrame": {
  4612. "__uuid__": "671ef337-15c4-4929-9f3e-1c90f675a866"
  4613. },
  4614. "_type": 0,
  4615. "_sizeMode": 0,
  4616. "_fillType": 0,
  4617. "_fillCenter": {
  4618. "__type__": "cc.Vec2",
  4619. "x": 0,
  4620. "y": 0
  4621. },
  4622. "_fillStart": 0,
  4623. "_fillRange": 0,
  4624. "_isTrimmedMode": true,
  4625. "_atlas": null,
  4626. "_id": ""
  4627. },
  4628. {
  4629. "__type__": "cc.Button",
  4630. "_name": "",
  4631. "_objFlags": 0,
  4632. "node": {
  4633. "__id__": 115
  4634. },
  4635. "_enabled": true,
  4636. "_normalMaterial": null,
  4637. "_grayMaterial": null,
  4638. "duration": 0.1,
  4639. "zoomScale": 1.2,
  4640. "clickEvents": [
  4641. {
  4642. "__id__": 118
  4643. }
  4644. ],
  4645. "_N$interactable": true,
  4646. "_N$enableAutoGrayEffect": false,
  4647. "_N$transition": 3,
  4648. "transition": 3,
  4649. "_N$normalColor": {
  4650. "__type__": "cc.Color",
  4651. "r": 214,
  4652. "g": 214,
  4653. "b": 214,
  4654. "a": 255
  4655. },
  4656. "_N$pressedColor": {
  4657. "__type__": "cc.Color",
  4658. "r": 211,
  4659. "g": 211,
  4660. "b": 211,
  4661. "a": 255
  4662. },
  4663. "pressedColor": {
  4664. "__type__": "cc.Color",
  4665. "r": 211,
  4666. "g": 211,
  4667. "b": 211,
  4668. "a": 255
  4669. },
  4670. "_N$hoverColor": {
  4671. "__type__": "cc.Color",
  4672. "r": 255,
  4673. "g": 255,
  4674. "b": 255,
  4675. "a": 255
  4676. },
  4677. "hoverColor": {
  4678. "__type__": "cc.Color",
  4679. "r": 255,
  4680. "g": 255,
  4681. "b": 255,
  4682. "a": 255
  4683. },
  4684. "_N$disabledColor": {
  4685. "__type__": "cc.Color",
  4686. "r": 124,
  4687. "g": 124,
  4688. "b": 124,
  4689. "a": 255
  4690. },
  4691. "_N$normalSprite": null,
  4692. "_N$pressedSprite": null,
  4693. "pressedSprite": null,
  4694. "_N$hoverSprite": null,
  4695. "hoverSprite": null,
  4696. "_N$disabledSprite": null,
  4697. "_N$target": {
  4698. "__id__": 115
  4699. },
  4700. "_id": ""
  4701. },
  4702. {
  4703. "__type__": "cc.ClickEvent",
  4704. "target": {
  4705. "__id__": 1
  4706. },
  4707. "component": "",
  4708. "_componentId": "ad0afFl455PiZHgjXceDHdn",
  4709. "handler": "onBtnRuleClose",
  4710. "customEventData": ""
  4711. },
  4712. {
  4713. "__type__": "cc.PrefabInfo",
  4714. "root": {
  4715. "__id__": 1
  4716. },
  4717. "asset": {
  4718. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  4719. },
  4720. "fileId": "3fHZgGfdtNx4kUm5bPuChU",
  4721. "sync": false
  4722. },
  4723. {
  4724. "__type__": "cc.Node",
  4725. "_name": "title",
  4726. "_objFlags": 0,
  4727. "_parent": {
  4728. "__id__": 105
  4729. },
  4730. "_children": [
  4731. {
  4732. "__id__": 121
  4733. },
  4734. {
  4735. "__id__": 124
  4736. }
  4737. ],
  4738. "_active": true,
  4739. "_components": [
  4740. {
  4741. "__id__": 127
  4742. }
  4743. ],
  4744. "_prefab": {
  4745. "__id__": 128
  4746. },
  4747. "_opacity": 255,
  4748. "_color": {
  4749. "__type__": "cc.Color",
  4750. "r": 255,
  4751. "g": 255,
  4752. "b": 255,
  4753. "a": 255
  4754. },
  4755. "_contentSize": {
  4756. "__type__": "cc.Size",
  4757. "width": 294.21,
  4758. "height": 50.4
  4759. },
  4760. "_anchorPoint": {
  4761. "__type__": "cc.Vec2",
  4762. "x": 0.5,
  4763. "y": 0.5
  4764. },
  4765. "_trs": {
  4766. "__type__": "TypedArray",
  4767. "ctor": "Float64Array",
  4768. "array": [
  4769. 0,
  4770. 257,
  4771. 0,
  4772. 0,
  4773. 0,
  4774. 0,
  4775. 1,
  4776. 1,
  4777. 1,
  4778. 1
  4779. ]
  4780. },
  4781. "_eulerAngles": {
  4782. "__type__": "cc.Vec3",
  4783. "x": 0,
  4784. "y": 0,
  4785. "z": 0
  4786. },
  4787. "_skewX": 0,
  4788. "_skewY": 0,
  4789. "_is3DNode": false,
  4790. "_groupIndex": 0,
  4791. "groupIndex": 0,
  4792. "_id": ""
  4793. },
  4794. {
  4795. "__type__": "cc.Node",
  4796. "_name": "img_line_left",
  4797. "_objFlags": 0,
  4798. "_parent": {
  4799. "__id__": 120
  4800. },
  4801. "_children": [],
  4802. "_active": true,
  4803. "_components": [
  4804. {
  4805. "__id__": 122
  4806. }
  4807. ],
  4808. "_prefab": {
  4809. "__id__": 123
  4810. },
  4811. "_opacity": 255,
  4812. "_color": {
  4813. "__type__": "cc.Color",
  4814. "r": 255,
  4815. "g": 255,
  4816. "b": 255,
  4817. "a": 255
  4818. },
  4819. "_contentSize": {
  4820. "__type__": "cc.Size",
  4821. "width": 106,
  4822. "height": 14
  4823. },
  4824. "_anchorPoint": {
  4825. "__type__": "cc.Vec2",
  4826. "x": 0.5,
  4827. "y": 0.5
  4828. },
  4829. "_trs": {
  4830. "__type__": "TypedArray",
  4831. "ctor": "Float64Array",
  4832. "array": [
  4833. -250,
  4834. 0,
  4835. 0,
  4836. 0,
  4837. 0,
  4838. 0,
  4839. 1,
  4840. 1,
  4841. 1,
  4842. 1
  4843. ]
  4844. },
  4845. "_eulerAngles": {
  4846. "__type__": "cc.Vec3",
  4847. "x": 0,
  4848. "y": 0,
  4849. "z": 0
  4850. },
  4851. "_skewX": 0,
  4852. "_skewY": 0,
  4853. "_is3DNode": false,
  4854. "_groupIndex": 0,
  4855. "groupIndex": 0,
  4856. "_id": ""
  4857. },
  4858. {
  4859. "__type__": "cc.Sprite",
  4860. "_name": "",
  4861. "_objFlags": 0,
  4862. "node": {
  4863. "__id__": 121
  4864. },
  4865. "_enabled": true,
  4866. "_materials": [
  4867. {
  4868. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4869. }
  4870. ],
  4871. "_srcBlendFactor": 770,
  4872. "_dstBlendFactor": 771,
  4873. "_spriteFrame": {
  4874. "__uuid__": "00677550-fa06-46bc-85cb-5ded51acf69e"
  4875. },
  4876. "_type": 0,
  4877. "_sizeMode": 1,
  4878. "_fillType": 0,
  4879. "_fillCenter": {
  4880. "__type__": "cc.Vec2",
  4881. "x": 0,
  4882. "y": 0
  4883. },
  4884. "_fillStart": 0,
  4885. "_fillRange": 0,
  4886. "_isTrimmedMode": true,
  4887. "_atlas": null,
  4888. "_id": ""
  4889. },
  4890. {
  4891. "__type__": "cc.PrefabInfo",
  4892. "root": {
  4893. "__id__": 1
  4894. },
  4895. "asset": {
  4896. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  4897. },
  4898. "fileId": "6fvkh40oVMfIWHBOB3p4gP",
  4899. "sync": false
  4900. },
  4901. {
  4902. "__type__": "cc.Node",
  4903. "_name": "img_line_right",
  4904. "_objFlags": 0,
  4905. "_parent": {
  4906. "__id__": 120
  4907. },
  4908. "_children": [],
  4909. "_active": true,
  4910. "_components": [
  4911. {
  4912. "__id__": 125
  4913. }
  4914. ],
  4915. "_prefab": {
  4916. "__id__": 126
  4917. },
  4918. "_opacity": 255,
  4919. "_color": {
  4920. "__type__": "cc.Color",
  4921. "r": 255,
  4922. "g": 255,
  4923. "b": 255,
  4924. "a": 255
  4925. },
  4926. "_contentSize": {
  4927. "__type__": "cc.Size",
  4928. "width": 106,
  4929. "height": 14
  4930. },
  4931. "_anchorPoint": {
  4932. "__type__": "cc.Vec2",
  4933. "x": 0.5,
  4934. "y": 0.5
  4935. },
  4936. "_trs": {
  4937. "__type__": "TypedArray",
  4938. "ctor": "Float64Array",
  4939. "array": [
  4940. 250,
  4941. 0,
  4942. 0,
  4943. 0,
  4944. 0,
  4945. 0,
  4946. 1,
  4947. 1,
  4948. 1,
  4949. 1
  4950. ]
  4951. },
  4952. "_eulerAngles": {
  4953. "__type__": "cc.Vec3",
  4954. "x": 0,
  4955. "y": 0,
  4956. "z": 0
  4957. },
  4958. "_skewX": 0,
  4959. "_skewY": 0,
  4960. "_is3DNode": false,
  4961. "_groupIndex": 0,
  4962. "groupIndex": 0,
  4963. "_id": ""
  4964. },
  4965. {
  4966. "__type__": "cc.Sprite",
  4967. "_name": "",
  4968. "_objFlags": 0,
  4969. "node": {
  4970. "__id__": 124
  4971. },
  4972. "_enabled": true,
  4973. "_materials": [
  4974. {
  4975. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4976. }
  4977. ],
  4978. "_srcBlendFactor": 770,
  4979. "_dstBlendFactor": 771,
  4980. "_spriteFrame": {
  4981. "__uuid__": "a33b8e44-0ba5-4980-be5b-0d5d3bf06129"
  4982. },
  4983. "_type": 0,
  4984. "_sizeMode": 1,
  4985. "_fillType": 0,
  4986. "_fillCenter": {
  4987. "__type__": "cc.Vec2",
  4988. "x": 0,
  4989. "y": 0
  4990. },
  4991. "_fillStart": 0,
  4992. "_fillRange": 0,
  4993. "_isTrimmedMode": true,
  4994. "_atlas": null,
  4995. "_id": ""
  4996. },
  4997. {
  4998. "__type__": "cc.PrefabInfo",
  4999. "root": {
  5000. "__id__": 1
  5001. },
  5002. "asset": {
  5003. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5004. },
  5005. "fileId": "79Ss9NWdJODauaCCoGVxBX",
  5006. "sync": false
  5007. },
  5008. {
  5009. "__type__": "cc.Label",
  5010. "_name": "",
  5011. "_objFlags": 0,
  5012. "node": {
  5013. "__id__": 120
  5014. },
  5015. "_enabled": true,
  5016. "_materials": [
  5017. {
  5018. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5019. }
  5020. ],
  5021. "_srcBlendFactor": 770,
  5022. "_dstBlendFactor": 771,
  5023. "_useOriginalSize": false,
  5024. "_string": "Rebate bonus rule",
  5025. "_N$string": "Rebate bonus rule",
  5026. "_fontSize": 36,
  5027. "_lineHeight": 40,
  5028. "_enableWrapText": true,
  5029. "_N$file": null,
  5030. "_isSystemFontUsed": true,
  5031. "_spacingX": 0,
  5032. "_batchAsBitmap": false,
  5033. "_styleFlags": 0,
  5034. "_underlineHeight": 0,
  5035. "_N$horizontalAlign": 1,
  5036. "_N$verticalAlign": 1,
  5037. "_N$fontFamily": "Arial",
  5038. "_N$overflow": 0,
  5039. "_N$cacheMode": 0,
  5040. "_id": ""
  5041. },
  5042. {
  5043. "__type__": "cc.PrefabInfo",
  5044. "root": {
  5045. "__id__": 1
  5046. },
  5047. "asset": {
  5048. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5049. },
  5050. "fileId": "5d5Zudq/BDSJK2y6fLDoQf",
  5051. "sync": false
  5052. },
  5053. {
  5054. "__type__": "cc.Node",
  5055. "_name": "ruleInfo",
  5056. "_objFlags": 0,
  5057. "_parent": {
  5058. "__id__": 105
  5059. },
  5060. "_children": [],
  5061. "_active": false,
  5062. "_components": [
  5063. {
  5064. "__id__": 130
  5065. }
  5066. ],
  5067. "_prefab": {
  5068. "__id__": 131
  5069. },
  5070. "_opacity": 255,
  5071. "_color": {
  5072. "__type__": "cc.Color",
  5073. "r": 255,
  5074. "g": 255,
  5075. "b": 255,
  5076. "a": 255
  5077. },
  5078. "_contentSize": {
  5079. "__type__": "cc.Size",
  5080. "width": 710,
  5081. "height": 370.4
  5082. },
  5083. "_anchorPoint": {
  5084. "__type__": "cc.Vec2",
  5085. "x": 0.5,
  5086. "y": 0.5
  5087. },
  5088. "_trs": {
  5089. "__type__": "TypedArray",
  5090. "ctor": "Float64Array",
  5091. "array": [
  5092. 0,
  5093. 0,
  5094. 0,
  5095. 0,
  5096. 0,
  5097. 0,
  5098. 1,
  5099. 1,
  5100. 1,
  5101. 1
  5102. ]
  5103. },
  5104. "_eulerAngles": {
  5105. "__type__": "cc.Vec3",
  5106. "x": 0,
  5107. "y": 0,
  5108. "z": 0
  5109. },
  5110. "_skewX": 0,
  5111. "_skewY": 0,
  5112. "_is3DNode": false,
  5113. "_groupIndex": 0,
  5114. "groupIndex": 0,
  5115. "_id": ""
  5116. },
  5117. {
  5118. "__type__": "cc.Label",
  5119. "_name": "",
  5120. "_objFlags": 0,
  5121. "node": {
  5122. "__id__": 129
  5123. },
  5124. "_enabled": true,
  5125. "_materials": [
  5126. {
  5127. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5128. }
  5129. ],
  5130. "_srcBlendFactor": 770,
  5131. "_dstBlendFactor": 771,
  5132. "_useOriginalSize": false,
  5133. "_string": "1.Play in teenpatti classic, joker, AK47, get rebate bonus.\n2.At the end of each game, the bonus will be accumulated once.\n3.Reward can be claimed after 24 hours upon activation.\n4.The higher the Boot Amount, the higher the rebate.\n5.This event can only be opened by players who have recharged\n6.In order to maintain the fairness of the game,if there is cheating.deliberate gift andother ways,the platform will block the user's account.\n",
  5134. "_N$string": "1.Play in teenpatti classic, joker, AK47, get rebate bonus.\n2.At the end of each game, the bonus will be accumulated once.\n3.Reward can be claimed after 24 hours upon activation.\n4.The higher the Boot Amount, the higher the rebate.\n5.This event can only be opened by players who have recharged\n6.In order to maintain the fairness of the game,if there is cheating.deliberate gift andother ways,the platform will block the user's account.\n",
  5135. "_fontSize": 24,
  5136. "_lineHeight": 40,
  5137. "_enableWrapText": true,
  5138. "_N$file": null,
  5139. "_isSystemFontUsed": true,
  5140. "_spacingX": 0,
  5141. "_batchAsBitmap": false,
  5142. "_styleFlags": 0,
  5143. "_underlineHeight": 0,
  5144. "_N$horizontalAlign": 0,
  5145. "_N$verticalAlign": 1,
  5146. "_N$fontFamily": "Arial",
  5147. "_N$overflow": 3,
  5148. "_N$cacheMode": 0,
  5149. "_id": ""
  5150. },
  5151. {
  5152. "__type__": "cc.PrefabInfo",
  5153. "root": {
  5154. "__id__": 1
  5155. },
  5156. "asset": {
  5157. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5158. },
  5159. "fileId": "68vObXyMZHobgZeFqd5990",
  5160. "sync": false
  5161. },
  5162. {
  5163. "__type__": "cc.Node",
  5164. "_name": "RoomElement",
  5165. "_objFlags": 0,
  5166. "_parent": {
  5167. "__id__": 105
  5168. },
  5169. "_children": [
  5170. {
  5171. "__id__": 133
  5172. },
  5173. {
  5174. "__id__": 142
  5175. },
  5176. {
  5177. "__id__": 151
  5178. }
  5179. ],
  5180. "_active": false,
  5181. "_components": [
  5182. {
  5183. "__id__": 160
  5184. }
  5185. ],
  5186. "_prefab": {
  5187. "__id__": 161
  5188. },
  5189. "_opacity": 255,
  5190. "_color": {
  5191. "__type__": "cc.Color",
  5192. "r": 255,
  5193. "g": 255,
  5194. "b": 255,
  5195. "a": 255
  5196. },
  5197. "_contentSize": {
  5198. "__type__": "cc.Size",
  5199. "width": 709,
  5200. "height": 58
  5201. },
  5202. "_anchorPoint": {
  5203. "__type__": "cc.Vec2",
  5204. "x": 0.5,
  5205. "y": 0.5
  5206. },
  5207. "_trs": {
  5208. "__type__": "TypedArray",
  5209. "ctor": "Float64Array",
  5210. "array": [
  5211. 0,
  5212. 0,
  5213. 0,
  5214. 0,
  5215. 0,
  5216. 0,
  5217. 1,
  5218. 1,
  5219. 1,
  5220. 1
  5221. ]
  5222. },
  5223. "_eulerAngles": {
  5224. "__type__": "cc.Vec3",
  5225. "x": 0,
  5226. "y": 0,
  5227. "z": 0
  5228. },
  5229. "_skewX": 0,
  5230. "_skewY": 0,
  5231. "_is3DNode": false,
  5232. "_groupIndex": 0,
  5233. "groupIndex": 0,
  5234. "_id": ""
  5235. },
  5236. {
  5237. "__type__": "cc.Node",
  5238. "_name": "BootAmount",
  5239. "_objFlags": 0,
  5240. "_parent": {
  5241. "__id__": 132
  5242. },
  5243. "_children": [
  5244. {
  5245. "__id__": 134
  5246. },
  5247. {
  5248. "__id__": 137
  5249. }
  5250. ],
  5251. "_active": true,
  5252. "_components": [
  5253. {
  5254. "__id__": 140
  5255. }
  5256. ],
  5257. "_prefab": {
  5258. "__id__": 141
  5259. },
  5260. "_opacity": 255,
  5261. "_color": {
  5262. "__type__": "cc.Color",
  5263. "r": 255,
  5264. "g": 255,
  5265. "b": 255,
  5266. "a": 255
  5267. },
  5268. "_contentSize": {
  5269. "__type__": "cc.Size",
  5270. "width": 196.11,
  5271. "height": 50.4
  5272. },
  5273. "_anchorPoint": {
  5274. "__type__": "cc.Vec2",
  5275. "x": 0.5,
  5276. "y": 0.5
  5277. },
  5278. "_trs": {
  5279. "__type__": "TypedArray",
  5280. "ctor": "Float64Array",
  5281. "array": [
  5282. -228,
  5283. 0,
  5284. 0,
  5285. 0,
  5286. 0,
  5287. 0,
  5288. 1,
  5289. 1,
  5290. 1,
  5291. 1
  5292. ]
  5293. },
  5294. "_eulerAngles": {
  5295. "__type__": "cc.Vec3",
  5296. "x": 0,
  5297. "y": 0,
  5298. "z": 0
  5299. },
  5300. "_skewX": 0,
  5301. "_skewY": 0,
  5302. "_is3DNode": false,
  5303. "_groupIndex": 0,
  5304. "groupIndex": 0,
  5305. "_id": ""
  5306. },
  5307. {
  5308. "__type__": "cc.Node",
  5309. "_name": "New Label",
  5310. "_objFlags": 0,
  5311. "_parent": {
  5312. "__id__": 133
  5313. },
  5314. "_children": [],
  5315. "_active": true,
  5316. "_components": [
  5317. {
  5318. "__id__": 135
  5319. }
  5320. ],
  5321. "_prefab": {
  5322. "__id__": 136
  5323. },
  5324. "_opacity": 255,
  5325. "_color": {
  5326. "__type__": "cc.Color",
  5327. "r": 255,
  5328. "g": 255,
  5329. "b": 255,
  5330. "a": 255
  5331. },
  5332. "_contentSize": {
  5333. "__type__": "cc.Size",
  5334. "width": 162.75,
  5335. "height": 35.28
  5336. },
  5337. "_anchorPoint": {
  5338. "__type__": "cc.Vec2",
  5339. "x": 0.5,
  5340. "y": 0.5
  5341. },
  5342. "_trs": {
  5343. "__type__": "TypedArray",
  5344. "ctor": "Float64Array",
  5345. "array": [
  5346. -16.680000000000007,
  5347. 0,
  5348. 0,
  5349. 0,
  5350. 0,
  5351. 0,
  5352. 1,
  5353. 1,
  5354. 1,
  5355. 1
  5356. ]
  5357. },
  5358. "_eulerAngles": {
  5359. "__type__": "cc.Vec3",
  5360. "x": 0,
  5361. "y": 0,
  5362. "z": 0
  5363. },
  5364. "_skewX": 0,
  5365. "_skewY": 0,
  5366. "_is3DNode": false,
  5367. "_groupIndex": 0,
  5368. "groupIndex": 0,
  5369. "_id": ""
  5370. },
  5371. {
  5372. "__type__": "cc.Label",
  5373. "_name": "",
  5374. "_objFlags": 0,
  5375. "node": {
  5376. "__id__": 134
  5377. },
  5378. "_enabled": true,
  5379. "_materials": [
  5380. {
  5381. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5382. }
  5383. ],
  5384. "_srcBlendFactor": 770,
  5385. "_dstBlendFactor": 771,
  5386. "_useOriginalSize": false,
  5387. "_string": "Boot Amount:",
  5388. "_N$string": "Boot Amount:",
  5389. "_fontSize": 24,
  5390. "_lineHeight": 28,
  5391. "_enableWrapText": true,
  5392. "_N$file": null,
  5393. "_isSystemFontUsed": true,
  5394. "_spacingX": 0,
  5395. "_batchAsBitmap": false,
  5396. "_styleFlags": 0,
  5397. "_underlineHeight": 0,
  5398. "_N$horizontalAlign": 1,
  5399. "_N$verticalAlign": 1,
  5400. "_N$fontFamily": "Arial",
  5401. "_N$overflow": 0,
  5402. "_N$cacheMode": 0,
  5403. "_id": ""
  5404. },
  5405. {
  5406. "__type__": "cc.PrefabInfo",
  5407. "root": {
  5408. "__id__": 1
  5409. },
  5410. "asset": {
  5411. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5412. },
  5413. "fileId": "bcJbW6XZVMirrfyMD7NMpo",
  5414. "sync": false
  5415. },
  5416. {
  5417. "__type__": "cc.Node",
  5418. "_name": "num",
  5419. "_objFlags": 0,
  5420. "_parent": {
  5421. "__id__": 133
  5422. },
  5423. "_children": [],
  5424. "_active": true,
  5425. "_components": [
  5426. {
  5427. "__id__": 138
  5428. }
  5429. ],
  5430. "_prefab": {
  5431. "__id__": 139
  5432. },
  5433. "_opacity": 255,
  5434. "_color": {
  5435. "__type__": "cc.Color",
  5436. "r": 255,
  5437. "g": 255,
  5438. "b": 255,
  5439. "a": 255
  5440. },
  5441. "_contentSize": {
  5442. "__type__": "cc.Size",
  5443. "width": 33.36,
  5444. "height": 35.28
  5445. },
  5446. "_anchorPoint": {
  5447. "__type__": "cc.Vec2",
  5448. "x": 0.5,
  5449. "y": 0.5
  5450. },
  5451. "_trs": {
  5452. "__type__": "TypedArray",
  5453. "ctor": "Float64Array",
  5454. "array": [
  5455. 81.375,
  5456. 0,
  5457. 0,
  5458. 0,
  5459. 0,
  5460. 0,
  5461. 1,
  5462. 1,
  5463. 1,
  5464. 1
  5465. ]
  5466. },
  5467. "_eulerAngles": {
  5468. "__type__": "cc.Vec3",
  5469. "x": 0,
  5470. "y": 0,
  5471. "z": 0
  5472. },
  5473. "_skewX": 0,
  5474. "_skewY": 0,
  5475. "_is3DNode": false,
  5476. "_groupIndex": 0,
  5477. "groupIndex": 0,
  5478. "_id": ""
  5479. },
  5480. {
  5481. "__type__": "cc.Label",
  5482. "_name": "",
  5483. "_objFlags": 0,
  5484. "node": {
  5485. "__id__": 137
  5486. },
  5487. "_enabled": true,
  5488. "_materials": [
  5489. {
  5490. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5491. }
  5492. ],
  5493. "_srcBlendFactor": 770,
  5494. "_dstBlendFactor": 771,
  5495. "_useOriginalSize": false,
  5496. "_string": "0.1",
  5497. "_N$string": "0.1",
  5498. "_fontSize": 24,
  5499. "_lineHeight": 28,
  5500. "_enableWrapText": true,
  5501. "_N$file": null,
  5502. "_isSystemFontUsed": true,
  5503. "_spacingX": 0,
  5504. "_batchAsBitmap": false,
  5505. "_styleFlags": 0,
  5506. "_underlineHeight": 0,
  5507. "_N$horizontalAlign": 1,
  5508. "_N$verticalAlign": 1,
  5509. "_N$fontFamily": "Arial",
  5510. "_N$overflow": 0,
  5511. "_N$cacheMode": 0,
  5512. "_id": ""
  5513. },
  5514. {
  5515. "__type__": "cc.PrefabInfo",
  5516. "root": {
  5517. "__id__": 1
  5518. },
  5519. "asset": {
  5520. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5521. },
  5522. "fileId": "8fgdDZwGpCqZmSgYcDyFat",
  5523. "sync": false
  5524. },
  5525. {
  5526. "__type__": "cc.Layout",
  5527. "_name": "",
  5528. "_objFlags": 0,
  5529. "node": {
  5530. "__id__": 133
  5531. },
  5532. "_enabled": true,
  5533. "_layoutSize": {
  5534. "__type__": "cc.Size",
  5535. "width": 196.11,
  5536. "height": 50.4
  5537. },
  5538. "_resize": 1,
  5539. "_N$layoutType": 1,
  5540. "_N$cellSize": {
  5541. "__type__": "cc.Size",
  5542. "width": 40,
  5543. "height": 40
  5544. },
  5545. "_N$startAxis": 0,
  5546. "_N$paddingLeft": 0,
  5547. "_N$paddingRight": 0,
  5548. "_N$paddingTop": 0,
  5549. "_N$paddingBottom": 0,
  5550. "_N$spacingX": 0,
  5551. "_N$spacingY": 0,
  5552. "_N$verticalDirection": 1,
  5553. "_N$horizontalDirection": 0,
  5554. "_N$affectedByScale": false,
  5555. "_id": ""
  5556. },
  5557. {
  5558. "__type__": "cc.PrefabInfo",
  5559. "root": {
  5560. "__id__": 1
  5561. },
  5562. "asset": {
  5563. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5564. },
  5565. "fileId": "1ahX7z/adEwrgoyGLU2Jiy",
  5566. "sync": false
  5567. },
  5568. {
  5569. "__type__": "cc.Node",
  5570. "_name": "Limit",
  5571. "_objFlags": 0,
  5572. "_parent": {
  5573. "__id__": 132
  5574. },
  5575. "_children": [
  5576. {
  5577. "__id__": 143
  5578. },
  5579. {
  5580. "__id__": 146
  5581. }
  5582. ],
  5583. "_active": true,
  5584. "_components": [
  5585. {
  5586. "__id__": 149
  5587. }
  5588. ],
  5589. "_prefab": {
  5590. "__id__": 150
  5591. },
  5592. "_opacity": 255,
  5593. "_color": {
  5594. "__type__": "cc.Color",
  5595. "r": 255,
  5596. "g": 255,
  5597. "b": 255,
  5598. "a": 255
  5599. },
  5600. "_contentSize": {
  5601. "__type__": "cc.Size",
  5602. "width": 101.37,
  5603. "height": 50.4
  5604. },
  5605. "_anchorPoint": {
  5606. "__type__": "cc.Vec2",
  5607. "x": 0.5,
  5608. "y": 0.5
  5609. },
  5610. "_trs": {
  5611. "__type__": "TypedArray",
  5612. "ctor": "Float64Array",
  5613. "array": [
  5614. 4,
  5615. 0,
  5616. 0,
  5617. 0,
  5618. 0,
  5619. 0,
  5620. 1,
  5621. 1,
  5622. 1,
  5623. 1
  5624. ]
  5625. },
  5626. "_eulerAngles": {
  5627. "__type__": "cc.Vec3",
  5628. "x": 0,
  5629. "y": 0,
  5630. "z": 0
  5631. },
  5632. "_skewX": 0,
  5633. "_skewY": 0,
  5634. "_is3DNode": false,
  5635. "_groupIndex": 0,
  5636. "groupIndex": 0,
  5637. "_id": ""
  5638. },
  5639. {
  5640. "__type__": "cc.Node",
  5641. "_name": "New Label",
  5642. "_objFlags": 0,
  5643. "_parent": {
  5644. "__id__": 142
  5645. },
  5646. "_children": [],
  5647. "_active": true,
  5648. "_components": [
  5649. {
  5650. "__id__": 144
  5651. }
  5652. ],
  5653. "_prefab": {
  5654. "__id__": 145
  5655. },
  5656. "_opacity": 255,
  5657. "_color": {
  5658. "__type__": "cc.Color",
  5659. "r": 255,
  5660. "g": 255,
  5661. "b": 255,
  5662. "a": 255
  5663. },
  5664. "_contentSize": {
  5665. "__type__": "cc.Size",
  5666. "width": 74.67,
  5667. "height": 35.28
  5668. },
  5669. "_anchorPoint": {
  5670. "__type__": "cc.Vec2",
  5671. "x": 0.5,
  5672. "y": 0.5
  5673. },
  5674. "_trs": {
  5675. "__type__": "TypedArray",
  5676. "ctor": "Float64Array",
  5677. "array": [
  5678. -13.350000000000001,
  5679. 0,
  5680. 0,
  5681. 0,
  5682. 0,
  5683. 0,
  5684. 1,
  5685. 1,
  5686. 1,
  5687. 1
  5688. ]
  5689. },
  5690. "_eulerAngles": {
  5691. "__type__": "cc.Vec3",
  5692. "x": 0,
  5693. "y": 0,
  5694. "z": 0
  5695. },
  5696. "_skewX": 0,
  5697. "_skewY": 0,
  5698. "_is3DNode": false,
  5699. "_groupIndex": 0,
  5700. "groupIndex": 0,
  5701. "_id": ""
  5702. },
  5703. {
  5704. "__type__": "cc.Label",
  5705. "_name": "",
  5706. "_objFlags": 0,
  5707. "node": {
  5708. "__id__": 143
  5709. },
  5710. "_enabled": true,
  5711. "_materials": [
  5712. {
  5713. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5714. }
  5715. ],
  5716. "_srcBlendFactor": 770,
  5717. "_dstBlendFactor": 771,
  5718. "_useOriginalSize": false,
  5719. "_string": "Limit:",
  5720. "_N$string": "Limit:",
  5721. "_fontSize": 24,
  5722. "_lineHeight": 28,
  5723. "_enableWrapText": true,
  5724. "_N$file": null,
  5725. "_isSystemFontUsed": true,
  5726. "_spacingX": 0,
  5727. "_batchAsBitmap": false,
  5728. "_styleFlags": 0,
  5729. "_underlineHeight": 0,
  5730. "_N$horizontalAlign": 1,
  5731. "_N$verticalAlign": 1,
  5732. "_N$fontFamily": "Arial",
  5733. "_N$overflow": 0,
  5734. "_N$cacheMode": 0,
  5735. "_id": ""
  5736. },
  5737. {
  5738. "__type__": "cc.PrefabInfo",
  5739. "root": {
  5740. "__id__": 1
  5741. },
  5742. "asset": {
  5743. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5744. },
  5745. "fileId": "90ecfwGmdKn7nzoVUfYHf9",
  5746. "sync": false
  5747. },
  5748. {
  5749. "__type__": "cc.Node",
  5750. "_name": "num",
  5751. "_objFlags": 0,
  5752. "_parent": {
  5753. "__id__": 142
  5754. },
  5755. "_children": [],
  5756. "_active": true,
  5757. "_components": [
  5758. {
  5759. "__id__": 147
  5760. }
  5761. ],
  5762. "_prefab": {
  5763. "__id__": 148
  5764. },
  5765. "_opacity": 255,
  5766. "_color": {
  5767. "__type__": "cc.Color",
  5768. "r": 255,
  5769. "g": 255,
  5770. "b": 255,
  5771. "a": 255
  5772. },
  5773. "_contentSize": {
  5774. "__type__": "cc.Size",
  5775. "width": 26.7,
  5776. "height": 35.28
  5777. },
  5778. "_anchorPoint": {
  5779. "__type__": "cc.Vec2",
  5780. "x": 0.5,
  5781. "y": 0.5
  5782. },
  5783. "_trs": {
  5784. "__type__": "TypedArray",
  5785. "ctor": "Float64Array",
  5786. "array": [
  5787. 37.335,
  5788. 0,
  5789. 0,
  5790. 0,
  5791. 0,
  5792. 0,
  5793. 1,
  5794. 1,
  5795. 1,
  5796. 1
  5797. ]
  5798. },
  5799. "_eulerAngles": {
  5800. "__type__": "cc.Vec3",
  5801. "x": 0,
  5802. "y": 0,
  5803. "z": 0
  5804. },
  5805. "_skewX": 0,
  5806. "_skewY": 0,
  5807. "_is3DNode": false,
  5808. "_groupIndex": 0,
  5809. "groupIndex": 0,
  5810. "_id": ""
  5811. },
  5812. {
  5813. "__type__": "cc.Label",
  5814. "_name": "",
  5815. "_objFlags": 0,
  5816. "node": {
  5817. "__id__": 146
  5818. },
  5819. "_enabled": true,
  5820. "_materials": [
  5821. {
  5822. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5823. }
  5824. ],
  5825. "_srcBlendFactor": 770,
  5826. "_dstBlendFactor": 771,
  5827. "_useOriginalSize": false,
  5828. "_string": "21",
  5829. "_N$string": "21",
  5830. "_fontSize": 24,
  5831. "_lineHeight": 28,
  5832. "_enableWrapText": true,
  5833. "_N$file": null,
  5834. "_isSystemFontUsed": true,
  5835. "_spacingX": 0,
  5836. "_batchAsBitmap": false,
  5837. "_styleFlags": 0,
  5838. "_underlineHeight": 0,
  5839. "_N$horizontalAlign": 1,
  5840. "_N$verticalAlign": 1,
  5841. "_N$fontFamily": "Arial",
  5842. "_N$overflow": 0,
  5843. "_N$cacheMode": 0,
  5844. "_id": ""
  5845. },
  5846. {
  5847. "__type__": "cc.PrefabInfo",
  5848. "root": {
  5849. "__id__": 1
  5850. },
  5851. "asset": {
  5852. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5853. },
  5854. "fileId": "85wHbexqxIBoLYtJvUNx8V",
  5855. "sync": false
  5856. },
  5857. {
  5858. "__type__": "cc.Layout",
  5859. "_name": "",
  5860. "_objFlags": 0,
  5861. "node": {
  5862. "__id__": 142
  5863. },
  5864. "_enabled": true,
  5865. "_layoutSize": {
  5866. "__type__": "cc.Size",
  5867. "width": 101.37,
  5868. "height": 50.4
  5869. },
  5870. "_resize": 1,
  5871. "_N$layoutType": 1,
  5872. "_N$cellSize": {
  5873. "__type__": "cc.Size",
  5874. "width": 40,
  5875. "height": 40
  5876. },
  5877. "_N$startAxis": 0,
  5878. "_N$paddingLeft": 0,
  5879. "_N$paddingRight": 0,
  5880. "_N$paddingTop": 0,
  5881. "_N$paddingBottom": 0,
  5882. "_N$spacingX": 0,
  5883. "_N$spacingY": 0,
  5884. "_N$verticalDirection": 1,
  5885. "_N$horizontalDirection": 0,
  5886. "_N$affectedByScale": false,
  5887. "_id": ""
  5888. },
  5889. {
  5890. "__type__": "cc.PrefabInfo",
  5891. "root": {
  5892. "__id__": 1
  5893. },
  5894. "asset": {
  5895. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  5896. },
  5897. "fileId": "15OS0JXbNKJbZ/w2nw/acj",
  5898. "sync": false
  5899. },
  5900. {
  5901. "__type__": "cc.Node",
  5902. "_name": "Rebate",
  5903. "_objFlags": 0,
  5904. "_parent": {
  5905. "__id__": 132
  5906. },
  5907. "_children": [
  5908. {
  5909. "__id__": 152
  5910. },
  5911. {
  5912. "__id__": 155
  5913. }
  5914. ],
  5915. "_active": true,
  5916. "_components": [
  5917. {
  5918. "__id__": 158
  5919. }
  5920. ],
  5921. "_prefab": {
  5922. "__id__": 159
  5923. },
  5924. "_opacity": 255,
  5925. "_color": {
  5926. "__type__": "cc.Color",
  5927. "r": 255,
  5928. "g": 255,
  5929. "b": 255,
  5930. "a": 255
  5931. },
  5932. "_contentSize": {
  5933. "__type__": "cc.Size",
  5934. "width": 169.44,
  5935. "height": 50.4
  5936. },
  5937. "_anchorPoint": {
  5938. "__type__": "cc.Vec2",
  5939. "x": 0.5,
  5940. "y": 0.5
  5941. },
  5942. "_trs": {
  5943. "__type__": "TypedArray",
  5944. "ctor": "Float64Array",
  5945. "array": [
  5946. 231.793,
  5947. 0,
  5948. 0,
  5949. 0,
  5950. 0,
  5951. 0,
  5952. 1,
  5953. 1,
  5954. 1,
  5955. 1
  5956. ]
  5957. },
  5958. "_eulerAngles": {
  5959. "__type__": "cc.Vec3",
  5960. "x": 0,
  5961. "y": 0,
  5962. "z": 0
  5963. },
  5964. "_skewX": 0,
  5965. "_skewY": 0,
  5966. "_is3DNode": false,
  5967. "_groupIndex": 0,
  5968. "groupIndex": 0,
  5969. "_id": ""
  5970. },
  5971. {
  5972. "__type__": "cc.Node",
  5973. "_name": "New Label",
  5974. "_objFlags": 0,
  5975. "_parent": {
  5976. "__id__": 151
  5977. },
  5978. "_children": [],
  5979. "_active": true,
  5980. "_components": [
  5981. {
  5982. "__id__": 153
  5983. }
  5984. ],
  5985. "_prefab": {
  5986. "__id__": 154
  5987. },
  5988. "_opacity": 255,
  5989. "_color": {
  5990. "__type__": "cc.Color",
  5991. "r": 255,
  5992. "g": 255,
  5993. "b": 255,
  5994. "a": 255
  5995. },
  5996. "_contentSize": {
  5997. "__type__": "cc.Size",
  5998. "width": 101.39,
  5999. "height": 35.28
  6000. },
  6001. "_anchorPoint": {
  6002. "__type__": "cc.Vec2",
  6003. "x": 0.5,
  6004. "y": 0.5
  6005. },
  6006. "_trs": {
  6007. "__type__": "TypedArray",
  6008. "ctor": "Float64Array",
  6009. "array": [
  6010. -34.025,
  6011. 0,
  6012. 0,
  6013. 0,
  6014. 0,
  6015. 0,
  6016. 1,
  6017. 1,
  6018. 1,
  6019. 1
  6020. ]
  6021. },
  6022. "_eulerAngles": {
  6023. "__type__": "cc.Vec3",
  6024. "x": 0,
  6025. "y": 0,
  6026. "z": 0
  6027. },
  6028. "_skewX": 0,
  6029. "_skewY": 0,
  6030. "_is3DNode": false,
  6031. "_groupIndex": 0,
  6032. "groupIndex": 0,
  6033. "_id": ""
  6034. },
  6035. {
  6036. "__type__": "cc.Label",
  6037. "_name": "",
  6038. "_objFlags": 0,
  6039. "node": {
  6040. "__id__": 152
  6041. },
  6042. "_enabled": true,
  6043. "_materials": [
  6044. {
  6045. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6046. }
  6047. ],
  6048. "_srcBlendFactor": 770,
  6049. "_dstBlendFactor": 771,
  6050. "_useOriginalSize": false,
  6051. "_string": "Rebate:",
  6052. "_N$string": "Rebate:",
  6053. "_fontSize": 24,
  6054. "_lineHeight": 28,
  6055. "_enableWrapText": true,
  6056. "_N$file": null,
  6057. "_isSystemFontUsed": true,
  6058. "_spacingX": 0,
  6059. "_batchAsBitmap": false,
  6060. "_styleFlags": 0,
  6061. "_underlineHeight": 0,
  6062. "_N$horizontalAlign": 1,
  6063. "_N$verticalAlign": 1,
  6064. "_N$fontFamily": "Arial",
  6065. "_N$overflow": 0,
  6066. "_N$cacheMode": 0,
  6067. "_id": ""
  6068. },
  6069. {
  6070. "__type__": "cc.PrefabInfo",
  6071. "root": {
  6072. "__id__": 1
  6073. },
  6074. "asset": {
  6075. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6076. },
  6077. "fileId": "e7Py94QnZAL6s/Uk0awCyX",
  6078. "sync": false
  6079. },
  6080. {
  6081. "__type__": "cc.Node",
  6082. "_name": "num",
  6083. "_objFlags": 0,
  6084. "_parent": {
  6085. "__id__": 151
  6086. },
  6087. "_children": [],
  6088. "_active": true,
  6089. "_components": [
  6090. {
  6091. "__id__": 156
  6092. }
  6093. ],
  6094. "_prefab": {
  6095. "__id__": 157
  6096. },
  6097. "_opacity": 255,
  6098. "_color": {
  6099. "__type__": "cc.Color",
  6100. "r": 255,
  6101. "g": 255,
  6102. "b": 255,
  6103. "a": 255
  6104. },
  6105. "_contentSize": {
  6106. "__type__": "cc.Size",
  6107. "width": 68.05,
  6108. "height": 35.28
  6109. },
  6110. "_anchorPoint": {
  6111. "__type__": "cc.Vec2",
  6112. "x": 0.5,
  6113. "y": 0.5
  6114. },
  6115. "_trs": {
  6116. "__type__": "TypedArray",
  6117. "ctor": "Float64Array",
  6118. "array": [
  6119. 50.695,
  6120. 0,
  6121. 0,
  6122. 0,
  6123. 0,
  6124. 0,
  6125. 1,
  6126. 1,
  6127. 1,
  6128. 1
  6129. ]
  6130. },
  6131. "_eulerAngles": {
  6132. "__type__": "cc.Vec3",
  6133. "x": 0,
  6134. "y": 0,
  6135. "z": 0
  6136. },
  6137. "_skewX": 0,
  6138. "_skewY": 0,
  6139. "_is3DNode": false,
  6140. "_groupIndex": 0,
  6141. "groupIndex": 0,
  6142. "_id": ""
  6143. },
  6144. {
  6145. "__type__": "cc.Label",
  6146. "_name": "",
  6147. "_objFlags": 0,
  6148. "node": {
  6149. "__id__": 155
  6150. },
  6151. "_enabled": true,
  6152. "_materials": [
  6153. {
  6154. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6155. }
  6156. ],
  6157. "_srcBlendFactor": 770,
  6158. "_dstBlendFactor": 771,
  6159. "_useOriginalSize": false,
  6160. "_string": "2.00%",
  6161. "_N$string": "2.00%",
  6162. "_fontSize": 24,
  6163. "_lineHeight": 28,
  6164. "_enableWrapText": true,
  6165. "_N$file": null,
  6166. "_isSystemFontUsed": true,
  6167. "_spacingX": 0,
  6168. "_batchAsBitmap": false,
  6169. "_styleFlags": 0,
  6170. "_underlineHeight": 0,
  6171. "_N$horizontalAlign": 1,
  6172. "_N$verticalAlign": 1,
  6173. "_N$fontFamily": "Arial",
  6174. "_N$overflow": 0,
  6175. "_N$cacheMode": 0,
  6176. "_id": ""
  6177. },
  6178. {
  6179. "__type__": "cc.PrefabInfo",
  6180. "root": {
  6181. "__id__": 1
  6182. },
  6183. "asset": {
  6184. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6185. },
  6186. "fileId": "b4F9vDNulMzaqscf65LJ8J",
  6187. "sync": false
  6188. },
  6189. {
  6190. "__type__": "cc.Layout",
  6191. "_name": "",
  6192. "_objFlags": 0,
  6193. "node": {
  6194. "__id__": 151
  6195. },
  6196. "_enabled": true,
  6197. "_layoutSize": {
  6198. "__type__": "cc.Size",
  6199. "width": 169.44,
  6200. "height": 50.4
  6201. },
  6202. "_resize": 1,
  6203. "_N$layoutType": 1,
  6204. "_N$cellSize": {
  6205. "__type__": "cc.Size",
  6206. "width": 40,
  6207. "height": 40
  6208. },
  6209. "_N$startAxis": 0,
  6210. "_N$paddingLeft": 0,
  6211. "_N$paddingRight": 0,
  6212. "_N$paddingTop": 0,
  6213. "_N$paddingBottom": 0,
  6214. "_N$spacingX": 0,
  6215. "_N$spacingY": 0,
  6216. "_N$verticalDirection": 1,
  6217. "_N$horizontalDirection": 0,
  6218. "_N$affectedByScale": false,
  6219. "_id": ""
  6220. },
  6221. {
  6222. "__type__": "cc.PrefabInfo",
  6223. "root": {
  6224. "__id__": 1
  6225. },
  6226. "asset": {
  6227. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6228. },
  6229. "fileId": "d8cOYkDS1HBaGEo1x7CwE3",
  6230. "sync": false
  6231. },
  6232. {
  6233. "__type__": "cc.Sprite",
  6234. "_name": "",
  6235. "_objFlags": 0,
  6236. "node": {
  6237. "__id__": 132
  6238. },
  6239. "_enabled": true,
  6240. "_materials": [
  6241. {
  6242. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6243. }
  6244. ],
  6245. "_srcBlendFactor": 770,
  6246. "_dstBlendFactor": 771,
  6247. "_spriteFrame": {
  6248. "__uuid__": "c973e394-6d8c-40dd-a6ac-3d57984bfc10"
  6249. },
  6250. "_type": 0,
  6251. "_sizeMode": 1,
  6252. "_fillType": 0,
  6253. "_fillCenter": {
  6254. "__type__": "cc.Vec2",
  6255. "x": 0,
  6256. "y": 0
  6257. },
  6258. "_fillStart": 0,
  6259. "_fillRange": 0,
  6260. "_isTrimmedMode": true,
  6261. "_atlas": null,
  6262. "_id": ""
  6263. },
  6264. {
  6265. "__type__": "cc.PrefabInfo",
  6266. "root": {
  6267. "__id__": 1
  6268. },
  6269. "asset": {
  6270. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6271. },
  6272. "fileId": "a1GI1FQ5hIaLub7xttQu0h",
  6273. "sync": false
  6274. },
  6275. {
  6276. "__type__": "cc.Node",
  6277. "_name": "GameName",
  6278. "_objFlags": 0,
  6279. "_parent": {
  6280. "__id__": 105
  6281. },
  6282. "_children": [],
  6283. "_active": false,
  6284. "_components": [
  6285. {
  6286. "__id__": 163
  6287. }
  6288. ],
  6289. "_prefab": {
  6290. "__id__": 164
  6291. },
  6292. "_opacity": 255,
  6293. "_color": {
  6294. "__type__": "cc.Color",
  6295. "r": 255,
  6296. "g": 255,
  6297. "b": 255,
  6298. "a": 255
  6299. },
  6300. "_contentSize": {
  6301. "__type__": "cc.Size",
  6302. "width": 73.13,
  6303. "height": 37.8
  6304. },
  6305. "_anchorPoint": {
  6306. "__type__": "cc.Vec2",
  6307. "x": 0.5,
  6308. "y": 0.5
  6309. },
  6310. "_trs": {
  6311. "__type__": "TypedArray",
  6312. "ctor": "Float64Array",
  6313. "array": [
  6314. 0,
  6315. 0,
  6316. 0,
  6317. 0,
  6318. 0,
  6319. 0,
  6320. 1,
  6321. 1,
  6322. 1,
  6323. 1
  6324. ]
  6325. },
  6326. "_eulerAngles": {
  6327. "__type__": "cc.Vec3",
  6328. "x": 0,
  6329. "y": 0,
  6330. "z": 0
  6331. },
  6332. "_skewX": 0,
  6333. "_skewY": 0,
  6334. "_is3DNode": false,
  6335. "_groupIndex": 0,
  6336. "groupIndex": 0,
  6337. "_id": ""
  6338. },
  6339. {
  6340. "__type__": "cc.Label",
  6341. "_name": "",
  6342. "_objFlags": 0,
  6343. "node": {
  6344. "__id__": 162
  6345. },
  6346. "_enabled": true,
  6347. "_materials": [
  6348. {
  6349. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6350. }
  6351. ],
  6352. "_srcBlendFactor": 770,
  6353. "_dstBlendFactor": 771,
  6354. "_useOriginalSize": false,
  6355. "_string": "Label",
  6356. "_N$string": "Label",
  6357. "_fontSize": 28,
  6358. "_lineHeight": 30,
  6359. "_enableWrapText": true,
  6360. "_N$file": null,
  6361. "_isSystemFontUsed": true,
  6362. "_spacingX": 0,
  6363. "_batchAsBitmap": false,
  6364. "_styleFlags": 1,
  6365. "_underlineHeight": 0,
  6366. "_N$horizontalAlign": 1,
  6367. "_N$verticalAlign": 1,
  6368. "_N$fontFamily": "Arial",
  6369. "_N$overflow": 0,
  6370. "_N$cacheMode": 0,
  6371. "_id": ""
  6372. },
  6373. {
  6374. "__type__": "cc.PrefabInfo",
  6375. "root": {
  6376. "__id__": 1
  6377. },
  6378. "asset": {
  6379. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6380. },
  6381. "fileId": "92Ezkd4klHjJsjj1miccgg",
  6382. "sync": false
  6383. },
  6384. {
  6385. "__type__": "cc.Node",
  6386. "_name": "ScrollView",
  6387. "_objFlags": 0,
  6388. "_parent": {
  6389. "__id__": 105
  6390. },
  6391. "_children": [
  6392. {
  6393. "__id__": 166
  6394. },
  6395. {
  6396. "__id__": 173
  6397. }
  6398. ],
  6399. "_active": true,
  6400. "_components": [
  6401. {
  6402. "__id__": 181
  6403. },
  6404. {
  6405. "__id__": 171
  6406. }
  6407. ],
  6408. "_prefab": {
  6409. "__id__": 182
  6410. },
  6411. "_opacity": 255,
  6412. "_color": {
  6413. "__type__": "cc.Color",
  6414. "r": 184,
  6415. "g": 184,
  6416. "b": 184,
  6417. "a": 255
  6418. },
  6419. "_contentSize": {
  6420. "__type__": "cc.Size",
  6421. "width": 860,
  6422. "height": 520
  6423. },
  6424. "_anchorPoint": {
  6425. "__type__": "cc.Vec2",
  6426. "x": 0.5,
  6427. "y": 0.5
  6428. },
  6429. "_trs": {
  6430. "__type__": "TypedArray",
  6431. "ctor": "Float64Array",
  6432. "array": [
  6433. 0,
  6434. -52.722,
  6435. 0,
  6436. 0,
  6437. 0,
  6438. 0,
  6439. 1,
  6440. 1,
  6441. 1,
  6442. 1
  6443. ]
  6444. },
  6445. "_eulerAngles": {
  6446. "__type__": "cc.Vec3",
  6447. "x": 0,
  6448. "y": 0,
  6449. "z": 0
  6450. },
  6451. "_skewX": 0,
  6452. "_skewY": 0,
  6453. "_is3DNode": false,
  6454. "_groupIndex": 0,
  6455. "groupIndex": 0,
  6456. "_id": ""
  6457. },
  6458. {
  6459. "__type__": "cc.Node",
  6460. "_name": "scrollBar",
  6461. "_objFlags": 0,
  6462. "_parent": {
  6463. "__id__": 165
  6464. },
  6465. "_children": [
  6466. {
  6467. "__id__": 167
  6468. }
  6469. ],
  6470. "_active": false,
  6471. "_components": [
  6472. {
  6473. "__id__": 170
  6474. },
  6475. {
  6476. "__id__": 178
  6477. },
  6478. {
  6479. "__id__": 179
  6480. }
  6481. ],
  6482. "_prefab": {
  6483. "__id__": 180
  6484. },
  6485. "_opacity": 255,
  6486. "_color": {
  6487. "__type__": "cc.Color",
  6488. "r": 238,
  6489. "g": 217,
  6490. "b": 227,
  6491. "a": 255
  6492. },
  6493. "_contentSize": {
  6494. "__type__": "cc.Size",
  6495. "width": 12,
  6496. "height": 520
  6497. },
  6498. "_anchorPoint": {
  6499. "__type__": "cc.Vec2",
  6500. "x": 1,
  6501. "y": 0.5
  6502. },
  6503. "_trs": {
  6504. "__type__": "TypedArray",
  6505. "ctor": "Float64Array",
  6506. "array": [
  6507. 444.756,
  6508. 0,
  6509. 0,
  6510. 0,
  6511. 0,
  6512. 0,
  6513. 1,
  6514. 1,
  6515. 1,
  6516. 1
  6517. ]
  6518. },
  6519. "_eulerAngles": {
  6520. "__type__": "cc.Vec3",
  6521. "x": 0,
  6522. "y": 0,
  6523. "z": 0
  6524. },
  6525. "_skewX": 0,
  6526. "_skewY": 0,
  6527. "_is3DNode": false,
  6528. "_groupIndex": 0,
  6529. "groupIndex": 0,
  6530. "_id": ""
  6531. },
  6532. {
  6533. "__type__": "cc.Node",
  6534. "_name": "bar",
  6535. "_objFlags": 0,
  6536. "_parent": {
  6537. "__id__": 166
  6538. },
  6539. "_children": [],
  6540. "_active": true,
  6541. "_components": [
  6542. {
  6543. "__id__": 168
  6544. }
  6545. ],
  6546. "_prefab": {
  6547. "__id__": 169
  6548. },
  6549. "_opacity": 255,
  6550. "_color": {
  6551. "__type__": "cc.Color",
  6552. "r": 236,
  6553. "g": 241,
  6554. "b": 245,
  6555. "a": 255
  6556. },
  6557. "_contentSize": {
  6558. "__type__": "cc.Size",
  6559. "width": 10,
  6560. "height": 30
  6561. },
  6562. "_anchorPoint": {
  6563. "__type__": "cc.Vec2",
  6564. "x": 1,
  6565. "y": 0
  6566. },
  6567. "_trs": {
  6568. "__type__": "TypedArray",
  6569. "ctor": "Float64Array",
  6570. "array": [
  6571. -1,
  6572. 0,
  6573. 0,
  6574. 0,
  6575. 0,
  6576. 0,
  6577. 1,
  6578. 1,
  6579. 1,
  6580. 1
  6581. ]
  6582. },
  6583. "_eulerAngles": {
  6584. "__type__": "cc.Vec3",
  6585. "x": 0,
  6586. "y": 0,
  6587. "z": 0
  6588. },
  6589. "_skewX": 0,
  6590. "_skewY": 0,
  6591. "_is3DNode": false,
  6592. "_groupIndex": 0,
  6593. "groupIndex": 0,
  6594. "_id": ""
  6595. },
  6596. {
  6597. "__type__": "cc.Sprite",
  6598. "_name": "",
  6599. "_objFlags": 0,
  6600. "node": {
  6601. "__id__": 167
  6602. },
  6603. "_enabled": true,
  6604. "_materials": [],
  6605. "_srcBlendFactor": 770,
  6606. "_dstBlendFactor": 771,
  6607. "_spriteFrame": {
  6608. "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641"
  6609. },
  6610. "_type": 1,
  6611. "_sizeMode": 0,
  6612. "_fillType": 0,
  6613. "_fillCenter": {
  6614. "__type__": "cc.Vec2",
  6615. "x": 0,
  6616. "y": 0
  6617. },
  6618. "_fillStart": 0,
  6619. "_fillRange": 0,
  6620. "_isTrimmedMode": true,
  6621. "_atlas": null,
  6622. "_id": ""
  6623. },
  6624. {
  6625. "__type__": "cc.PrefabInfo",
  6626. "root": {
  6627. "__id__": 1
  6628. },
  6629. "asset": {
  6630. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6631. },
  6632. "fileId": "60v7JmAU5H3ph4ekGJRKlG",
  6633. "sync": false
  6634. },
  6635. {
  6636. "__type__": "cc.Scrollbar",
  6637. "_name": "",
  6638. "_objFlags": 0,
  6639. "node": {
  6640. "__id__": 166
  6641. },
  6642. "_enabled": true,
  6643. "_scrollView": {
  6644. "__id__": 171
  6645. },
  6646. "_touching": false,
  6647. "_opacity": 255,
  6648. "enableAutoHide": true,
  6649. "autoHideTime": 1,
  6650. "_N$handle": {
  6651. "__id__": 168
  6652. },
  6653. "_N$direction": 1,
  6654. "_id": ""
  6655. },
  6656. {
  6657. "__type__": "cc.ScrollView",
  6658. "_name": "",
  6659. "_objFlags": 0,
  6660. "node": {
  6661. "__id__": 165
  6662. },
  6663. "_enabled": true,
  6664. "horizontal": false,
  6665. "vertical": true,
  6666. "inertia": true,
  6667. "brake": 0.75,
  6668. "elastic": true,
  6669. "bounceDuration": 0.23,
  6670. "scrollEvents": [],
  6671. "cancelInnerEvents": true,
  6672. "_N$content": {
  6673. "__id__": 172
  6674. },
  6675. "content": {
  6676. "__id__": 172
  6677. },
  6678. "_N$horizontalScrollBar": null,
  6679. "_N$verticalScrollBar": {
  6680. "__id__": 170
  6681. },
  6682. "_id": ""
  6683. },
  6684. {
  6685. "__type__": "cc.Node",
  6686. "_name": "content",
  6687. "_objFlags": 0,
  6688. "_parent": {
  6689. "__id__": 173
  6690. },
  6691. "_children": [],
  6692. "_active": true,
  6693. "_components": [
  6694. {
  6695. "__id__": 176
  6696. }
  6697. ],
  6698. "_prefab": {
  6699. "__id__": 177
  6700. },
  6701. "_opacity": 255,
  6702. "_color": {
  6703. "__type__": "cc.Color",
  6704. "r": 255,
  6705. "g": 255,
  6706. "b": 255,
  6707. "a": 255
  6708. },
  6709. "_contentSize": {
  6710. "__type__": "cc.Size",
  6711. "width": 860,
  6712. "height": 158
  6713. },
  6714. "_anchorPoint": {
  6715. "__type__": "cc.Vec2",
  6716. "x": 0.5,
  6717. "y": 1
  6718. },
  6719. "_trs": {
  6720. "__type__": "TypedArray",
  6721. "ctor": "Float64Array",
  6722. "array": [
  6723. 0,
  6724. 230,
  6725. 0,
  6726. 0,
  6727. 0,
  6728. 0,
  6729. 1,
  6730. 1,
  6731. 1,
  6732. 1
  6733. ]
  6734. },
  6735. "_eulerAngles": {
  6736. "__type__": "cc.Vec3",
  6737. "x": 0,
  6738. "y": 0,
  6739. "z": 0
  6740. },
  6741. "_skewX": 0,
  6742. "_skewY": 0,
  6743. "_is3DNode": false,
  6744. "_groupIndex": 0,
  6745. "groupIndex": 0,
  6746. "_id": ""
  6747. },
  6748. {
  6749. "__type__": "cc.Node",
  6750. "_name": "view",
  6751. "_objFlags": 0,
  6752. "_parent": {
  6753. "__id__": 165
  6754. },
  6755. "_children": [
  6756. {
  6757. "__id__": 172
  6758. }
  6759. ],
  6760. "_active": true,
  6761. "_components": [
  6762. {
  6763. "__id__": 174
  6764. }
  6765. ],
  6766. "_prefab": {
  6767. "__id__": 175
  6768. },
  6769. "_opacity": 255,
  6770. "_color": {
  6771. "__type__": "cc.Color",
  6772. "r": 255,
  6773. "g": 255,
  6774. "b": 255,
  6775. "a": 255
  6776. },
  6777. "_contentSize": {
  6778. "__type__": "cc.Size",
  6779. "width": 860,
  6780. "height": 520
  6781. },
  6782. "_anchorPoint": {
  6783. "__type__": "cc.Vec2",
  6784. "x": 0.5,
  6785. "y": 0.5
  6786. },
  6787. "_trs": {
  6788. "__type__": "TypedArray",
  6789. "ctor": "Float64Array",
  6790. "array": [
  6791. 0,
  6792. 0,
  6793. 0,
  6794. 0,
  6795. 0,
  6796. 0,
  6797. 1,
  6798. 1,
  6799. 1,
  6800. 1
  6801. ]
  6802. },
  6803. "_eulerAngles": {
  6804. "__type__": "cc.Vec3",
  6805. "x": 0,
  6806. "y": 0,
  6807. "z": 0
  6808. },
  6809. "_skewX": 0,
  6810. "_skewY": 0,
  6811. "_is3DNode": false,
  6812. "_groupIndex": 0,
  6813. "groupIndex": 0,
  6814. "_id": ""
  6815. },
  6816. {
  6817. "__type__": "cc.Mask",
  6818. "_name": "",
  6819. "_objFlags": 0,
  6820. "node": {
  6821. "__id__": 173
  6822. },
  6823. "_enabled": true,
  6824. "_materials": [
  6825. {
  6826. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6827. }
  6828. ],
  6829. "_spriteFrame": null,
  6830. "_type": 0,
  6831. "_segments": 64,
  6832. "_N$alphaThreshold": 1,
  6833. "_N$inverted": false,
  6834. "_id": ""
  6835. },
  6836. {
  6837. "__type__": "cc.PrefabInfo",
  6838. "root": {
  6839. "__id__": 1
  6840. },
  6841. "asset": {
  6842. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6843. },
  6844. "fileId": "79SGRla69Hi5UB+xxbeG1x",
  6845. "sync": false
  6846. },
  6847. {
  6848. "__type__": "cc.Layout",
  6849. "_name": "",
  6850. "_objFlags": 0,
  6851. "node": {
  6852. "__id__": 172
  6853. },
  6854. "_enabled": true,
  6855. "_layoutSize": {
  6856. "__type__": "cc.Size",
  6857. "width": 860,
  6858. "height": 158
  6859. },
  6860. "_resize": 1,
  6861. "_N$layoutType": 2,
  6862. "_N$cellSize": {
  6863. "__type__": "cc.Size",
  6864. "width": 40,
  6865. "height": 40
  6866. },
  6867. "_N$startAxis": 0,
  6868. "_N$paddingLeft": 0,
  6869. "_N$paddingRight": 0,
  6870. "_N$paddingTop": 0,
  6871. "_N$paddingBottom": 100,
  6872. "_N$spacingX": 0,
  6873. "_N$spacingY": 0,
  6874. "_N$verticalDirection": 1,
  6875. "_N$horizontalDirection": 0,
  6876. "_N$affectedByScale": false,
  6877. "_id": ""
  6878. },
  6879. {
  6880. "__type__": "cc.PrefabInfo",
  6881. "root": {
  6882. "__id__": 1
  6883. },
  6884. "asset": {
  6885. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6886. },
  6887. "fileId": "680gNDBatMD5rVQg126x7z",
  6888. "sync": false
  6889. },
  6890. {
  6891. "__type__": "cc.Widget",
  6892. "_name": "",
  6893. "_objFlags": 0,
  6894. "node": {
  6895. "__id__": 166
  6896. },
  6897. "_enabled": true,
  6898. "alignMode": 0,
  6899. "_target": null,
  6900. "_alignFlags": 37,
  6901. "_left": 350.07654921020657,
  6902. "_right": 0,
  6903. "_top": 0,
  6904. "_bottom": 0,
  6905. "_verticalCenter": 0,
  6906. "_horizontalCenter": 0,
  6907. "_isAbsLeft": true,
  6908. "_isAbsRight": true,
  6909. "_isAbsTop": true,
  6910. "_isAbsBottom": true,
  6911. "_isAbsHorizontalCenter": true,
  6912. "_isAbsVerticalCenter": true,
  6913. "_originalWidth": 0,
  6914. "_originalHeight": 237,
  6915. "_id": ""
  6916. },
  6917. {
  6918. "__type__": "cc.Sprite",
  6919. "_name": "",
  6920. "_objFlags": 0,
  6921. "node": {
  6922. "__id__": 166
  6923. },
  6924. "_enabled": true,
  6925. "_materials": [],
  6926. "_srcBlendFactor": 770,
  6927. "_dstBlendFactor": 771,
  6928. "_spriteFrame": {
  6929. "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159"
  6930. },
  6931. "_type": 1,
  6932. "_sizeMode": 0,
  6933. "_fillType": 0,
  6934. "_fillCenter": {
  6935. "__type__": "cc.Vec2",
  6936. "x": 0,
  6937. "y": 0
  6938. },
  6939. "_fillStart": 0,
  6940. "_fillRange": 0,
  6941. "_isTrimmedMode": true,
  6942. "_atlas": null,
  6943. "_id": ""
  6944. },
  6945. {
  6946. "__type__": "cc.PrefabInfo",
  6947. "root": {
  6948. "__id__": 1
  6949. },
  6950. "asset": {
  6951. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6952. },
  6953. "fileId": "72CjtfEctN4KBP6a5M3KRA",
  6954. "sync": false
  6955. },
  6956. {
  6957. "__type__": "cc.Sprite",
  6958. "_name": "",
  6959. "_objFlags": 0,
  6960. "node": {
  6961. "__id__": 165
  6962. },
  6963. "_enabled": true,
  6964. "_materials": [
  6965. {
  6966. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6967. }
  6968. ],
  6969. "_srcBlendFactor": 770,
  6970. "_dstBlendFactor": 771,
  6971. "_spriteFrame": null,
  6972. "_type": 1,
  6973. "_sizeMode": 0,
  6974. "_fillType": 0,
  6975. "_fillCenter": {
  6976. "__type__": "cc.Vec2",
  6977. "x": 0,
  6978. "y": 0
  6979. },
  6980. "_fillStart": 0,
  6981. "_fillRange": 0,
  6982. "_isTrimmedMode": true,
  6983. "_atlas": null,
  6984. "_id": ""
  6985. },
  6986. {
  6987. "__type__": "cc.PrefabInfo",
  6988. "root": {
  6989. "__id__": 1
  6990. },
  6991. "asset": {
  6992. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  6993. },
  6994. "fileId": "ebUOdAGMlFm71s+zzRGq51",
  6995. "sync": false
  6996. },
  6997. {
  6998. "__type__": "cc.PrefabInfo",
  6999. "root": {
  7000. "__id__": 1
  7001. },
  7002. "asset": {
  7003. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  7004. },
  7005. "fileId": "89eXAowLhLwqklgWSBcdCO",
  7006. "sync": false
  7007. },
  7008. {
  7009. "__type__": "ad0afFl455PiZHgjXceDHdn",
  7010. "_name": "",
  7011. "_objFlags": 0,
  7012. "node": {
  7013. "__id__": 1
  7014. },
  7015. "_enabled": true,
  7016. "BetNode": {
  7017. "__id__": 30
  7018. },
  7019. "ChipNode": {
  7020. "__id__": 42
  7021. },
  7022. "RuleScrollView": {
  7023. "__id__": 172
  7024. },
  7025. "RuleInfo": {
  7026. "__id__": 129
  7027. },
  7028. "RoomElementNode": {
  7029. "__id__": 132
  7030. },
  7031. "GameName": {
  7032. "__id__": 162
  7033. },
  7034. "_id": ""
  7035. },
  7036. {
  7037. "__type__": "cc.Widget",
  7038. "_name": "",
  7039. "_objFlags": 0,
  7040. "node": {
  7041. "__id__": 1
  7042. },
  7043. "_enabled": true,
  7044. "alignMode": 1,
  7045. "_target": null,
  7046. "_alignFlags": 45,
  7047. "_left": 0,
  7048. "_right": 0,
  7049. "_top": 0,
  7050. "_bottom": 0,
  7051. "_verticalCenter": 0,
  7052. "_horizontalCenter": 0,
  7053. "_isAbsLeft": true,
  7054. "_isAbsRight": true,
  7055. "_isAbsTop": true,
  7056. "_isAbsBottom": true,
  7057. "_isAbsHorizontalCenter": true,
  7058. "_isAbsVerticalCenter": true,
  7059. "_originalWidth": 0,
  7060. "_originalHeight": 0,
  7061. "_id": ""
  7062. },
  7063. {
  7064. "__type__": "cc.Animation",
  7065. "_name": "",
  7066. "_objFlags": 0,
  7067. "node": {
  7068. "__id__": 1
  7069. },
  7070. "_enabled": true,
  7071. "_defaultClip": {
  7072. "__uuid__": "912d4e44-cbea-48cc-a739-1c77bdeb6924"
  7073. },
  7074. "_clips": [
  7075. {
  7076. "__uuid__": "912d4e44-cbea-48cc-a739-1c77bdeb6924"
  7077. }
  7078. ],
  7079. "playOnLoad": false,
  7080. "_id": ""
  7081. },
  7082. {
  7083. "__type__": "cc.PrefabInfo",
  7084. "root": {
  7085. "__id__": 1
  7086. },
  7087. "asset": {
  7088. "__uuid__": "24beb30e-5b4e-4a50-9ea6-67f8708735dc"
  7089. },
  7090. "fileId": "efaXNzoYxNt6+XZiWTnxJe",
  7091. "sync": false
  7092. }
  7093. ]