game.prefab 96 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557
  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": "game",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 8
  28. },
  29. {
  30. "__id__": 16
  31. },
  32. {
  33. "__id__": 151
  34. },
  35. {
  36. "__id__": 154
  37. },
  38. {
  39. "__id__": 163
  40. },
  41. {
  42. "__id__": 102
  43. }
  44. ],
  45. "_active": true,
  46. "_components": [
  47. {
  48. "__id__": 165
  49. },
  50. {
  51. "__id__": 166
  52. }
  53. ],
  54. "_prefab": {
  55. "__id__": 167
  56. },
  57. "_opacity": 255,
  58. "_color": {
  59. "__type__": "cc.Color",
  60. "r": 255,
  61. "g": 255,
  62. "b": 255,
  63. "a": 255
  64. },
  65. "_contentSize": {
  66. "__type__": "cc.Size",
  67. "width": 750,
  68. "height": 1334
  69. },
  70. "_anchorPoint": {
  71. "__type__": "cc.Vec2",
  72. "x": 0.5,
  73. "y": 0.5
  74. },
  75. "_trs": {
  76. "__type__": "TypedArray",
  77. "ctor": "Float64Array",
  78. "array": [
  79. 375,
  80. 667,
  81. 0,
  82. 0,
  83. 0,
  84. 0,
  85. 1,
  86. 1,
  87. 1,
  88. 1
  89. ]
  90. },
  91. "_eulerAngles": {
  92. "__type__": "cc.Vec3",
  93. "x": 0,
  94. "y": 0,
  95. "z": 0
  96. },
  97. "_skewX": 0,
  98. "_skewY": 0,
  99. "_is3DNode": false,
  100. "_groupIndex": 0,
  101. "groupIndex": 0,
  102. "_id": ""
  103. },
  104. {
  105. "__type__": "cc.Node",
  106. "_name": "背景",
  107. "_objFlags": 0,
  108. "_parent": {
  109. "__id__": 1
  110. },
  111. "_children": [],
  112. "_active": true,
  113. "_components": [
  114. {
  115. "__id__": 3
  116. },
  117. {
  118. "__id__": 4
  119. }
  120. ],
  121. "_prefab": {
  122. "__id__": 5
  123. },
  124. "_opacity": 255,
  125. "_color": {
  126. "__type__": "cc.Color",
  127. "r": 255,
  128. "g": 255,
  129. "b": 255,
  130. "a": 255
  131. },
  132. "_contentSize": {
  133. "__type__": "cc.Size",
  134. "width": 750,
  135. "height": 1700
  136. },
  137. "_anchorPoint": {
  138. "__type__": "cc.Vec2",
  139. "x": 0.5,
  140. "y": 0.5
  141. },
  142. "_trs": {
  143. "__type__": "TypedArray",
  144. "ctor": "Float64Array",
  145. "array": [
  146. 0,
  147. 0,
  148. 0,
  149. 0,
  150. 0,
  151. 0,
  152. 1,
  153. 1,
  154. 1,
  155. 1
  156. ]
  157. },
  158. "_eulerAngles": {
  159. "__type__": "cc.Vec3",
  160. "x": 0,
  161. "y": 0,
  162. "z": 0
  163. },
  164. "_skewX": 0,
  165. "_skewY": 0,
  166. "_is3DNode": false,
  167. "_groupIndex": 0,
  168. "groupIndex": 0,
  169. "_id": ""
  170. },
  171. {
  172. "__type__": "cc.Sprite",
  173. "_name": "",
  174. "_objFlags": 0,
  175. "node": {
  176. "__id__": 2
  177. },
  178. "_enabled": true,
  179. "_materials": [
  180. {
  181. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  182. }
  183. ],
  184. "_srcBlendFactor": 770,
  185. "_dstBlendFactor": 771,
  186. "_spriteFrame": {
  187. "__uuid__": "271b505a-b3ea-4147-977a-2a65be00a6f7"
  188. },
  189. "_type": 0,
  190. "_sizeMode": 0,
  191. "_fillType": 0,
  192. "_fillCenter": {
  193. "__type__": "cc.Vec2",
  194. "x": 0,
  195. "y": 0
  196. },
  197. "_fillStart": 0,
  198. "_fillRange": 0,
  199. "_isTrimmedMode": true,
  200. "_atlas": null,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.Widget",
  205. "_name": "",
  206. "_objFlags": 0,
  207. "node": {
  208. "__id__": 2
  209. },
  210. "_enabled": true,
  211. "alignMode": 1,
  212. "_target": null,
  213. "_alignFlags": 5,
  214. "_left": 0,
  215. "_right": 0,
  216. "_top": -183,
  217. "_bottom": -183,
  218. "_verticalCenter": 0,
  219. "_horizontalCenter": 0,
  220. "_isAbsLeft": true,
  221. "_isAbsRight": true,
  222. "_isAbsTop": true,
  223. "_isAbsBottom": true,
  224. "_isAbsHorizontalCenter": true,
  225. "_isAbsVerticalCenter": true,
  226. "_originalWidth": 0,
  227. "_originalHeight": 1700,
  228. "_id": ""
  229. },
  230. {
  231. "__type__": "cc.PrefabInfo",
  232. "root": {
  233. "__id__": 1
  234. },
  235. "asset": {
  236. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  237. },
  238. "fileId": "f3Yl2M6pNLeYy3rKz2+T5S",
  239. "sync": false
  240. },
  241. {
  242. "__type__": "cc.Node",
  243. "_objFlags": 0,
  244. "_parent": {
  245. "__id__": 1
  246. },
  247. "_prefab": {
  248. "__id__": 7
  249. },
  250. "_name": "cast",
  251. "_active": true,
  252. "_trs": {
  253. "__type__": "TypedArray",
  254. "ctor": "Float64Array",
  255. "array": [
  256. 0,
  257. 467,
  258. 0,
  259. 0,
  260. 0,
  261. 0,
  262. 1,
  263. 1,
  264. 1,
  265. 1
  266. ]
  267. },
  268. "_eulerAngles": {
  269. "__type__": "cc.Vec3",
  270. "x": 0,
  271. "y": 0,
  272. "z": 0
  273. },
  274. "_id": ""
  275. },
  276. {
  277. "__type__": "cc.PrefabInfo",
  278. "root": {
  279. "__id__": 6
  280. },
  281. "asset": {
  282. "__uuid__": "43c489d3-8e64-48bd-aa3b-abddeb2d3dca"
  283. },
  284. "fileId": "6b/3tozLFBgKn02/gEIMYJ",
  285. "sync": true
  286. },
  287. {
  288. "__type__": "cc.Node",
  289. "_name": "气泡红包",
  290. "_objFlags": 0,
  291. "_parent": {
  292. "__id__": 1
  293. },
  294. "_children": [
  295. {
  296. "__id__": 9
  297. },
  298. {
  299. "__id__": 11
  300. },
  301. {
  302. "__id__": 13
  303. }
  304. ],
  305. "_active": true,
  306. "_components": [],
  307. "_prefab": {
  308. "__id__": 15
  309. },
  310. "_opacity": 255,
  311. "_color": {
  312. "__type__": "cc.Color",
  313. "r": 255,
  314. "g": 255,
  315. "b": 255,
  316. "a": 255
  317. },
  318. "_contentSize": {
  319. "__type__": "cc.Size",
  320. "width": 0,
  321. "height": 0
  322. },
  323. "_anchorPoint": {
  324. "__type__": "cc.Vec2",
  325. "x": 0.5,
  326. "y": 0.5
  327. },
  328. "_trs": {
  329. "__type__": "TypedArray",
  330. "ctor": "Float64Array",
  331. "array": [
  332. 0,
  333. 250,
  334. 0,
  335. 0,
  336. 0,
  337. 0,
  338. 1,
  339. 1,
  340. 1,
  341. 1
  342. ]
  343. },
  344. "_eulerAngles": {
  345. "__type__": "cc.Vec3",
  346. "x": 0,
  347. "y": 0,
  348. "z": 0
  349. },
  350. "_skewX": 0,
  351. "_skewY": 0,
  352. "_is3DNode": false,
  353. "_groupIndex": 0,
  354. "groupIndex": 0,
  355. "_id": ""
  356. },
  357. {
  358. "__type__": "cc.Node",
  359. "_objFlags": 0,
  360. "_parent": {
  361. "__id__": 8
  362. },
  363. "_prefab": {
  364. "__id__": 10
  365. },
  366. "_name": "redbagitem",
  367. "_active": true,
  368. "_trs": {
  369. "__type__": "TypedArray",
  370. "ctor": "Float64Array",
  371. "array": [
  372. -160,
  373. 50,
  374. 0,
  375. 0,
  376. 0,
  377. 0,
  378. 1,
  379. 1,
  380. 1,
  381. 1
  382. ]
  383. },
  384. "_eulerAngles": {
  385. "__type__": "cc.Vec3",
  386. "x": 0,
  387. "y": 0,
  388. "z": 0
  389. },
  390. "_id": ""
  391. },
  392. {
  393. "__type__": "cc.PrefabInfo",
  394. "root": {
  395. "__id__": 9
  396. },
  397. "asset": {
  398. "__uuid__": "ec923f8e-c546-49d0-b91f-36dfbf416120"
  399. },
  400. "fileId": "7aWIo3igdOC4iQ4tE+O5Tx",
  401. "sync": true
  402. },
  403. {
  404. "__type__": "cc.Node",
  405. "_objFlags": 0,
  406. "_parent": {
  407. "__id__": 8
  408. },
  409. "_prefab": {
  410. "__id__": 12
  411. },
  412. "_name": "redbagitem",
  413. "_active": true,
  414. "_trs": {
  415. "__type__": "TypedArray",
  416. "ctor": "Float64Array",
  417. "array": [
  418. 180,
  419. 50,
  420. 0,
  421. 0,
  422. 0,
  423. 0,
  424. 1,
  425. 1,
  426. 1,
  427. 1
  428. ]
  429. },
  430. "_eulerAngles": {
  431. "__type__": "cc.Vec3",
  432. "x": 0,
  433. "y": 0,
  434. "z": 0
  435. },
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.PrefabInfo",
  440. "root": {
  441. "__id__": 11
  442. },
  443. "asset": {
  444. "__uuid__": "ec923f8e-c546-49d0-b91f-36dfbf416120"
  445. },
  446. "fileId": "49WJRhnPxPt7M2eZJayHSw",
  447. "sync": true
  448. },
  449. {
  450. "__type__": "cc.Node",
  451. "_objFlags": 0,
  452. "_parent": {
  453. "__id__": 8
  454. },
  455. "_prefab": {
  456. "__id__": 14
  457. },
  458. "_name": "redbagitem",
  459. "_active": true,
  460. "_trs": {
  461. "__type__": "TypedArray",
  462. "ctor": "Float64Array",
  463. "array": [
  464. 31,
  465. -50,
  466. 0,
  467. 0,
  468. 0,
  469. 0,
  470. 1,
  471. 1,
  472. 1,
  473. 1
  474. ]
  475. },
  476. "_eulerAngles": {
  477. "__type__": "cc.Vec3",
  478. "x": 0,
  479. "y": 0,
  480. "z": 0
  481. },
  482. "_id": ""
  483. },
  484. {
  485. "__type__": "cc.PrefabInfo",
  486. "root": {
  487. "__id__": 13
  488. },
  489. "asset": {
  490. "__uuid__": "ec923f8e-c546-49d0-b91f-36dfbf416120"
  491. },
  492. "fileId": "aadqocKBVJWqCEc4ojM8BE",
  493. "sync": true
  494. },
  495. {
  496. "__type__": "cc.PrefabInfo",
  497. "root": {
  498. "__id__": 1
  499. },
  500. "asset": {
  501. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  502. },
  503. "fileId": "64eMOfcGNGNJwEGkr9NwpA",
  504. "sync": false
  505. },
  506. {
  507. "__type__": "cc.Node",
  508. "_name": "功能按钮",
  509. "_objFlags": 0,
  510. "_parent": {
  511. "__id__": 1
  512. },
  513. "_children": [
  514. {
  515. "__id__": 17
  516. },
  517. {
  518. "__id__": 44
  519. },
  520. {
  521. "__id__": 71
  522. }
  523. ],
  524. "_active": true,
  525. "_components": [
  526. {
  527. "__id__": 100
  528. }
  529. ],
  530. "_prefab": {
  531. "__id__": 150
  532. },
  533. "_opacity": 255,
  534. "_color": {
  535. "__type__": "cc.Color",
  536. "r": 255,
  537. "g": 255,
  538. "b": 255,
  539. "a": 255
  540. },
  541. "_contentSize": {
  542. "__type__": "cc.Size",
  543. "width": 750,
  544. "height": 1334
  545. },
  546. "_anchorPoint": {
  547. "__type__": "cc.Vec2",
  548. "x": 0.5,
  549. "y": 0.5
  550. },
  551. "_trs": {
  552. "__type__": "TypedArray",
  553. "ctor": "Float64Array",
  554. "array": [
  555. 0,
  556. 0,
  557. 0,
  558. 0,
  559. 0,
  560. 0,
  561. 1,
  562. 1,
  563. 1,
  564. 1
  565. ]
  566. },
  567. "_eulerAngles": {
  568. "__type__": "cc.Vec3",
  569. "x": 0,
  570. "y": 0,
  571. "z": 0
  572. },
  573. "_skewX": 0,
  574. "_skewY": 0,
  575. "_is3DNode": false,
  576. "_groupIndex": 0,
  577. "groupIndex": 0,
  578. "_id": ""
  579. },
  580. {
  581. "__type__": "cc.Node",
  582. "_name": "左侧按钮",
  583. "_objFlags": 0,
  584. "_parent": {
  585. "__id__": 16
  586. },
  587. "_children": [
  588. {
  589. "__id__": 18
  590. },
  591. {
  592. "__id__": 26
  593. },
  594. {
  595. "__id__": 34
  596. }
  597. ],
  598. "_active": true,
  599. "_components": [
  600. {
  601. "__id__": 42
  602. }
  603. ],
  604. "_prefab": {
  605. "__id__": 43
  606. },
  607. "_opacity": 255,
  608. "_color": {
  609. "__type__": "cc.Color",
  610. "r": 255,
  611. "g": 255,
  612. "b": 255,
  613. "a": 255
  614. },
  615. "_contentSize": {
  616. "__type__": "cc.Size",
  617. "width": 120,
  618. "height": 1334
  619. },
  620. "_anchorPoint": {
  621. "__type__": "cc.Vec2",
  622. "x": 0.5,
  623. "y": 0.5
  624. },
  625. "_trs": {
  626. "__type__": "TypedArray",
  627. "ctor": "Float64Array",
  628. "array": [
  629. -315,
  630. 0,
  631. 0,
  632. 0,
  633. 0,
  634. 0,
  635. 1,
  636. 1,
  637. 1,
  638. 1
  639. ]
  640. },
  641. "_eulerAngles": {
  642. "__type__": "cc.Vec3",
  643. "x": 0,
  644. "y": 0,
  645. "z": 0
  646. },
  647. "_skewX": 0,
  648. "_skewY": 0,
  649. "_is3DNode": false,
  650. "_groupIndex": 0,
  651. "groupIndex": 0,
  652. "_id": ""
  653. },
  654. {
  655. "__type__": "cc.Node",
  656. "_name": "邀请码",
  657. "_objFlags": 0,
  658. "_parent": {
  659. "__id__": 17
  660. },
  661. "_children": [
  662. {
  663. "__id__": 19
  664. }
  665. ],
  666. "_active": true,
  667. "_components": [
  668. {
  669. "__id__": 22
  670. },
  671. {
  672. "__id__": 23
  673. }
  674. ],
  675. "_prefab": {
  676. "__id__": 25
  677. },
  678. "_opacity": 255,
  679. "_color": {
  680. "__type__": "cc.Color",
  681. "r": 255,
  682. "g": 255,
  683. "b": 255,
  684. "a": 255
  685. },
  686. "_contentSize": {
  687. "__type__": "cc.Size",
  688. "width": 97,
  689. "height": 97
  690. },
  691. "_anchorPoint": {
  692. "__type__": "cc.Vec2",
  693. "x": 0.5,
  694. "y": 0.5
  695. },
  696. "_trs": {
  697. "__type__": "TypedArray",
  698. "ctor": "Float64Array",
  699. "array": [
  700. 0,
  701. 230,
  702. 0,
  703. 0,
  704. 0,
  705. 0,
  706. 1,
  707. 1,
  708. 1,
  709. 1
  710. ]
  711. },
  712. "_eulerAngles": {
  713. "__type__": "cc.Vec3",
  714. "x": 0,
  715. "y": 0,
  716. "z": 0
  717. },
  718. "_skewX": 0,
  719. "_skewY": 0,
  720. "_is3DNode": false,
  721. "_groupIndex": 0,
  722. "groupIndex": 0,
  723. "_id": ""
  724. },
  725. {
  726. "__type__": "cc.Node",
  727. "_name": "zi (4)",
  728. "_objFlags": 0,
  729. "_parent": {
  730. "__id__": 18
  731. },
  732. "_children": [],
  733. "_active": true,
  734. "_components": [
  735. {
  736. "__id__": 20
  737. }
  738. ],
  739. "_prefab": {
  740. "__id__": 21
  741. },
  742. "_opacity": 255,
  743. "_color": {
  744. "__type__": "cc.Color",
  745. "r": 255,
  746. "g": 255,
  747. "b": 255,
  748. "a": 255
  749. },
  750. "_contentSize": {
  751. "__type__": "cc.Size",
  752. "width": 96,
  753. "height": 27
  754. },
  755. "_anchorPoint": {
  756. "__type__": "cc.Vec2",
  757. "x": 0.5,
  758. "y": 0.5
  759. },
  760. "_trs": {
  761. "__type__": "TypedArray",
  762. "ctor": "Float64Array",
  763. "array": [
  764. 0,
  765. -22,
  766. 0,
  767. 0,
  768. 0,
  769. 0,
  770. 1,
  771. 1,
  772. 1,
  773. 1
  774. ]
  775. },
  776. "_eulerAngles": {
  777. "__type__": "cc.Vec3",
  778. "x": 0,
  779. "y": 0,
  780. "z": 0
  781. },
  782. "_skewX": 0,
  783. "_skewY": 0,
  784. "_is3DNode": false,
  785. "_groupIndex": 0,
  786. "groupIndex": 0,
  787. "_id": ""
  788. },
  789. {
  790. "__type__": "cc.Sprite",
  791. "_name": "",
  792. "_objFlags": 0,
  793. "node": {
  794. "__id__": 19
  795. },
  796. "_enabled": true,
  797. "_materials": [
  798. {
  799. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  800. }
  801. ],
  802. "_srcBlendFactor": 770,
  803. "_dstBlendFactor": 771,
  804. "_spriteFrame": {
  805. "__uuid__": "1d0ad086-003b-4924-9bb8-61cccd8f2695"
  806. },
  807. "_type": 0,
  808. "_sizeMode": 1,
  809. "_fillType": 0,
  810. "_fillCenter": {
  811. "__type__": "cc.Vec2",
  812. "x": 0,
  813. "y": 0
  814. },
  815. "_fillStart": 0,
  816. "_fillRange": 0,
  817. "_isTrimmedMode": true,
  818. "_atlas": null,
  819. "_id": ""
  820. },
  821. {
  822. "__type__": "cc.PrefabInfo",
  823. "root": {
  824. "__id__": 1
  825. },
  826. "asset": {
  827. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  828. },
  829. "fileId": "b3OJWfyjNARZJOI/WsU7ua",
  830. "sync": false
  831. },
  832. {
  833. "__type__": "sp.Skeleton",
  834. "_name": "",
  835. "_objFlags": 0,
  836. "node": {
  837. "__id__": 18
  838. },
  839. "_enabled": true,
  840. "_materials": [
  841. {
  842. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  843. }
  844. ],
  845. "paused": false,
  846. "defaultSkin": "default",
  847. "defaultAnimation": "animation",
  848. "_preCacheMode": 0,
  849. "_cacheMode": 0,
  850. "loop": true,
  851. "premultipliedAlpha": true,
  852. "timeScale": 1,
  853. "_accTime": 0,
  854. "_playCount": 0,
  855. "_frameCache": null,
  856. "_curFrame": null,
  857. "_skeletonCache": null,
  858. "_animationName": "animation",
  859. "_animationQueue": [],
  860. "_headAniInfo": null,
  861. "_playTimes": 0,
  862. "_isAniComplete": true,
  863. "_N$skeletonData": {
  864. "__uuid__": "eb23e881-c37e-4e36-a213-79bd42d111d1"
  865. },
  866. "_N$_defaultCacheMode": 0,
  867. "_N$debugSlots": false,
  868. "_N$debugBones": false,
  869. "_N$debugMesh": false,
  870. "_N$useTint": false,
  871. "_N$enableBatch": false,
  872. "_id": ""
  873. },
  874. {
  875. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  876. "_name": "",
  877. "_objFlags": 0,
  878. "node": {
  879. "__id__": 18
  880. },
  881. "_enabled": true,
  882. "panel_name": "module/redeem/RedeemNode",
  883. "open_type": 0,
  884. "transition_type": 0,
  885. "onComplete": {
  886. "__id__": 24
  887. },
  888. "_id": ""
  889. },
  890. {
  891. "__type__": "cc.ClickEvent",
  892. "target": null,
  893. "component": "",
  894. "_componentId": "",
  895. "handler": "",
  896. "customEventData": ""
  897. },
  898. {
  899. "__type__": "cc.PrefabInfo",
  900. "root": {
  901. "__id__": 1
  902. },
  903. "asset": {
  904. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  905. },
  906. "fileId": "01lNWtTMhAt6LiQdVdRIKx",
  907. "sync": false
  908. },
  909. {
  910. "__type__": "cc.Node",
  911. "_name": "转盘",
  912. "_objFlags": 0,
  913. "_parent": {
  914. "__id__": 17
  915. },
  916. "_children": [
  917. {
  918. "__id__": 27
  919. }
  920. ],
  921. "_active": true,
  922. "_components": [
  923. {
  924. "__id__": 30
  925. },
  926. {
  927. "__id__": 31
  928. }
  929. ],
  930. "_prefab": {
  931. "__id__": 33
  932. },
  933. "_opacity": 255,
  934. "_color": {
  935. "__type__": "cc.Color",
  936. "r": 255,
  937. "g": 255,
  938. "b": 255,
  939. "a": 255
  940. },
  941. "_contentSize": {
  942. "__type__": "cc.Size",
  943. "width": 97,
  944. "height": 97
  945. },
  946. "_anchorPoint": {
  947. "__type__": "cc.Vec2",
  948. "x": 0.5,
  949. "y": 0.5
  950. },
  951. "_trs": {
  952. "__type__": "TypedArray",
  953. "ctor": "Float64Array",
  954. "array": [
  955. 0,
  956. 125,
  957. 0,
  958. 0,
  959. 0,
  960. 0,
  961. 1,
  962. 1,
  963. 1,
  964. 1
  965. ]
  966. },
  967. "_eulerAngles": {
  968. "__type__": "cc.Vec3",
  969. "x": 0,
  970. "y": 0,
  971. "z": 0
  972. },
  973. "_skewX": 0,
  974. "_skewY": 0,
  975. "_is3DNode": false,
  976. "_groupIndex": 0,
  977. "groupIndex": 0,
  978. "_id": ""
  979. },
  980. {
  981. "__type__": "cc.Node",
  982. "_name": "zi (1)",
  983. "_objFlags": 0,
  984. "_parent": {
  985. "__id__": 26
  986. },
  987. "_children": [],
  988. "_active": true,
  989. "_components": [
  990. {
  991. "__id__": 28
  992. }
  993. ],
  994. "_prefab": {
  995. "__id__": 29
  996. },
  997. "_opacity": 255,
  998. "_color": {
  999. "__type__": "cc.Color",
  1000. "r": 255,
  1001. "g": 255,
  1002. "b": 255,
  1003. "a": 255
  1004. },
  1005. "_contentSize": {
  1006. "__type__": "cc.Size",
  1007. "width": 50,
  1008. "height": 27
  1009. },
  1010. "_anchorPoint": {
  1011. "__type__": "cc.Vec2",
  1012. "x": 0.5,
  1013. "y": 0.5
  1014. },
  1015. "_trs": {
  1016. "__type__": "TypedArray",
  1017. "ctor": "Float64Array",
  1018. "array": [
  1019. 0,
  1020. -37,
  1021. 0,
  1022. 0,
  1023. 0,
  1024. 0,
  1025. 1,
  1026. 1,
  1027. 1,
  1028. 1
  1029. ]
  1030. },
  1031. "_eulerAngles": {
  1032. "__type__": "cc.Vec3",
  1033. "x": 0,
  1034. "y": 0,
  1035. "z": 0
  1036. },
  1037. "_skewX": 0,
  1038. "_skewY": 0,
  1039. "_is3DNode": false,
  1040. "_groupIndex": 0,
  1041. "groupIndex": 0,
  1042. "_id": ""
  1043. },
  1044. {
  1045. "__type__": "cc.Sprite",
  1046. "_name": "",
  1047. "_objFlags": 0,
  1048. "node": {
  1049. "__id__": 27
  1050. },
  1051. "_enabled": true,
  1052. "_materials": [
  1053. {
  1054. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1055. }
  1056. ],
  1057. "_srcBlendFactor": 770,
  1058. "_dstBlendFactor": 771,
  1059. "_spriteFrame": {
  1060. "__uuid__": "174a1bfa-b851-4f91-922c-02560c648fc8"
  1061. },
  1062. "_type": 0,
  1063. "_sizeMode": 1,
  1064. "_fillType": 0,
  1065. "_fillCenter": {
  1066. "__type__": "cc.Vec2",
  1067. "x": 0,
  1068. "y": 0
  1069. },
  1070. "_fillStart": 0,
  1071. "_fillRange": 0,
  1072. "_isTrimmedMode": true,
  1073. "_atlas": null,
  1074. "_id": ""
  1075. },
  1076. {
  1077. "__type__": "cc.PrefabInfo",
  1078. "root": {
  1079. "__id__": 1
  1080. },
  1081. "asset": {
  1082. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1083. },
  1084. "fileId": "f4gGo5OMZEa75JTVW9f2Zq",
  1085. "sync": false
  1086. },
  1087. {
  1088. "__type__": "sp.Skeleton",
  1089. "_name": "",
  1090. "_objFlags": 0,
  1091. "node": {
  1092. "__id__": 26
  1093. },
  1094. "_enabled": true,
  1095. "_materials": [
  1096. {
  1097. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  1098. }
  1099. ],
  1100. "paused": false,
  1101. "defaultSkin": "default",
  1102. "defaultAnimation": "animation",
  1103. "_preCacheMode": 0,
  1104. "_cacheMode": 0,
  1105. "loop": true,
  1106. "premultipliedAlpha": true,
  1107. "timeScale": 1,
  1108. "_accTime": 0,
  1109. "_playCount": 0,
  1110. "_frameCache": null,
  1111. "_curFrame": null,
  1112. "_skeletonCache": null,
  1113. "_animationName": "animation",
  1114. "_animationQueue": [],
  1115. "_headAniInfo": null,
  1116. "_playTimes": 0,
  1117. "_isAniComplete": true,
  1118. "_N$skeletonData": {
  1119. "__uuid__": "26068860-88ac-4831-bc68-c16d9580de6b"
  1120. },
  1121. "_N$_defaultCacheMode": 0,
  1122. "_N$debugSlots": false,
  1123. "_N$debugBones": false,
  1124. "_N$debugMesh": false,
  1125. "_N$useTint": false,
  1126. "_N$enableBatch": false,
  1127. "_id": ""
  1128. },
  1129. {
  1130. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  1131. "_name": "",
  1132. "_objFlags": 0,
  1133. "node": {
  1134. "__id__": 26
  1135. },
  1136. "_enabled": true,
  1137. "panel_name": "module/turnable/turnable",
  1138. "open_type": 0,
  1139. "transition_type": 0,
  1140. "onComplete": {
  1141. "__id__": 32
  1142. },
  1143. "_id": ""
  1144. },
  1145. {
  1146. "__type__": "cc.ClickEvent",
  1147. "target": null,
  1148. "component": "",
  1149. "_componentId": "",
  1150. "handler": "",
  1151. "customEventData": ""
  1152. },
  1153. {
  1154. "__type__": "cc.PrefabInfo",
  1155. "root": {
  1156. "__id__": 1
  1157. },
  1158. "asset": {
  1159. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1160. },
  1161. "fileId": "6aWkB0Xw1CKoGQ4OQfQHiq",
  1162. "sync": false
  1163. },
  1164. {
  1165. "__type__": "cc.Node",
  1166. "_name": "邀请",
  1167. "_objFlags": 0,
  1168. "_parent": {
  1169. "__id__": 17
  1170. },
  1171. "_children": [
  1172. {
  1173. "__id__": 35
  1174. }
  1175. ],
  1176. "_active": true,
  1177. "_components": [
  1178. {
  1179. "__id__": 38
  1180. },
  1181. {
  1182. "__id__": 39
  1183. }
  1184. ],
  1185. "_prefab": {
  1186. "__id__": 41
  1187. },
  1188. "_opacity": 255,
  1189. "_color": {
  1190. "__type__": "cc.Color",
  1191. "r": 255,
  1192. "g": 255,
  1193. "b": 255,
  1194. "a": 255
  1195. },
  1196. "_contentSize": {
  1197. "__type__": "cc.Size",
  1198. "width": 97,
  1199. "height": 97
  1200. },
  1201. "_anchorPoint": {
  1202. "__type__": "cc.Vec2",
  1203. "x": 0.5,
  1204. "y": 0.5
  1205. },
  1206. "_trs": {
  1207. "__type__": "TypedArray",
  1208. "ctor": "Float64Array",
  1209. "array": [
  1210. 0,
  1211. 0,
  1212. 0,
  1213. 0,
  1214. 0,
  1215. 0,
  1216. 1,
  1217. 1,
  1218. 1,
  1219. 1
  1220. ]
  1221. },
  1222. "_eulerAngles": {
  1223. "__type__": "cc.Vec3",
  1224. "x": 0,
  1225. "y": 0,
  1226. "z": 0
  1227. },
  1228. "_skewX": 0,
  1229. "_skewY": 0,
  1230. "_is3DNode": false,
  1231. "_groupIndex": 0,
  1232. "groupIndex": 0,
  1233. "_id": ""
  1234. },
  1235. {
  1236. "__type__": "cc.Node",
  1237. "_name": "zi (6)",
  1238. "_objFlags": 0,
  1239. "_parent": {
  1240. "__id__": 34
  1241. },
  1242. "_children": [],
  1243. "_active": true,
  1244. "_components": [
  1245. {
  1246. "__id__": 36
  1247. }
  1248. ],
  1249. "_prefab": {
  1250. "__id__": 37
  1251. },
  1252. "_opacity": 255,
  1253. "_color": {
  1254. "__type__": "cc.Color",
  1255. "r": 255,
  1256. "g": 255,
  1257. "b": 255,
  1258. "a": 255
  1259. },
  1260. "_contentSize": {
  1261. "__type__": "cc.Size",
  1262. "width": 49,
  1263. "height": 27
  1264. },
  1265. "_anchorPoint": {
  1266. "__type__": "cc.Vec2",
  1267. "x": 0.5,
  1268. "y": 0.5
  1269. },
  1270. "_trs": {
  1271. "__type__": "TypedArray",
  1272. "ctor": "Float64Array",
  1273. "array": [
  1274. 0,
  1275. -37,
  1276. 0,
  1277. 0,
  1278. 0,
  1279. 0,
  1280. 1,
  1281. 1,
  1282. 1,
  1283. 1
  1284. ]
  1285. },
  1286. "_eulerAngles": {
  1287. "__type__": "cc.Vec3",
  1288. "x": 0,
  1289. "y": 0,
  1290. "z": 0
  1291. },
  1292. "_skewX": 0,
  1293. "_skewY": 0,
  1294. "_is3DNode": false,
  1295. "_groupIndex": 0,
  1296. "groupIndex": 0,
  1297. "_id": ""
  1298. },
  1299. {
  1300. "__type__": "cc.Sprite",
  1301. "_name": "",
  1302. "_objFlags": 0,
  1303. "node": {
  1304. "__id__": 35
  1305. },
  1306. "_enabled": true,
  1307. "_materials": [
  1308. {
  1309. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1310. }
  1311. ],
  1312. "_srcBlendFactor": 770,
  1313. "_dstBlendFactor": 771,
  1314. "_spriteFrame": {
  1315. "__uuid__": "f9ff75fa-9e1c-4ef3-bca3-47268890e180"
  1316. },
  1317. "_type": 0,
  1318. "_sizeMode": 1,
  1319. "_fillType": 0,
  1320. "_fillCenter": {
  1321. "__type__": "cc.Vec2",
  1322. "x": 0,
  1323. "y": 0
  1324. },
  1325. "_fillStart": 0,
  1326. "_fillRange": 0,
  1327. "_isTrimmedMode": true,
  1328. "_atlas": null,
  1329. "_id": ""
  1330. },
  1331. {
  1332. "__type__": "cc.PrefabInfo",
  1333. "root": {
  1334. "__id__": 1
  1335. },
  1336. "asset": {
  1337. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1338. },
  1339. "fileId": "d6DtBAnLNM4atdqKDCrC8S",
  1340. "sync": false
  1341. },
  1342. {
  1343. "__type__": "sp.Skeleton",
  1344. "_name": "",
  1345. "_objFlags": 0,
  1346. "node": {
  1347. "__id__": 34
  1348. },
  1349. "_enabled": true,
  1350. "_materials": [
  1351. {
  1352. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  1353. }
  1354. ],
  1355. "paused": false,
  1356. "defaultSkin": "default",
  1357. "defaultAnimation": "animation",
  1358. "_preCacheMode": 0,
  1359. "_cacheMode": 0,
  1360. "loop": true,
  1361. "premultipliedAlpha": true,
  1362. "timeScale": 1,
  1363. "_accTime": 0,
  1364. "_playCount": 0,
  1365. "_frameCache": null,
  1366. "_curFrame": null,
  1367. "_skeletonCache": null,
  1368. "_animationName": "animation",
  1369. "_animationQueue": [],
  1370. "_headAniInfo": null,
  1371. "_playTimes": 0,
  1372. "_isAniComplete": true,
  1373. "_N$skeletonData": {
  1374. "__uuid__": "9d4f03cb-eee3-4d8d-bb0a-457af009d1cd"
  1375. },
  1376. "_N$_defaultCacheMode": 0,
  1377. "_N$debugSlots": false,
  1378. "_N$debugBones": false,
  1379. "_N$debugMesh": false,
  1380. "_N$useTint": false,
  1381. "_N$enableBatch": false,
  1382. "_id": ""
  1383. },
  1384. {
  1385. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  1386. "_name": "",
  1387. "_objFlags": 0,
  1388. "node": {
  1389. "__id__": 34
  1390. },
  1391. "_enabled": true,
  1392. "panel_name": "module/invite/invite",
  1393. "open_type": 0,
  1394. "transition_type": 0,
  1395. "onComplete": {
  1396. "__id__": 40
  1397. },
  1398. "_id": ""
  1399. },
  1400. {
  1401. "__type__": "cc.ClickEvent",
  1402. "target": null,
  1403. "component": "",
  1404. "_componentId": "",
  1405. "handler": "",
  1406. "customEventData": ""
  1407. },
  1408. {
  1409. "__type__": "cc.PrefabInfo",
  1410. "root": {
  1411. "__id__": 1
  1412. },
  1413. "asset": {
  1414. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1415. },
  1416. "fileId": "8fUV3sqihCrq6r6XCrYXAh",
  1417. "sync": false
  1418. },
  1419. {
  1420. "__type__": "cc.Widget",
  1421. "_name": "",
  1422. "_objFlags": 0,
  1423. "node": {
  1424. "__id__": 17
  1425. },
  1426. "_enabled": true,
  1427. "alignMode": 1,
  1428. "_target": {
  1429. "__id__": 1
  1430. },
  1431. "_alignFlags": 8,
  1432. "_left": 0,
  1433. "_right": 0,
  1434. "_top": 0,
  1435. "_bottom": 0,
  1436. "_verticalCenter": 0,
  1437. "_horizontalCenter": 0,
  1438. "_isAbsLeft": true,
  1439. "_isAbsRight": true,
  1440. "_isAbsTop": true,
  1441. "_isAbsBottom": true,
  1442. "_isAbsHorizontalCenter": true,
  1443. "_isAbsVerticalCenter": true,
  1444. "_originalWidth": 0,
  1445. "_originalHeight": 0,
  1446. "_id": ""
  1447. },
  1448. {
  1449. "__type__": "cc.PrefabInfo",
  1450. "root": {
  1451. "__id__": 1
  1452. },
  1453. "asset": {
  1454. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1455. },
  1456. "fileId": "48qh4L11VGnoPbC61WJaSO",
  1457. "sync": false
  1458. },
  1459. {
  1460. "__type__": "cc.Node",
  1461. "_name": "测试按钮",
  1462. "_objFlags": 0,
  1463. "_parent": {
  1464. "__id__": 16
  1465. },
  1466. "_children": [
  1467. {
  1468. "__id__": 45
  1469. },
  1470. {
  1471. "__id__": 53
  1472. },
  1473. {
  1474. "__id__": 61
  1475. }
  1476. ],
  1477. "_active": true,
  1478. "_components": [
  1479. {
  1480. "__id__": 69
  1481. }
  1482. ],
  1483. "_prefab": {
  1484. "__id__": 70
  1485. },
  1486. "_opacity": 255,
  1487. "_color": {
  1488. "__type__": "cc.Color",
  1489. "r": 255,
  1490. "g": 255,
  1491. "b": 255,
  1492. "a": 255
  1493. },
  1494. "_contentSize": {
  1495. "__type__": "cc.Size",
  1496. "width": 120,
  1497. "height": 0
  1498. },
  1499. "_anchorPoint": {
  1500. "__type__": "cc.Vec2",
  1501. "x": 0.5,
  1502. "y": 0.5
  1503. },
  1504. "_trs": {
  1505. "__type__": "TypedArray",
  1506. "ctor": "Float64Array",
  1507. "array": [
  1508. -295,
  1509. -150,
  1510. 0,
  1511. 0,
  1512. 0,
  1513. 0,
  1514. 1,
  1515. 1,
  1516. 1,
  1517. 1
  1518. ]
  1519. },
  1520. "_eulerAngles": {
  1521. "__type__": "cc.Vec3",
  1522. "x": 0,
  1523. "y": 0,
  1524. "z": 0
  1525. },
  1526. "_skewX": 0,
  1527. "_skewY": 0,
  1528. "_is3DNode": false,
  1529. "_groupIndex": 0,
  1530. "groupIndex": 0,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.Node",
  1535. "_name": "提现到账",
  1536. "_objFlags": 0,
  1537. "_parent": {
  1538. "__id__": 44
  1539. },
  1540. "_children": [
  1541. {
  1542. "__id__": 46
  1543. }
  1544. ],
  1545. "_active": false,
  1546. "_components": [
  1547. {
  1548. "__id__": 49
  1549. },
  1550. {
  1551. "__id__": 50
  1552. }
  1553. ],
  1554. "_prefab": {
  1555. "__id__": 52
  1556. },
  1557. "_opacity": 255,
  1558. "_color": {
  1559. "__type__": "cc.Color",
  1560. "r": 255,
  1561. "g": 255,
  1562. "b": 255,
  1563. "a": 255
  1564. },
  1565. "_contentSize": {
  1566. "__type__": "cc.Size",
  1567. "width": 97,
  1568. "height": 101
  1569. },
  1570. "_anchorPoint": {
  1571. "__type__": "cc.Vec2",
  1572. "x": 0.5,
  1573. "y": 0.5
  1574. },
  1575. "_trs": {
  1576. "__type__": "TypedArray",
  1577. "ctor": "Float64Array",
  1578. "array": [
  1579. 0,
  1580. 0,
  1581. 0,
  1582. 0,
  1583. 0,
  1584. 0,
  1585. 1,
  1586. 1,
  1587. 1,
  1588. 1
  1589. ]
  1590. },
  1591. "_eulerAngles": {
  1592. "__type__": "cc.Vec3",
  1593. "x": 0,
  1594. "y": 0,
  1595. "z": 0
  1596. },
  1597. "_skewX": 0,
  1598. "_skewY": 0,
  1599. "_is3DNode": false,
  1600. "_groupIndex": 0,
  1601. "groupIndex": 0,
  1602. "_id": ""
  1603. },
  1604. {
  1605. "__type__": "cc.Node",
  1606. "_name": "lbl_desc",
  1607. "_objFlags": 0,
  1608. "_parent": {
  1609. "__id__": 45
  1610. },
  1611. "_children": [],
  1612. "_active": true,
  1613. "_components": [
  1614. {
  1615. "__id__": 47
  1616. }
  1617. ],
  1618. "_prefab": {
  1619. "__id__": 48
  1620. },
  1621. "_opacity": 255,
  1622. "_color": {
  1623. "__type__": "cc.Color",
  1624. "r": 0,
  1625. "g": 255,
  1626. "b": 56,
  1627. "a": 255
  1628. },
  1629. "_contentSize": {
  1630. "__type__": "cc.Size",
  1631. "width": 160,
  1632. "height": 50.4
  1633. },
  1634. "_anchorPoint": {
  1635. "__type__": "cc.Vec2",
  1636. "x": 0.5,
  1637. "y": 0.5
  1638. },
  1639. "_trs": {
  1640. "__type__": "TypedArray",
  1641. "ctor": "Float64Array",
  1642. "array": [
  1643. 0,
  1644. 0,
  1645. 0,
  1646. 0,
  1647. 0,
  1648. 0,
  1649. 1,
  1650. 1,
  1651. 1,
  1652. 1
  1653. ]
  1654. },
  1655. "_eulerAngles": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 0,
  1658. "y": 0,
  1659. "z": 0
  1660. },
  1661. "_skewX": 0,
  1662. "_skewY": 0,
  1663. "_is3DNode": false,
  1664. "_groupIndex": 0,
  1665. "groupIndex": 0,
  1666. "_id": ""
  1667. },
  1668. {
  1669. "__type__": "cc.Label",
  1670. "_name": "",
  1671. "_objFlags": 0,
  1672. "node": {
  1673. "__id__": 46
  1674. },
  1675. "_enabled": true,
  1676. "_materials": [
  1677. {
  1678. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1679. }
  1680. ],
  1681. "_srcBlendFactor": 770,
  1682. "_dstBlendFactor": 771,
  1683. "_string": "提现到账",
  1684. "_N$string": "提现到账",
  1685. "_fontSize": 40,
  1686. "_lineHeight": 40,
  1687. "_enableWrapText": true,
  1688. "_N$file": null,
  1689. "_isSystemFontUsed": true,
  1690. "_spacingX": 0,
  1691. "_batchAsBitmap": false,
  1692. "_styleFlags": 0,
  1693. "_underlineHeight": 0,
  1694. "_N$horizontalAlign": 1,
  1695. "_N$verticalAlign": 1,
  1696. "_N$fontFamily": "Arial",
  1697. "_N$overflow": 0,
  1698. "_N$cacheMode": 0,
  1699. "_id": ""
  1700. },
  1701. {
  1702. "__type__": "cc.PrefabInfo",
  1703. "root": {
  1704. "__id__": 1
  1705. },
  1706. "asset": {
  1707. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1708. },
  1709. "fileId": "31DP9Ma+tMc5Neaf8R96Xg",
  1710. "sync": false
  1711. },
  1712. {
  1713. "__type__": "cc.Sprite",
  1714. "_name": "",
  1715. "_objFlags": 0,
  1716. "node": {
  1717. "__id__": 45
  1718. },
  1719. "_enabled": true,
  1720. "_materials": [
  1721. {
  1722. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1723. }
  1724. ],
  1725. "_srcBlendFactor": 770,
  1726. "_dstBlendFactor": 771,
  1727. "_spriteFrame": {
  1728. "__uuid__": "c53d92da-02b7-4ea1-9d09-e0c26277ea0a"
  1729. },
  1730. "_type": 0,
  1731. "_sizeMode": 1,
  1732. "_fillType": 0,
  1733. "_fillCenter": {
  1734. "__type__": "cc.Vec2",
  1735. "x": 0,
  1736. "y": 0
  1737. },
  1738. "_fillStart": 0,
  1739. "_fillRange": 0,
  1740. "_isTrimmedMode": true,
  1741. "_atlas": null,
  1742. "_id": ""
  1743. },
  1744. {
  1745. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  1746. "_name": "",
  1747. "_objFlags": 0,
  1748. "node": {
  1749. "__id__": 45
  1750. },
  1751. "_enabled": true,
  1752. "panel_name": "module/receiptNotice/receiptNotice",
  1753. "open_type": 0,
  1754. "transition_type": 3,
  1755. "onComplete": {
  1756. "__id__": 51
  1757. },
  1758. "_id": ""
  1759. },
  1760. {
  1761. "__type__": "cc.ClickEvent",
  1762. "target": null,
  1763. "component": "",
  1764. "_componentId": "",
  1765. "handler": "",
  1766. "customEventData": ""
  1767. },
  1768. {
  1769. "__type__": "cc.PrefabInfo",
  1770. "root": {
  1771. "__id__": 1
  1772. },
  1773. "asset": {
  1774. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1775. },
  1776. "fileId": "4eVezZXI5LB677jtR1BN6q",
  1777. "sync": false
  1778. },
  1779. {
  1780. "__type__": "cc.Node",
  1781. "_name": "红包提现",
  1782. "_objFlags": 0,
  1783. "_parent": {
  1784. "__id__": 44
  1785. },
  1786. "_children": [
  1787. {
  1788. "__id__": 54
  1789. }
  1790. ],
  1791. "_active": false,
  1792. "_components": [
  1793. {
  1794. "__id__": 57
  1795. },
  1796. {
  1797. "__id__": 58
  1798. }
  1799. ],
  1800. "_prefab": {
  1801. "__id__": 60
  1802. },
  1803. "_opacity": 255,
  1804. "_color": {
  1805. "__type__": "cc.Color",
  1806. "r": 255,
  1807. "g": 255,
  1808. "b": 255,
  1809. "a": 255
  1810. },
  1811. "_contentSize": {
  1812. "__type__": "cc.Size",
  1813. "width": 97,
  1814. "height": 101
  1815. },
  1816. "_anchorPoint": {
  1817. "__type__": "cc.Vec2",
  1818. "x": 0.5,
  1819. "y": 0.5
  1820. },
  1821. "_trs": {
  1822. "__type__": "TypedArray",
  1823. "ctor": "Float64Array",
  1824. "array": [
  1825. 0,
  1826. -113.426,
  1827. 0,
  1828. 0,
  1829. 0,
  1830. 0,
  1831. 1,
  1832. 1,
  1833. 1,
  1834. 1
  1835. ]
  1836. },
  1837. "_eulerAngles": {
  1838. "__type__": "cc.Vec3",
  1839. "x": 0,
  1840. "y": 0,
  1841. "z": 0
  1842. },
  1843. "_skewX": 0,
  1844. "_skewY": 0,
  1845. "_is3DNode": false,
  1846. "_groupIndex": 0,
  1847. "groupIndex": 0,
  1848. "_id": ""
  1849. },
  1850. {
  1851. "__type__": "cc.Node",
  1852. "_name": "lbl_desc",
  1853. "_objFlags": 0,
  1854. "_parent": {
  1855. "__id__": 53
  1856. },
  1857. "_children": [],
  1858. "_active": true,
  1859. "_components": [
  1860. {
  1861. "__id__": 55
  1862. }
  1863. ],
  1864. "_prefab": {
  1865. "__id__": 56
  1866. },
  1867. "_opacity": 255,
  1868. "_color": {
  1869. "__type__": "cc.Color",
  1870. "r": 0,
  1871. "g": 255,
  1872. "b": 56,
  1873. "a": 255
  1874. },
  1875. "_contentSize": {
  1876. "__type__": "cc.Size",
  1877. "width": 160,
  1878. "height": 50.4
  1879. },
  1880. "_anchorPoint": {
  1881. "__type__": "cc.Vec2",
  1882. "x": 0.5,
  1883. "y": 0.5
  1884. },
  1885. "_trs": {
  1886. "__type__": "TypedArray",
  1887. "ctor": "Float64Array",
  1888. "array": [
  1889. 0,
  1890. 0,
  1891. 0,
  1892. 0,
  1893. 0,
  1894. 0,
  1895. 1,
  1896. 1,
  1897. 1,
  1898. 1
  1899. ]
  1900. },
  1901. "_eulerAngles": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0
  1906. },
  1907. "_skewX": 0,
  1908. "_skewY": 0,
  1909. "_is3DNode": false,
  1910. "_groupIndex": 0,
  1911. "groupIndex": 0,
  1912. "_id": ""
  1913. },
  1914. {
  1915. "__type__": "cc.Label",
  1916. "_name": "",
  1917. "_objFlags": 0,
  1918. "node": {
  1919. "__id__": 54
  1920. },
  1921. "_enabled": true,
  1922. "_materials": [
  1923. {
  1924. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1925. }
  1926. ],
  1927. "_srcBlendFactor": 770,
  1928. "_dstBlendFactor": 771,
  1929. "_string": "红包提现",
  1930. "_N$string": "红包提现",
  1931. "_fontSize": 40,
  1932. "_lineHeight": 40,
  1933. "_enableWrapText": true,
  1934. "_N$file": null,
  1935. "_isSystemFontUsed": true,
  1936. "_spacingX": 0,
  1937. "_batchAsBitmap": false,
  1938. "_styleFlags": 0,
  1939. "_underlineHeight": 0,
  1940. "_N$horizontalAlign": 1,
  1941. "_N$verticalAlign": 1,
  1942. "_N$fontFamily": "Arial",
  1943. "_N$overflow": 0,
  1944. "_N$cacheMode": 0,
  1945. "_id": ""
  1946. },
  1947. {
  1948. "__type__": "cc.PrefabInfo",
  1949. "root": {
  1950. "__id__": 1
  1951. },
  1952. "asset": {
  1953. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  1954. },
  1955. "fileId": "20te+LdTpLvYZ322brTxtJ",
  1956. "sync": false
  1957. },
  1958. {
  1959. "__type__": "cc.Sprite",
  1960. "_name": "",
  1961. "_objFlags": 0,
  1962. "node": {
  1963. "__id__": 53
  1964. },
  1965. "_enabled": true,
  1966. "_materials": [
  1967. {
  1968. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1969. }
  1970. ],
  1971. "_srcBlendFactor": 770,
  1972. "_dstBlendFactor": 771,
  1973. "_spriteFrame": {
  1974. "__uuid__": "c53d92da-02b7-4ea1-9d09-e0c26277ea0a"
  1975. },
  1976. "_type": 0,
  1977. "_sizeMode": 1,
  1978. "_fillType": 0,
  1979. "_fillCenter": {
  1980. "__type__": "cc.Vec2",
  1981. "x": 0,
  1982. "y": 0
  1983. },
  1984. "_fillStart": 0,
  1985. "_fillRange": 0,
  1986. "_isTrimmedMode": true,
  1987. "_atlas": null,
  1988. "_id": ""
  1989. },
  1990. {
  1991. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  1992. "_name": "",
  1993. "_objFlags": 0,
  1994. "node": {
  1995. "__id__": 53
  1996. },
  1997. "_enabled": true,
  1998. "panel_name": "module/redBagCash/redBagCash",
  1999. "open_type": 0,
  2000. "transition_type": 3,
  2001. "onComplete": {
  2002. "__id__": 59
  2003. },
  2004. "_id": ""
  2005. },
  2006. {
  2007. "__type__": "cc.ClickEvent",
  2008. "target": null,
  2009. "component": "",
  2010. "_componentId": "",
  2011. "handler": "",
  2012. "customEventData": ""
  2013. },
  2014. {
  2015. "__type__": "cc.PrefabInfo",
  2016. "root": {
  2017. "__id__": 1
  2018. },
  2019. "asset": {
  2020. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2021. },
  2022. "fileId": "8fhASICIBIfIdySz9lv0PW",
  2023. "sync": false
  2024. },
  2025. {
  2026. "__type__": "cc.Node",
  2027. "_name": "红包码列表",
  2028. "_objFlags": 0,
  2029. "_parent": {
  2030. "__id__": 44
  2031. },
  2032. "_children": [
  2033. {
  2034. "__id__": 62
  2035. }
  2036. ],
  2037. "_active": false,
  2038. "_components": [
  2039. {
  2040. "__id__": 65
  2041. },
  2042. {
  2043. "__id__": 66
  2044. }
  2045. ],
  2046. "_prefab": {
  2047. "__id__": 68
  2048. },
  2049. "_opacity": 255,
  2050. "_color": {
  2051. "__type__": "cc.Color",
  2052. "r": 255,
  2053. "g": 255,
  2054. "b": 255,
  2055. "a": 255
  2056. },
  2057. "_contentSize": {
  2058. "__type__": "cc.Size",
  2059. "width": 97,
  2060. "height": 101
  2061. },
  2062. "_anchorPoint": {
  2063. "__type__": "cc.Vec2",
  2064. "x": 0.5,
  2065. "y": 0.5
  2066. },
  2067. "_trs": {
  2068. "__type__": "TypedArray",
  2069. "ctor": "Float64Array",
  2070. "array": [
  2071. 0,
  2072. -228.481,
  2073. 0,
  2074. 0,
  2075. 0,
  2076. 0,
  2077. 1,
  2078. 1,
  2079. 1,
  2080. 1
  2081. ]
  2082. },
  2083. "_eulerAngles": {
  2084. "__type__": "cc.Vec3",
  2085. "x": 0,
  2086. "y": 0,
  2087. "z": 0
  2088. },
  2089. "_skewX": 0,
  2090. "_skewY": 0,
  2091. "_is3DNode": false,
  2092. "_groupIndex": 0,
  2093. "groupIndex": 0,
  2094. "_id": ""
  2095. },
  2096. {
  2097. "__type__": "cc.Node",
  2098. "_name": "lbl_desc",
  2099. "_objFlags": 512,
  2100. "_parent": {
  2101. "__id__": 61
  2102. },
  2103. "_children": [],
  2104. "_active": true,
  2105. "_components": [
  2106. {
  2107. "__id__": 63
  2108. }
  2109. ],
  2110. "_prefab": {
  2111. "__id__": 64
  2112. },
  2113. "_opacity": 255,
  2114. "_color": {
  2115. "__type__": "cc.Color",
  2116. "r": 0,
  2117. "g": 255,
  2118. "b": 56,
  2119. "a": 255
  2120. },
  2121. "_contentSize": {
  2122. "__type__": "cc.Size",
  2123. "width": 150,
  2124. "height": 50.4
  2125. },
  2126. "_anchorPoint": {
  2127. "__type__": "cc.Vec2",
  2128. "x": 0.5,
  2129. "y": 0.5
  2130. },
  2131. "_trs": {
  2132. "__type__": "TypedArray",
  2133. "ctor": "Float64Array",
  2134. "array": [
  2135. 0,
  2136. 0,
  2137. 0,
  2138. 0,
  2139. 0,
  2140. 0,
  2141. 1,
  2142. 1,
  2143. 1,
  2144. 1
  2145. ]
  2146. },
  2147. "_eulerAngles": {
  2148. "__type__": "cc.Vec3",
  2149. "x": 0,
  2150. "y": 0,
  2151. "z": 0
  2152. },
  2153. "_skewX": 0,
  2154. "_skewY": 0,
  2155. "_is3DNode": false,
  2156. "_groupIndex": 0,
  2157. "groupIndex": 0,
  2158. "_id": ""
  2159. },
  2160. {
  2161. "__type__": "cc.Label",
  2162. "_name": "",
  2163. "_objFlags": 0,
  2164. "node": {
  2165. "__id__": 62
  2166. },
  2167. "_enabled": true,
  2168. "_materials": [
  2169. {
  2170. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2171. }
  2172. ],
  2173. "_srcBlendFactor": 770,
  2174. "_dstBlendFactor": 771,
  2175. "_string": "红包码列表",
  2176. "_N$string": "红包码列表",
  2177. "_fontSize": 40,
  2178. "_lineHeight": 40,
  2179. "_enableWrapText": true,
  2180. "_N$file": null,
  2181. "_isSystemFontUsed": true,
  2182. "_spacingX": 0,
  2183. "_batchAsBitmap": false,
  2184. "_styleFlags": 0,
  2185. "_underlineHeight": 0,
  2186. "_N$horizontalAlign": 1,
  2187. "_N$verticalAlign": 1,
  2188. "_N$fontFamily": "Arial",
  2189. "_N$overflow": 2,
  2190. "_N$cacheMode": 0,
  2191. "_id": ""
  2192. },
  2193. {
  2194. "__type__": "cc.PrefabInfo",
  2195. "root": {
  2196. "__id__": 1
  2197. },
  2198. "asset": {
  2199. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2200. },
  2201. "fileId": "beOH9LhldNhaSRjXnFo4Ny",
  2202. "sync": false
  2203. },
  2204. {
  2205. "__type__": "cc.Sprite",
  2206. "_name": "",
  2207. "_objFlags": 0,
  2208. "node": {
  2209. "__id__": 61
  2210. },
  2211. "_enabled": true,
  2212. "_materials": [
  2213. {
  2214. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2215. }
  2216. ],
  2217. "_srcBlendFactor": 770,
  2218. "_dstBlendFactor": 771,
  2219. "_spriteFrame": {
  2220. "__uuid__": "c53d92da-02b7-4ea1-9d09-e0c26277ea0a"
  2221. },
  2222. "_type": 0,
  2223. "_sizeMode": 1,
  2224. "_fillType": 0,
  2225. "_fillCenter": {
  2226. "__type__": "cc.Vec2",
  2227. "x": 0,
  2228. "y": 0
  2229. },
  2230. "_fillStart": 0,
  2231. "_fillRange": 0,
  2232. "_isTrimmedMode": true,
  2233. "_atlas": null,
  2234. "_id": ""
  2235. },
  2236. {
  2237. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  2238. "_name": "",
  2239. "_objFlags": 0,
  2240. "node": {
  2241. "__id__": 61
  2242. },
  2243. "_enabled": true,
  2244. "panel_name": "module/redBagCode/redBagCode",
  2245. "open_type": 0,
  2246. "transition_type": 3,
  2247. "onComplete": {
  2248. "__id__": 67
  2249. },
  2250. "_id": ""
  2251. },
  2252. {
  2253. "__type__": "cc.ClickEvent",
  2254. "target": null,
  2255. "component": "",
  2256. "_componentId": "",
  2257. "handler": "",
  2258. "customEventData": ""
  2259. },
  2260. {
  2261. "__type__": "cc.PrefabInfo",
  2262. "root": {
  2263. "__id__": 1
  2264. },
  2265. "asset": {
  2266. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2267. },
  2268. "fileId": "ba5EcEQD5IeKUANyg/iBMk",
  2269. "sync": false
  2270. },
  2271. {
  2272. "__type__": "cc.Widget",
  2273. "_name": "",
  2274. "_objFlags": 0,
  2275. "node": {
  2276. "__id__": 44
  2277. },
  2278. "_enabled": true,
  2279. "alignMode": 1,
  2280. "_target": null,
  2281. "_alignFlags": 8,
  2282. "_left": 20,
  2283. "_right": 0,
  2284. "_top": 0,
  2285. "_bottom": 0,
  2286. "_verticalCenter": 0,
  2287. "_horizontalCenter": 0,
  2288. "_isAbsLeft": true,
  2289. "_isAbsRight": true,
  2290. "_isAbsTop": true,
  2291. "_isAbsBottom": true,
  2292. "_isAbsHorizontalCenter": true,
  2293. "_isAbsVerticalCenter": true,
  2294. "_originalWidth": 0,
  2295. "_originalHeight": 0,
  2296. "_id": ""
  2297. },
  2298. {
  2299. "__type__": "cc.PrefabInfo",
  2300. "root": {
  2301. "__id__": 1
  2302. },
  2303. "asset": {
  2304. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2305. },
  2306. "fileId": "c6hR8NW35EYapuVtplbF21",
  2307. "sync": false
  2308. },
  2309. {
  2310. "__type__": "cc.Node",
  2311. "_name": "右侧按钮",
  2312. "_objFlags": 0,
  2313. "_parent": {
  2314. "__id__": 16
  2315. },
  2316. "_children": [
  2317. {
  2318. "__id__": 72
  2319. },
  2320. {
  2321. "__id__": 74
  2322. },
  2323. {
  2324. "__id__": 82
  2325. },
  2326. {
  2327. "__id__": 90
  2328. }
  2329. ],
  2330. "_active": true,
  2331. "_components": [
  2332. {
  2333. "__id__": 98
  2334. }
  2335. ],
  2336. "_prefab": {
  2337. "__id__": 99
  2338. },
  2339. "_opacity": 255,
  2340. "_color": {
  2341. "__type__": "cc.Color",
  2342. "r": 255,
  2343. "g": 255,
  2344. "b": 255,
  2345. "a": 255
  2346. },
  2347. "_contentSize": {
  2348. "__type__": "cc.Size",
  2349. "width": 120,
  2350. "height": 1334
  2351. },
  2352. "_anchorPoint": {
  2353. "__type__": "cc.Vec2",
  2354. "x": 0.5,
  2355. "y": 0.5
  2356. },
  2357. "_trs": {
  2358. "__type__": "TypedArray",
  2359. "ctor": "Float64Array",
  2360. "array": [
  2361. 315,
  2362. 0,
  2363. 0,
  2364. 0,
  2365. 0,
  2366. 0,
  2367. 1,
  2368. 1,
  2369. 1,
  2370. 1
  2371. ]
  2372. },
  2373. "_eulerAngles": {
  2374. "__type__": "cc.Vec3",
  2375. "x": 0,
  2376. "y": 0,
  2377. "z": 0
  2378. },
  2379. "_skewX": 0,
  2380. "_skewY": 0,
  2381. "_is3DNode": false,
  2382. "_groupIndex": 0,
  2383. "groupIndex": 0,
  2384. "_id": ""
  2385. },
  2386. {
  2387. "__type__": "cc.Node",
  2388. "_objFlags": 0,
  2389. "_parent": {
  2390. "__id__": 71
  2391. },
  2392. "_prefab": {
  2393. "__id__": 73
  2394. },
  2395. "_name": "互推",
  2396. "_active": true,
  2397. "_trs": {
  2398. "__type__": "TypedArray",
  2399. "ctor": "Float64Array",
  2400. "array": [
  2401. 0,
  2402. 390,
  2403. 0,
  2404. 0,
  2405. 0,
  2406. 0,
  2407. 1,
  2408. 1,
  2409. 1,
  2410. 1
  2411. ]
  2412. },
  2413. "_eulerAngles": {
  2414. "__type__": "cc.Vec3",
  2415. "x": 0,
  2416. "y": 0,
  2417. "z": 0
  2418. },
  2419. "_id": ""
  2420. },
  2421. {
  2422. "__type__": "cc.PrefabInfo",
  2423. "root": {
  2424. "__id__": 72
  2425. },
  2426. "asset": {
  2427. "__uuid__": "87af2d92-1d51-45d4-9ffe-c343a549a2a0"
  2428. },
  2429. "fileId": "74JwFKc0NP+qmhbim8zd5c",
  2430. "sync": true
  2431. },
  2432. {
  2433. "__type__": "cc.Node",
  2434. "_name": "存钱罐",
  2435. "_objFlags": 0,
  2436. "_parent": {
  2437. "__id__": 71
  2438. },
  2439. "_children": [
  2440. {
  2441. "__id__": 75
  2442. }
  2443. ],
  2444. "_active": true,
  2445. "_components": [
  2446. {
  2447. "__id__": 78
  2448. },
  2449. {
  2450. "__id__": 79
  2451. }
  2452. ],
  2453. "_prefab": {
  2454. "__id__": 81
  2455. },
  2456. "_opacity": 255,
  2457. "_color": {
  2458. "__type__": "cc.Color",
  2459. "r": 255,
  2460. "g": 255,
  2461. "b": 255,
  2462. "a": 255
  2463. },
  2464. "_contentSize": {
  2465. "__type__": "cc.Size",
  2466. "width": 97,
  2467. "height": 97
  2468. },
  2469. "_anchorPoint": {
  2470. "__type__": "cc.Vec2",
  2471. "x": 0.5,
  2472. "y": 0.5
  2473. },
  2474. "_trs": {
  2475. "__type__": "TypedArray",
  2476. "ctor": "Float64Array",
  2477. "array": [
  2478. 0,
  2479. 250,
  2480. 0,
  2481. 0,
  2482. 0,
  2483. 0,
  2484. 1,
  2485. 1,
  2486. 1,
  2487. 1
  2488. ]
  2489. },
  2490. "_eulerAngles": {
  2491. "__type__": "cc.Vec3",
  2492. "x": 0,
  2493. "y": 0,
  2494. "z": 0
  2495. },
  2496. "_skewX": 0,
  2497. "_skewY": 0,
  2498. "_is3DNode": false,
  2499. "_groupIndex": 0,
  2500. "groupIndex": 0,
  2501. "_id": ""
  2502. },
  2503. {
  2504. "__type__": "cc.Node",
  2505. "_name": "zi (2)",
  2506. "_objFlags": 0,
  2507. "_parent": {
  2508. "__id__": 74
  2509. },
  2510. "_children": [],
  2511. "_active": true,
  2512. "_components": [
  2513. {
  2514. "__id__": 76
  2515. }
  2516. ],
  2517. "_prefab": {
  2518. "__id__": 77
  2519. },
  2520. "_opacity": 255,
  2521. "_color": {
  2522. "__type__": "cc.Color",
  2523. "r": 255,
  2524. "g": 255,
  2525. "b": 255,
  2526. "a": 255
  2527. },
  2528. "_contentSize": {
  2529. "__type__": "cc.Size",
  2530. "width": 74,
  2531. "height": 27
  2532. },
  2533. "_anchorPoint": {
  2534. "__type__": "cc.Vec2",
  2535. "x": 0.5,
  2536. "y": 0.5
  2537. },
  2538. "_trs": {
  2539. "__type__": "TypedArray",
  2540. "ctor": "Float64Array",
  2541. "array": [
  2542. 0,
  2543. -37,
  2544. 0,
  2545. 0,
  2546. 0,
  2547. 0,
  2548. 1,
  2549. 1,
  2550. 1,
  2551. 1
  2552. ]
  2553. },
  2554. "_eulerAngles": {
  2555. "__type__": "cc.Vec3",
  2556. "x": 0,
  2557. "y": 0,
  2558. "z": 0
  2559. },
  2560. "_skewX": 0,
  2561. "_skewY": 0,
  2562. "_is3DNode": false,
  2563. "_groupIndex": 0,
  2564. "groupIndex": 0,
  2565. "_id": ""
  2566. },
  2567. {
  2568. "__type__": "cc.Sprite",
  2569. "_name": "",
  2570. "_objFlags": 0,
  2571. "node": {
  2572. "__id__": 75
  2573. },
  2574. "_enabled": true,
  2575. "_materials": [
  2576. {
  2577. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2578. }
  2579. ],
  2580. "_srcBlendFactor": 770,
  2581. "_dstBlendFactor": 771,
  2582. "_spriteFrame": {
  2583. "__uuid__": "d7f7eb85-88b3-4884-9124-5ccde861671e"
  2584. },
  2585. "_type": 0,
  2586. "_sizeMode": 1,
  2587. "_fillType": 0,
  2588. "_fillCenter": {
  2589. "__type__": "cc.Vec2",
  2590. "x": 0,
  2591. "y": 0
  2592. },
  2593. "_fillStart": 0,
  2594. "_fillRange": 0,
  2595. "_isTrimmedMode": true,
  2596. "_atlas": null,
  2597. "_id": ""
  2598. },
  2599. {
  2600. "__type__": "cc.PrefabInfo",
  2601. "root": {
  2602. "__id__": 1
  2603. },
  2604. "asset": {
  2605. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2606. },
  2607. "fileId": "910VEOXgNDm6Erx3OOTC9a",
  2608. "sync": false
  2609. },
  2610. {
  2611. "__type__": "sp.Skeleton",
  2612. "_name": "",
  2613. "_objFlags": 0,
  2614. "node": {
  2615. "__id__": 74
  2616. },
  2617. "_enabled": true,
  2618. "_materials": [
  2619. {
  2620. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  2621. }
  2622. ],
  2623. "paused": false,
  2624. "defaultSkin": "default",
  2625. "defaultAnimation": "animation",
  2626. "_preCacheMode": 0,
  2627. "_cacheMode": 0,
  2628. "loop": true,
  2629. "premultipliedAlpha": true,
  2630. "timeScale": 1,
  2631. "_accTime": 0,
  2632. "_playCount": 0,
  2633. "_frameCache": null,
  2634. "_curFrame": null,
  2635. "_skeletonCache": null,
  2636. "_animationName": "animation",
  2637. "_animationQueue": [],
  2638. "_headAniInfo": null,
  2639. "_playTimes": 0,
  2640. "_isAniComplete": true,
  2641. "_N$skeletonData": {
  2642. "__uuid__": "2b8feb46-8bbf-401a-87fd-36a33df6f510"
  2643. },
  2644. "_N$_defaultCacheMode": 0,
  2645. "_N$debugSlots": false,
  2646. "_N$debugBones": false,
  2647. "_N$debugMesh": false,
  2648. "_N$useTint": false,
  2649. "_N$enableBatch": false,
  2650. "_id": ""
  2651. },
  2652. {
  2653. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  2654. "_name": "",
  2655. "_objFlags": 0,
  2656. "node": {
  2657. "__id__": 74
  2658. },
  2659. "_enabled": true,
  2660. "panel_name": "module/pigBank/pigBank",
  2661. "open_type": 0,
  2662. "transition_type": 0,
  2663. "onComplete": {
  2664. "__id__": 80
  2665. },
  2666. "_id": ""
  2667. },
  2668. {
  2669. "__type__": "cc.ClickEvent",
  2670. "target": null,
  2671. "component": "",
  2672. "_componentId": "",
  2673. "handler": "",
  2674. "customEventData": ""
  2675. },
  2676. {
  2677. "__type__": "cc.PrefabInfo",
  2678. "root": {
  2679. "__id__": 1
  2680. },
  2681. "asset": {
  2682. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2683. },
  2684. "fileId": "55zJbz0VhJToN19ojfpLV5",
  2685. "sync": false
  2686. },
  2687. {
  2688. "__type__": "cc.Node",
  2689. "_name": "福袋",
  2690. "_objFlags": 0,
  2691. "_parent": {
  2692. "__id__": 71
  2693. },
  2694. "_children": [
  2695. {
  2696. "__id__": 83
  2697. }
  2698. ],
  2699. "_active": true,
  2700. "_components": [
  2701. {
  2702. "__id__": 86
  2703. },
  2704. {
  2705. "__id__": 87
  2706. }
  2707. ],
  2708. "_prefab": {
  2709. "__id__": 89
  2710. },
  2711. "_opacity": 255,
  2712. "_color": {
  2713. "__type__": "cc.Color",
  2714. "r": 255,
  2715. "g": 255,
  2716. "b": 255,
  2717. "a": 255
  2718. },
  2719. "_contentSize": {
  2720. "__type__": "cc.Size",
  2721. "width": 97,
  2722. "height": 97
  2723. },
  2724. "_anchorPoint": {
  2725. "__type__": "cc.Vec2",
  2726. "x": 0.5,
  2727. "y": 0.5
  2728. },
  2729. "_trs": {
  2730. "__type__": "TypedArray",
  2731. "ctor": "Float64Array",
  2732. "array": [
  2733. 0,
  2734. 125,
  2735. 0,
  2736. 0,
  2737. 0,
  2738. 0,
  2739. 1,
  2740. 1,
  2741. 1,
  2742. 1
  2743. ]
  2744. },
  2745. "_eulerAngles": {
  2746. "__type__": "cc.Vec3",
  2747. "x": 0,
  2748. "y": 0,
  2749. "z": 0
  2750. },
  2751. "_skewX": 0,
  2752. "_skewY": 0,
  2753. "_is3DNode": false,
  2754. "_groupIndex": 0,
  2755. "groupIndex": 0,
  2756. "_id": ""
  2757. },
  2758. {
  2759. "__type__": "cc.Node",
  2760. "_name": "zi (3)",
  2761. "_objFlags": 0,
  2762. "_parent": {
  2763. "__id__": 82
  2764. },
  2765. "_children": [],
  2766. "_active": true,
  2767. "_components": [
  2768. {
  2769. "__id__": 84
  2770. }
  2771. ],
  2772. "_prefab": {
  2773. "__id__": 85
  2774. },
  2775. "_opacity": 255,
  2776. "_color": {
  2777. "__type__": "cc.Color",
  2778. "r": 255,
  2779. "g": 255,
  2780. "b": 255,
  2781. "a": 255
  2782. },
  2783. "_contentSize": {
  2784. "__type__": "cc.Size",
  2785. "width": 51,
  2786. "height": 27
  2787. },
  2788. "_anchorPoint": {
  2789. "__type__": "cc.Vec2",
  2790. "x": 0.5,
  2791. "y": 0.5
  2792. },
  2793. "_trs": {
  2794. "__type__": "TypedArray",
  2795. "ctor": "Float64Array",
  2796. "array": [
  2797. 0,
  2798. -37,
  2799. 0,
  2800. 0,
  2801. 0,
  2802. 0,
  2803. 1,
  2804. 1,
  2805. 1,
  2806. 1
  2807. ]
  2808. },
  2809. "_eulerAngles": {
  2810. "__type__": "cc.Vec3",
  2811. "x": 0,
  2812. "y": 0,
  2813. "z": 0
  2814. },
  2815. "_skewX": 0,
  2816. "_skewY": 0,
  2817. "_is3DNode": false,
  2818. "_groupIndex": 0,
  2819. "groupIndex": 0,
  2820. "_id": ""
  2821. },
  2822. {
  2823. "__type__": "cc.Sprite",
  2824. "_name": "",
  2825. "_objFlags": 0,
  2826. "node": {
  2827. "__id__": 83
  2828. },
  2829. "_enabled": true,
  2830. "_materials": [
  2831. {
  2832. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2833. }
  2834. ],
  2835. "_srcBlendFactor": 770,
  2836. "_dstBlendFactor": 771,
  2837. "_spriteFrame": {
  2838. "__uuid__": "7067ded0-1d20-48b5-bcd0-55cd54c70506"
  2839. },
  2840. "_type": 0,
  2841. "_sizeMode": 1,
  2842. "_fillType": 0,
  2843. "_fillCenter": {
  2844. "__type__": "cc.Vec2",
  2845. "x": 0,
  2846. "y": 0
  2847. },
  2848. "_fillStart": 0,
  2849. "_fillRange": 0,
  2850. "_isTrimmedMode": true,
  2851. "_atlas": null,
  2852. "_id": ""
  2853. },
  2854. {
  2855. "__type__": "cc.PrefabInfo",
  2856. "root": {
  2857. "__id__": 1
  2858. },
  2859. "asset": {
  2860. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2861. },
  2862. "fileId": "e6duVvf1lBHKOCi9xi0DY/",
  2863. "sync": false
  2864. },
  2865. {
  2866. "__type__": "sp.Skeleton",
  2867. "_name": "",
  2868. "_objFlags": 0,
  2869. "node": {
  2870. "__id__": 82
  2871. },
  2872. "_enabled": true,
  2873. "_materials": [
  2874. {
  2875. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  2876. }
  2877. ],
  2878. "paused": false,
  2879. "defaultSkin": "default",
  2880. "defaultAnimation": "animation",
  2881. "_preCacheMode": 0,
  2882. "_cacheMode": 0,
  2883. "loop": true,
  2884. "premultipliedAlpha": true,
  2885. "timeScale": 1,
  2886. "_accTime": 0,
  2887. "_playCount": 0,
  2888. "_frameCache": null,
  2889. "_curFrame": null,
  2890. "_skeletonCache": null,
  2891. "_animationName": "animation",
  2892. "_animationQueue": [],
  2893. "_headAniInfo": null,
  2894. "_playTimes": 0,
  2895. "_isAniComplete": true,
  2896. "_N$skeletonData": {
  2897. "__uuid__": "5c60bd7e-abeb-4804-bb23-115cc66c3b44"
  2898. },
  2899. "_N$_defaultCacheMode": 0,
  2900. "_N$debugSlots": false,
  2901. "_N$debugBones": false,
  2902. "_N$debugMesh": false,
  2903. "_N$useTint": false,
  2904. "_N$enableBatch": false,
  2905. "_id": ""
  2906. },
  2907. {
  2908. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  2909. "_name": "",
  2910. "_objFlags": 0,
  2911. "node": {
  2912. "__id__": 82
  2913. },
  2914. "_enabled": true,
  2915. "panel_name": "module/blessingBag/blessingBag",
  2916. "open_type": 0,
  2917. "transition_type": 0,
  2918. "onComplete": {
  2919. "__id__": 88
  2920. },
  2921. "_id": ""
  2922. },
  2923. {
  2924. "__type__": "cc.ClickEvent",
  2925. "target": null,
  2926. "component": "",
  2927. "_componentId": "",
  2928. "handler": "",
  2929. "customEventData": ""
  2930. },
  2931. {
  2932. "__type__": "cc.PrefabInfo",
  2933. "root": {
  2934. "__id__": 1
  2935. },
  2936. "asset": {
  2937. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  2938. },
  2939. "fileId": "11Ye9m8AxJ8JoxEMlLgYBj",
  2940. "sync": false
  2941. },
  2942. {
  2943. "__type__": "cc.Node",
  2944. "_name": "签到",
  2945. "_objFlags": 0,
  2946. "_parent": {
  2947. "__id__": 71
  2948. },
  2949. "_children": [
  2950. {
  2951. "__id__": 91
  2952. }
  2953. ],
  2954. "_active": true,
  2955. "_components": [
  2956. {
  2957. "__id__": 94
  2958. },
  2959. {
  2960. "__id__": 95
  2961. }
  2962. ],
  2963. "_prefab": {
  2964. "__id__": 97
  2965. },
  2966. "_opacity": 255,
  2967. "_color": {
  2968. "__type__": "cc.Color",
  2969. "r": 255,
  2970. "g": 255,
  2971. "b": 255,
  2972. "a": 255
  2973. },
  2974. "_contentSize": {
  2975. "__type__": "cc.Size",
  2976. "width": 104.37,
  2977. "height": 97
  2978. },
  2979. "_anchorPoint": {
  2980. "__type__": "cc.Vec2",
  2981. "x": 0.5,
  2982. "y": 0.5
  2983. },
  2984. "_trs": {
  2985. "__type__": "TypedArray",
  2986. "ctor": "Float64Array",
  2987. "array": [
  2988. 0,
  2989. 0,
  2990. 0,
  2991. 0,
  2992. 0,
  2993. 0,
  2994. 1,
  2995. 1,
  2996. 1,
  2997. 1
  2998. ]
  2999. },
  3000. "_eulerAngles": {
  3001. "__type__": "cc.Vec3",
  3002. "x": 0,
  3003. "y": 0,
  3004. "z": 0
  3005. },
  3006. "_skewX": 0,
  3007. "_skewY": 0,
  3008. "_is3DNode": false,
  3009. "_groupIndex": 0,
  3010. "groupIndex": 0,
  3011. "_id": ""
  3012. },
  3013. {
  3014. "__type__": "cc.Node",
  3015. "_name": "zi (5)",
  3016. "_objFlags": 0,
  3017. "_parent": {
  3018. "__id__": 90
  3019. },
  3020. "_children": [],
  3021. "_active": true,
  3022. "_components": [
  3023. {
  3024. "__id__": 92
  3025. }
  3026. ],
  3027. "_prefab": {
  3028. "__id__": 93
  3029. },
  3030. "_opacity": 255,
  3031. "_color": {
  3032. "__type__": "cc.Color",
  3033. "r": 255,
  3034. "g": 255,
  3035. "b": 255,
  3036. "a": 255
  3037. },
  3038. "_contentSize": {
  3039. "__type__": "cc.Size",
  3040. "width": 50,
  3041. "height": 27
  3042. },
  3043. "_anchorPoint": {
  3044. "__type__": "cc.Vec2",
  3045. "x": 0.5,
  3046. "y": 0.5
  3047. },
  3048. "_trs": {
  3049. "__type__": "TypedArray",
  3050. "ctor": "Float64Array",
  3051. "array": [
  3052. 0,
  3053. -37,
  3054. 0,
  3055. 0,
  3056. 0,
  3057. 0,
  3058. 1,
  3059. 1,
  3060. 1,
  3061. 1
  3062. ]
  3063. },
  3064. "_eulerAngles": {
  3065. "__type__": "cc.Vec3",
  3066. "x": 0,
  3067. "y": 0,
  3068. "z": 0
  3069. },
  3070. "_skewX": 0,
  3071. "_skewY": 0,
  3072. "_is3DNode": false,
  3073. "_groupIndex": 0,
  3074. "groupIndex": 0,
  3075. "_id": ""
  3076. },
  3077. {
  3078. "__type__": "cc.Sprite",
  3079. "_name": "",
  3080. "_objFlags": 0,
  3081. "node": {
  3082. "__id__": 91
  3083. },
  3084. "_enabled": true,
  3085. "_materials": [
  3086. {
  3087. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3088. }
  3089. ],
  3090. "_srcBlendFactor": 770,
  3091. "_dstBlendFactor": 771,
  3092. "_spriteFrame": {
  3093. "__uuid__": "2c3e698a-c1cd-4b06-83a6-fdeca9aaa9c3"
  3094. },
  3095. "_type": 0,
  3096. "_sizeMode": 1,
  3097. "_fillType": 0,
  3098. "_fillCenter": {
  3099. "__type__": "cc.Vec2",
  3100. "x": 0,
  3101. "y": 0
  3102. },
  3103. "_fillStart": 0,
  3104. "_fillRange": 0,
  3105. "_isTrimmedMode": true,
  3106. "_atlas": null,
  3107. "_id": ""
  3108. },
  3109. {
  3110. "__type__": "cc.PrefabInfo",
  3111. "root": {
  3112. "__id__": 1
  3113. },
  3114. "asset": {
  3115. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  3116. },
  3117. "fileId": "47e1XDiwVGPZf66XeEmiQr",
  3118. "sync": false
  3119. },
  3120. {
  3121. "__type__": "sp.Skeleton",
  3122. "_name": "",
  3123. "_objFlags": 0,
  3124. "node": {
  3125. "__id__": 90
  3126. },
  3127. "_enabled": true,
  3128. "_materials": [
  3129. {
  3130. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  3131. }
  3132. ],
  3133. "paused": false,
  3134. "defaultSkin": "default",
  3135. "defaultAnimation": "animation",
  3136. "_preCacheMode": 0,
  3137. "_cacheMode": 0,
  3138. "loop": true,
  3139. "premultipliedAlpha": true,
  3140. "timeScale": 1,
  3141. "_accTime": 0,
  3142. "_playCount": 0,
  3143. "_frameCache": null,
  3144. "_curFrame": null,
  3145. "_skeletonCache": null,
  3146. "_animationName": "animation",
  3147. "_animationQueue": [],
  3148. "_headAniInfo": null,
  3149. "_playTimes": 0,
  3150. "_isAniComplete": true,
  3151. "_N$skeletonData": {
  3152. "__uuid__": "b3a90f8c-06c6-4d76-aa5d-bfecd35a2294"
  3153. },
  3154. "_N$_defaultCacheMode": 0,
  3155. "_N$debugSlots": false,
  3156. "_N$debugBones": false,
  3157. "_N$debugMesh": false,
  3158. "_N$useTint": false,
  3159. "_N$enableBatch": false,
  3160. "_id": ""
  3161. },
  3162. {
  3163. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  3164. "_name": "",
  3165. "_objFlags": 0,
  3166. "node": {
  3167. "__id__": 90
  3168. },
  3169. "_enabled": true,
  3170. "panel_name": "module/sign/sign",
  3171. "open_type": 0,
  3172. "transition_type": 0,
  3173. "onComplete": {
  3174. "__id__": 96
  3175. },
  3176. "_id": ""
  3177. },
  3178. {
  3179. "__type__": "cc.ClickEvent",
  3180. "target": null,
  3181. "component": "",
  3182. "_componentId": "",
  3183. "handler": "",
  3184. "customEventData": ""
  3185. },
  3186. {
  3187. "__type__": "cc.PrefabInfo",
  3188. "root": {
  3189. "__id__": 1
  3190. },
  3191. "asset": {
  3192. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  3193. },
  3194. "fileId": "17xSr5RPtD05X/J9PeEUNX",
  3195. "sync": false
  3196. },
  3197. {
  3198. "__type__": "cc.Widget",
  3199. "_name": "",
  3200. "_objFlags": 0,
  3201. "node": {
  3202. "__id__": 71
  3203. },
  3204. "_enabled": true,
  3205. "alignMode": 1,
  3206. "_target": {
  3207. "__id__": 1
  3208. },
  3209. "_alignFlags": 32,
  3210. "_left": 0,
  3211. "_right": 0,
  3212. "_top": 0,
  3213. "_bottom": 0,
  3214. "_verticalCenter": 0,
  3215. "_horizontalCenter": 0,
  3216. "_isAbsLeft": true,
  3217. "_isAbsRight": true,
  3218. "_isAbsTop": true,
  3219. "_isAbsBottom": true,
  3220. "_isAbsHorizontalCenter": true,
  3221. "_isAbsVerticalCenter": true,
  3222. "_originalWidth": 0,
  3223. "_originalHeight": 0,
  3224. "_id": ""
  3225. },
  3226. {
  3227. "__type__": "cc.PrefabInfo",
  3228. "root": {
  3229. "__id__": 1
  3230. },
  3231. "asset": {
  3232. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  3233. },
  3234. "fileId": "6deDVtdrBEmonrwLZF9lJJ",
  3235. "sync": false
  3236. },
  3237. {
  3238. "__type__": "3bf10Wxox5IQLcQoa17hGCb",
  3239. "_name": "",
  3240. "_objFlags": 0,
  3241. "node": {
  3242. "__id__": 16
  3243. },
  3244. "_enabled": true,
  3245. "btn1": {
  3246. "__id__": 72
  3247. },
  3248. "btn2": {
  3249. "__id__": 26
  3250. },
  3251. "btn3": {
  3252. "__id__": 34
  3253. },
  3254. "btn4": {
  3255. "__id__": 74
  3256. },
  3257. "btn5": {
  3258. "__id__": 82
  3259. },
  3260. "btn6": {
  3261. "__id__": 90
  3262. },
  3263. "btn7": {
  3264. "__id__": 101
  3265. },
  3266. "btn_redeem": {
  3267. "__id__": 18
  3268. },
  3269. "_id": ""
  3270. },
  3271. {
  3272. "__type__": "cc.Node",
  3273. "_name": "红包币按钮",
  3274. "_objFlags": 0,
  3275. "_parent": {
  3276. "__id__": 102
  3277. },
  3278. "_children": [
  3279. {
  3280. "__id__": 135
  3281. },
  3282. {
  3283. "__id__": 138
  3284. },
  3285. {
  3286. "__id__": 142
  3287. },
  3288. {
  3289. "__id__": 145
  3290. }
  3291. ],
  3292. "_active": true,
  3293. "_components": [
  3294. {
  3295. "__id__": 148
  3296. }
  3297. ],
  3298. "_prefab": {
  3299. "__id__": 149
  3300. },
  3301. "_opacity": 255,
  3302. "_color": {
  3303. "__type__": "cc.Color",
  3304. "r": 255,
  3305. "g": 255,
  3306. "b": 255,
  3307. "a": 255
  3308. },
  3309. "_contentSize": {
  3310. "__type__": "cc.Size",
  3311. "width": 220,
  3312. "height": 60
  3313. },
  3314. "_anchorPoint": {
  3315. "__type__": "cc.Vec2",
  3316. "x": 0.5,
  3317. "y": 0.5
  3318. },
  3319. "_trs": {
  3320. "__type__": "TypedArray",
  3321. "ctor": "Float64Array",
  3322. "array": [
  3323. -90.441,
  3324. 101,
  3325. 0,
  3326. 0,
  3327. 0,
  3328. 0,
  3329. 1,
  3330. 1,
  3331. 1,
  3332. 1
  3333. ]
  3334. },
  3335. "_eulerAngles": {
  3336. "__type__": "cc.Vec3",
  3337. "x": 0,
  3338. "y": 0,
  3339. "z": 0
  3340. },
  3341. "_skewX": 0,
  3342. "_skewY": 0,
  3343. "_is3DNode": false,
  3344. "_groupIndex": 0,
  3345. "groupIndex": 0,
  3346. "_id": ""
  3347. },
  3348. {
  3349. "__type__": "cc.Node",
  3350. "_name": "顶部个人信息",
  3351. "_objFlags": 0,
  3352. "_parent": {
  3353. "__id__": 1
  3354. },
  3355. "_children": [
  3356. {
  3357. "__id__": 103
  3358. },
  3359. {
  3360. "__id__": 107
  3361. },
  3362. {
  3363. "__id__": 110
  3364. },
  3365. {
  3366. "__id__": 101
  3367. },
  3368. {
  3369. "__id__": 117
  3370. }
  3371. ],
  3372. "_active": true,
  3373. "_components": [
  3374. {
  3375. "__id__": 133
  3376. }
  3377. ],
  3378. "_prefab": {
  3379. "__id__": 134
  3380. },
  3381. "_opacity": 255,
  3382. "_color": {
  3383. "__type__": "cc.Color",
  3384. "r": 255,
  3385. "g": 255,
  3386. "b": 255,
  3387. "a": 255
  3388. },
  3389. "_contentSize": {
  3390. "__type__": "cc.Size",
  3391. "width": 750,
  3392. "height": 150
  3393. },
  3394. "_anchorPoint": {
  3395. "__type__": "cc.Vec2",
  3396. "x": 0.5,
  3397. "y": 0
  3398. },
  3399. "_trs": {
  3400. "__type__": "TypedArray",
  3401. "ctor": "Float64Array",
  3402. "array": [
  3403. 0,
  3404. 517,
  3405. 0,
  3406. 0,
  3407. 0,
  3408. 0,
  3409. 1,
  3410. 1,
  3411. 1,
  3412. 1
  3413. ]
  3414. },
  3415. "_eulerAngles": {
  3416. "__type__": "cc.Vec3",
  3417. "x": 0,
  3418. "y": 0,
  3419. "z": 0
  3420. },
  3421. "_skewX": 0,
  3422. "_skewY": 0,
  3423. "_is3DNode": false,
  3424. "_groupIndex": 0,
  3425. "groupIndex": 0,
  3426. "_id": ""
  3427. },
  3428. {
  3429. "__type__": "cc.Node",
  3430. "_name": "top_bg",
  3431. "_objFlags": 0,
  3432. "_parent": {
  3433. "__id__": 102
  3434. },
  3435. "_children": [],
  3436. "_active": true,
  3437. "_components": [
  3438. {
  3439. "__id__": 104
  3440. },
  3441. {
  3442. "__id__": 105
  3443. }
  3444. ],
  3445. "_prefab": {
  3446. "__id__": 106
  3447. },
  3448. "_opacity": 255,
  3449. "_color": {
  3450. "__type__": "cc.Color",
  3451. "r": 255,
  3452. "g": 255,
  3453. "b": 255,
  3454. "a": 255
  3455. },
  3456. "_contentSize": {
  3457. "__type__": "cc.Size",
  3458. "width": 750,
  3459. "height": 97
  3460. },
  3461. "_anchorPoint": {
  3462. "__type__": "cc.Vec2",
  3463. "x": 0.5,
  3464. "y": 0.5
  3465. },
  3466. "_trs": {
  3467. "__type__": "TypedArray",
  3468. "ctor": "Float64Array",
  3469. "array": [
  3470. 0,
  3471. 101.5,
  3472. 0,
  3473. 0,
  3474. 0,
  3475. 0,
  3476. 1,
  3477. 1,
  3478. 1,
  3479. 1
  3480. ]
  3481. },
  3482. "_eulerAngles": {
  3483. "__type__": "cc.Vec3",
  3484. "x": 0,
  3485. "y": 0,
  3486. "z": 0
  3487. },
  3488. "_skewX": 0,
  3489. "_skewY": 0,
  3490. "_is3DNode": false,
  3491. "_groupIndex": 0,
  3492. "groupIndex": 0,
  3493. "_id": ""
  3494. },
  3495. {
  3496. "__type__": "cc.Sprite",
  3497. "_name": "",
  3498. "_objFlags": 0,
  3499. "node": {
  3500. "__id__": 103
  3501. },
  3502. "_enabled": true,
  3503. "_materials": [
  3504. {
  3505. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3506. }
  3507. ],
  3508. "_srcBlendFactor": 770,
  3509. "_dstBlendFactor": 771,
  3510. "_spriteFrame": {
  3511. "__uuid__": "74dc7948-2570-4026-85cd-ba99392158fe"
  3512. },
  3513. "_type": 0,
  3514. "_sizeMode": 0,
  3515. "_fillType": 0,
  3516. "_fillCenter": {
  3517. "__type__": "cc.Vec2",
  3518. "x": 0,
  3519. "y": 0
  3520. },
  3521. "_fillStart": 0,
  3522. "_fillRange": 0,
  3523. "_isTrimmedMode": true,
  3524. "_atlas": null,
  3525. "_id": ""
  3526. },
  3527. {
  3528. "__type__": "cc.Widget",
  3529. "_name": "",
  3530. "_objFlags": 0,
  3531. "node": {
  3532. "__id__": 103
  3533. },
  3534. "_enabled": true,
  3535. "alignMode": 1,
  3536. "_target": null,
  3537. "_alignFlags": 41,
  3538. "_left": 0,
  3539. "_right": 0,
  3540. "_top": 0,
  3541. "_bottom": 0,
  3542. "_verticalCenter": 0,
  3543. "_horizontalCenter": 0,
  3544. "_isAbsLeft": true,
  3545. "_isAbsRight": true,
  3546. "_isAbsTop": true,
  3547. "_isAbsBottom": true,
  3548. "_isAbsHorizontalCenter": true,
  3549. "_isAbsVerticalCenter": true,
  3550. "_originalWidth": 750,
  3551. "_originalHeight": 0,
  3552. "_id": ""
  3553. },
  3554. {
  3555. "__type__": "cc.PrefabInfo",
  3556. "root": {
  3557. "__id__": 1
  3558. },
  3559. "asset": {
  3560. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  3561. },
  3562. "fileId": "6cL/Q4CeNPo7NWPZv5Z9m5",
  3563. "sync": false
  3564. },
  3565. {
  3566. "__type__": "cc.Node",
  3567. "_name": "底",
  3568. "_objFlags": 0,
  3569. "_parent": {
  3570. "__id__": 102
  3571. },
  3572. "_children": [],
  3573. "_active": true,
  3574. "_components": [
  3575. {
  3576. "__id__": 108
  3577. }
  3578. ],
  3579. "_prefab": {
  3580. "__id__": 109
  3581. },
  3582. "_opacity": 255,
  3583. "_color": {
  3584. "__type__": "cc.Color",
  3585. "r": 255,
  3586. "g": 255,
  3587. "b": 255,
  3588. "a": 255
  3589. },
  3590. "_contentSize": {
  3591. "__type__": "cc.Size",
  3592. "width": 149,
  3593. "height": 149
  3594. },
  3595. "_anchorPoint": {
  3596. "__type__": "cc.Vec2",
  3597. "x": 0.5,
  3598. "y": 0.5
  3599. },
  3600. "_trs": {
  3601. "__type__": "TypedArray",
  3602. "ctor": "Float64Array",
  3603. "array": [
  3604. -290,
  3605. 74,
  3606. 0,
  3607. 0,
  3608. 0,
  3609. 0,
  3610. 1,
  3611. 1,
  3612. 1,
  3613. 1
  3614. ]
  3615. },
  3616. "_eulerAngles": {
  3617. "__type__": "cc.Vec3",
  3618. "x": 0,
  3619. "y": 0,
  3620. "z": 0
  3621. },
  3622. "_skewX": 0,
  3623. "_skewY": 0,
  3624. "_is3DNode": false,
  3625. "_groupIndex": 0,
  3626. "groupIndex": 0,
  3627. "_id": ""
  3628. },
  3629. {
  3630. "__type__": "cc.Sprite",
  3631. "_name": "",
  3632. "_objFlags": 0,
  3633. "node": {
  3634. "__id__": 107
  3635. },
  3636. "_enabled": true,
  3637. "_materials": [
  3638. {
  3639. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3640. }
  3641. ],
  3642. "_srcBlendFactor": 770,
  3643. "_dstBlendFactor": 771,
  3644. "_spriteFrame": {
  3645. "__uuid__": "19fff267-73e6-4425-aed3-f3387ff1dc75"
  3646. },
  3647. "_type": 0,
  3648. "_sizeMode": 1,
  3649. "_fillType": 0,
  3650. "_fillCenter": {
  3651. "__type__": "cc.Vec2",
  3652. "x": 0,
  3653. "y": 0
  3654. },
  3655. "_fillStart": 0,
  3656. "_fillRange": 0,
  3657. "_isTrimmedMode": true,
  3658. "_atlas": null,
  3659. "_id": ""
  3660. },
  3661. {
  3662. "__type__": "cc.PrefabInfo",
  3663. "root": {
  3664. "__id__": 1
  3665. },
  3666. "asset": {
  3667. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  3668. },
  3669. "fileId": "afx2CGCitL7oMUxWN7mAXW",
  3670. "sync": false
  3671. },
  3672. {
  3673. "__type__": "cc.Node",
  3674. "_name": "头像遮罩",
  3675. "_objFlags": 0,
  3676. "_parent": {
  3677. "__id__": 102
  3678. },
  3679. "_children": [
  3680. {
  3681. "__id__": 111
  3682. }
  3683. ],
  3684. "_active": true,
  3685. "_components": [
  3686. {
  3687. "__id__": 115
  3688. }
  3689. ],
  3690. "_prefab": {
  3691. "__id__": 116
  3692. },
  3693. "_opacity": 255,
  3694. "_color": {
  3695. "__type__": "cc.Color",
  3696. "r": 255,
  3697. "g": 255,
  3698. "b": 255,
  3699. "a": 255
  3700. },
  3701. "_contentSize": {
  3702. "__type__": "cc.Size",
  3703. "width": 117,
  3704. "height": 117
  3705. },
  3706. "_anchorPoint": {
  3707. "__type__": "cc.Vec2",
  3708. "x": 0.5,
  3709. "y": 0.5
  3710. },
  3711. "_trs": {
  3712. "__type__": "TypedArray",
  3713. "ctor": "Float64Array",
  3714. "array": [
  3715. -290,
  3716. 74,
  3717. 0,
  3718. 0,
  3719. 0,
  3720. 0,
  3721. 1,
  3722. 1,
  3723. 1,
  3724. 1
  3725. ]
  3726. },
  3727. "_eulerAngles": {
  3728. "__type__": "cc.Vec3",
  3729. "x": 0,
  3730. "y": 0,
  3731. "z": 0
  3732. },
  3733. "_skewX": 0,
  3734. "_skewY": 0,
  3735. "_is3DNode": false,
  3736. "_groupIndex": 0,
  3737. "groupIndex": 0,
  3738. "_id": ""
  3739. },
  3740. {
  3741. "__type__": "cc.Node",
  3742. "_name": "头像",
  3743. "_objFlags": 0,
  3744. "_parent": {
  3745. "__id__": 110
  3746. },
  3747. "_children": [],
  3748. "_active": true,
  3749. "_components": [
  3750. {
  3751. "__id__": 112
  3752. },
  3753. {
  3754. "__id__": 113
  3755. }
  3756. ],
  3757. "_prefab": {
  3758. "__id__": 114
  3759. },
  3760. "_opacity": 255,
  3761. "_color": {
  3762. "__type__": "cc.Color",
  3763. "r": 255,
  3764. "g": 255,
  3765. "b": 255,
  3766. "a": 255
  3767. },
  3768. "_contentSize": {
  3769. "__type__": "cc.Size",
  3770. "width": 118,
  3771. "height": 118
  3772. },
  3773. "_anchorPoint": {
  3774. "__type__": "cc.Vec2",
  3775. "x": 0.5,
  3776. "y": 0.5
  3777. },
  3778. "_trs": {
  3779. "__type__": "TypedArray",
  3780. "ctor": "Float64Array",
  3781. "array": [
  3782. 0,
  3783. 0,
  3784. 0,
  3785. 0,
  3786. 0,
  3787. 0,
  3788. 1,
  3789. 1,
  3790. 1,
  3791. 1
  3792. ]
  3793. },
  3794. "_eulerAngles": {
  3795. "__type__": "cc.Vec3",
  3796. "x": 0,
  3797. "y": 0,
  3798. "z": 0
  3799. },
  3800. "_skewX": 0,
  3801. "_skewY": 0,
  3802. "_is3DNode": false,
  3803. "_groupIndex": 0,
  3804. "groupIndex": 0,
  3805. "_id": ""
  3806. },
  3807. {
  3808. "__type__": "cc.Sprite",
  3809. "_name": "",
  3810. "_objFlags": 0,
  3811. "node": {
  3812. "__id__": 111
  3813. },
  3814. "_enabled": true,
  3815. "_materials": [
  3816. {
  3817. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3818. }
  3819. ],
  3820. "_srcBlendFactor": 770,
  3821. "_dstBlendFactor": 771,
  3822. "_spriteFrame": {
  3823. "__uuid__": "66810a82-f3a8-4023-90b7-c83a87a2e4a1"
  3824. },
  3825. "_type": 0,
  3826. "_sizeMode": 0,
  3827. "_fillType": 0,
  3828. "_fillCenter": {
  3829. "__type__": "cc.Vec2",
  3830. "x": 0,
  3831. "y": 0
  3832. },
  3833. "_fillStart": 0,
  3834. "_fillRange": 0,
  3835. "_isTrimmedMode": true,
  3836. "_atlas": null,
  3837. "_id": ""
  3838. },
  3839. {
  3840. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  3841. "_name": "",
  3842. "_objFlags": 0,
  3843. "node": {
  3844. "__id__": 111
  3845. },
  3846. "_enabled": true,
  3847. "panel_name": "module/setting/setting",
  3848. "open_type": 0,
  3849. "transition_type": 0,
  3850. "onComplete": [],
  3851. "_id": ""
  3852. },
  3853. {
  3854. "__type__": "cc.PrefabInfo",
  3855. "root": {
  3856. "__id__": 1
  3857. },
  3858. "asset": {
  3859. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  3860. },
  3861. "fileId": "74aBM08yVHwp5WsuUxI+7z",
  3862. "sync": false
  3863. },
  3864. {
  3865. "__type__": "cc.Mask",
  3866. "_name": "",
  3867. "_objFlags": 0,
  3868. "node": {
  3869. "__id__": 110
  3870. },
  3871. "_enabled": true,
  3872. "_materials": [
  3873. {
  3874. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3875. }
  3876. ],
  3877. "_spriteFrame": {
  3878. "__uuid__": "66810a82-f3a8-4023-90b7-c83a87a2e4a1"
  3879. },
  3880. "_type": 2,
  3881. "_segments": 64,
  3882. "_N$alphaThreshold": 0.1,
  3883. "_N$inverted": false,
  3884. "_id": ""
  3885. },
  3886. {
  3887. "__type__": "cc.PrefabInfo",
  3888. "root": {
  3889. "__id__": 1
  3890. },
  3891. "asset": {
  3892. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  3893. },
  3894. "fileId": "08MxdtlxpBUKdvGEjMRBKK",
  3895. "sync": false
  3896. },
  3897. {
  3898. "__type__": "cc.Node",
  3899. "_name": "金猪币按钮",
  3900. "_objFlags": 0,
  3901. "_parent": {
  3902. "__id__": 102
  3903. },
  3904. "_children": [
  3905. {
  3906. "__id__": 118
  3907. },
  3908. {
  3909. "__id__": 121
  3910. },
  3911. {
  3912. "__id__": 125
  3913. },
  3914. {
  3915. "__id__": 128
  3916. }
  3917. ],
  3918. "_active": true,
  3919. "_components": [
  3920. {
  3921. "__id__": 131
  3922. }
  3923. ],
  3924. "_prefab": {
  3925. "__id__": 132
  3926. },
  3927. "_opacity": 255,
  3928. "_color": {
  3929. "__type__": "cc.Color",
  3930. "r": 255,
  3931. "g": 255,
  3932. "b": 255,
  3933. "a": 255
  3934. },
  3935. "_contentSize": {
  3936. "__type__": "cc.Size",
  3937. "width": 220,
  3938. "height": 60
  3939. },
  3940. "_anchorPoint": {
  3941. "__type__": "cc.Vec2",
  3942. "x": 0.5,
  3943. "y": 0.5
  3944. },
  3945. "_trs": {
  3946. "__type__": "TypedArray",
  3947. "ctor": "Float64Array",
  3948. "array": [
  3949. 192.94,
  3950. 101,
  3951. 0,
  3952. 0,
  3953. 0,
  3954. 0,
  3955. 1,
  3956. 1,
  3957. 1,
  3958. 1
  3959. ]
  3960. },
  3961. "_eulerAngles": {
  3962. "__type__": "cc.Vec3",
  3963. "x": 0,
  3964. "y": 0,
  3965. "z": 0
  3966. },
  3967. "_skewX": 0,
  3968. "_skewY": 0,
  3969. "_is3DNode": false,
  3970. "_groupIndex": 0,
  3971. "groupIndex": 0,
  3972. "_id": ""
  3973. },
  3974. {
  3975. "__type__": "cc.Node",
  3976. "_name": "tixian_bg",
  3977. "_objFlags": 0,
  3978. "_parent": {
  3979. "__id__": 117
  3980. },
  3981. "_children": [],
  3982. "_active": true,
  3983. "_components": [
  3984. {
  3985. "__id__": 119
  3986. }
  3987. ],
  3988. "_prefab": {
  3989. "__id__": 120
  3990. },
  3991. "_opacity": 255,
  3992. "_color": {
  3993. "__type__": "cc.Color",
  3994. "r": 255,
  3995. "g": 255,
  3996. "b": 255,
  3997. "a": 255
  3998. },
  3999. "_contentSize": {
  4000. "__type__": "cc.Size",
  4001. "width": 217,
  4002. "height": 60
  4003. },
  4004. "_anchorPoint": {
  4005. "__type__": "cc.Vec2",
  4006. "x": 0.5,
  4007. "y": 0.5
  4008. },
  4009. "_trs": {
  4010. "__type__": "TypedArray",
  4011. "ctor": "Float64Array",
  4012. "array": [
  4013. 0,
  4014. 0,
  4015. 0,
  4016. 0,
  4017. 0,
  4018. 0,
  4019. 1,
  4020. 1,
  4021. 1,
  4022. 1
  4023. ]
  4024. },
  4025. "_eulerAngles": {
  4026. "__type__": "cc.Vec3",
  4027. "x": 0,
  4028. "y": 0,
  4029. "z": 0
  4030. },
  4031. "_skewX": 0,
  4032. "_skewY": 0,
  4033. "_is3DNode": false,
  4034. "_groupIndex": 0,
  4035. "groupIndex": 0,
  4036. "_id": ""
  4037. },
  4038. {
  4039. "__type__": "cc.Sprite",
  4040. "_name": "",
  4041. "_objFlags": 0,
  4042. "node": {
  4043. "__id__": 118
  4044. },
  4045. "_enabled": true,
  4046. "_materials": [
  4047. {
  4048. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4049. }
  4050. ],
  4051. "_srcBlendFactor": 770,
  4052. "_dstBlendFactor": 771,
  4053. "_spriteFrame": {
  4054. "__uuid__": "146c87a4-54bc-43db-8e7a-c1e92835c69c"
  4055. },
  4056. "_type": 0,
  4057. "_sizeMode": 1,
  4058. "_fillType": 0,
  4059. "_fillCenter": {
  4060. "__type__": "cc.Vec2",
  4061. "x": 0,
  4062. "y": 0
  4063. },
  4064. "_fillStart": 0,
  4065. "_fillRange": 0,
  4066. "_isTrimmedMode": true,
  4067. "_atlas": null,
  4068. "_id": ""
  4069. },
  4070. {
  4071. "__type__": "cc.PrefabInfo",
  4072. "root": {
  4073. "__id__": 1
  4074. },
  4075. "asset": {
  4076. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4077. },
  4078. "fileId": "c2nG2ffVZMXrqiPZtYCNCM",
  4079. "sync": false
  4080. },
  4081. {
  4082. "__type__": "cc.Node",
  4083. "_name": "现金",
  4084. "_objFlags": 0,
  4085. "_parent": {
  4086. "__id__": 117
  4087. },
  4088. "_children": [],
  4089. "_active": true,
  4090. "_components": [
  4091. {
  4092. "__id__": 122
  4093. },
  4094. {
  4095. "__id__": 123
  4096. }
  4097. ],
  4098. "_prefab": {
  4099. "__id__": 124
  4100. },
  4101. "_opacity": 255,
  4102. "_color": {
  4103. "__type__": "cc.Color",
  4104. "r": 255,
  4105. "g": 255,
  4106. "b": 255,
  4107. "a": 255
  4108. },
  4109. "_contentSize": {
  4110. "__type__": "cc.Size",
  4111. "width": 89.39,
  4112. "height": 44.32
  4113. },
  4114. "_anchorPoint": {
  4115. "__type__": "cc.Vec2",
  4116. "x": 0.5,
  4117. "y": 0.5
  4118. },
  4119. "_trs": {
  4120. "__type__": "TypedArray",
  4121. "ctor": "Float64Array",
  4122. "array": [
  4123. 0,
  4124. 0,
  4125. 0,
  4126. 0,
  4127. 0,
  4128. 0,
  4129. 1,
  4130. 1,
  4131. 1,
  4132. 1
  4133. ]
  4134. },
  4135. "_eulerAngles": {
  4136. "__type__": "cc.Vec3",
  4137. "x": 0,
  4138. "y": 0,
  4139. "z": 0
  4140. },
  4141. "_skewX": 0,
  4142. "_skewY": 0,
  4143. "_is3DNode": false,
  4144. "_groupIndex": 0,
  4145. "groupIndex": 0,
  4146. "_id": ""
  4147. },
  4148. {
  4149. "__type__": "cc.Label",
  4150. "_name": "",
  4151. "_objFlags": 0,
  4152. "node": {
  4153. "__id__": 121
  4154. },
  4155. "_enabled": true,
  4156. "_materials": [
  4157. {
  4158. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4159. }
  4160. ],
  4161. "_srcBlendFactor": 770,
  4162. "_dstBlendFactor": 771,
  4163. "_string": "300元",
  4164. "_N$string": "300元",
  4165. "_fontSize": 32,
  4166. "_lineHeight": 32,
  4167. "_enableWrapText": true,
  4168. "_N$file": null,
  4169. "_isSystemFontUsed": true,
  4170. "_spacingX": 0,
  4171. "_batchAsBitmap": false,
  4172. "_styleFlags": 0,
  4173. "_underlineHeight": 0,
  4174. "_N$horizontalAlign": 1,
  4175. "_N$verticalAlign": 1,
  4176. "_N$fontFamily": "Arial",
  4177. "_N$overflow": 0,
  4178. "_N$cacheMode": 0,
  4179. "_id": ""
  4180. },
  4181. {
  4182. "__type__": "cc.LabelOutline",
  4183. "_name": "",
  4184. "_objFlags": 0,
  4185. "node": {
  4186. "__id__": 121
  4187. },
  4188. "_enabled": true,
  4189. "_color": {
  4190. "__type__": "cc.Color",
  4191. "r": 0,
  4192. "g": 0,
  4193. "b": 0,
  4194. "a": 255
  4195. },
  4196. "_width": 2,
  4197. "_id": ""
  4198. },
  4199. {
  4200. "__type__": "cc.PrefabInfo",
  4201. "root": {
  4202. "__id__": 1
  4203. },
  4204. "asset": {
  4205. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4206. },
  4207. "fileId": "b6RkgYTZZBSafcDfa07gQP",
  4208. "sync": false
  4209. },
  4210. {
  4211. "__type__": "cc.Node",
  4212. "_name": "icon_zb",
  4213. "_objFlags": 0,
  4214. "_parent": {
  4215. "__id__": 117
  4216. },
  4217. "_children": [],
  4218. "_active": true,
  4219. "_components": [
  4220. {
  4221. "__id__": 126
  4222. }
  4223. ],
  4224. "_prefab": {
  4225. "__id__": 127
  4226. },
  4227. "_opacity": 255,
  4228. "_color": {
  4229. "__type__": "cc.Color",
  4230. "r": 255,
  4231. "g": 255,
  4232. "b": 255,
  4233. "a": 255
  4234. },
  4235. "_contentSize": {
  4236. "__type__": "cc.Size",
  4237. "width": 70,
  4238. "height": 70
  4239. },
  4240. "_anchorPoint": {
  4241. "__type__": "cc.Vec2",
  4242. "x": 0.5,
  4243. "y": 0.5
  4244. },
  4245. "_trs": {
  4246. "__type__": "TypedArray",
  4247. "ctor": "Float64Array",
  4248. "array": [
  4249. -94.058,
  4250. 0,
  4251. 0,
  4252. 0,
  4253. 0,
  4254. 0,
  4255. 1,
  4256. 1,
  4257. 1,
  4258. 1
  4259. ]
  4260. },
  4261. "_eulerAngles": {
  4262. "__type__": "cc.Vec3",
  4263. "x": 0,
  4264. "y": 0,
  4265. "z": 0
  4266. },
  4267. "_skewX": 0,
  4268. "_skewY": 0,
  4269. "_is3DNode": false,
  4270. "_groupIndex": 0,
  4271. "groupIndex": 0,
  4272. "_id": ""
  4273. },
  4274. {
  4275. "__type__": "cc.Sprite",
  4276. "_name": "",
  4277. "_objFlags": 0,
  4278. "node": {
  4279. "__id__": 125
  4280. },
  4281. "_enabled": true,
  4282. "_materials": [
  4283. {
  4284. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4285. }
  4286. ],
  4287. "_srcBlendFactor": 770,
  4288. "_dstBlendFactor": 771,
  4289. "_spriteFrame": {
  4290. "__uuid__": "1a69d849-95bb-49a7-aab2-51260a63e94f"
  4291. },
  4292. "_type": 0,
  4293. "_sizeMode": 1,
  4294. "_fillType": 0,
  4295. "_fillCenter": {
  4296. "__type__": "cc.Vec2",
  4297. "x": 0,
  4298. "y": 0
  4299. },
  4300. "_fillStart": 0,
  4301. "_fillRange": 0,
  4302. "_isTrimmedMode": true,
  4303. "_atlas": null,
  4304. "_id": ""
  4305. },
  4306. {
  4307. "__type__": "cc.PrefabInfo",
  4308. "root": {
  4309. "__id__": 1
  4310. },
  4311. "asset": {
  4312. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4313. },
  4314. "fileId": "ba7z+HoURONYKg9APSdf0B",
  4315. "sync": false
  4316. },
  4317. {
  4318. "__type__": "cc.Node",
  4319. "_name": "button_tx",
  4320. "_objFlags": 0,
  4321. "_parent": {
  4322. "__id__": 117
  4323. },
  4324. "_children": [],
  4325. "_active": true,
  4326. "_components": [
  4327. {
  4328. "__id__": 129
  4329. }
  4330. ],
  4331. "_prefab": {
  4332. "__id__": 130
  4333. },
  4334. "_opacity": 255,
  4335. "_color": {
  4336. "__type__": "cc.Color",
  4337. "r": 255,
  4338. "g": 255,
  4339. "b": 255,
  4340. "a": 255
  4341. },
  4342. "_contentSize": {
  4343. "__type__": "cc.Size",
  4344. "width": 81,
  4345. "height": 66
  4346. },
  4347. "_anchorPoint": {
  4348. "__type__": "cc.Vec2",
  4349. "x": 0.5,
  4350. "y": 0.5
  4351. },
  4352. "_trs": {
  4353. "__type__": "TypedArray",
  4354. "ctor": "Float64Array",
  4355. "array": [
  4356. 92.852,
  4357. 0,
  4358. 0,
  4359. 0,
  4360. 0,
  4361. 0,
  4362. 1,
  4363. 1,
  4364. 1,
  4365. 1
  4366. ]
  4367. },
  4368. "_eulerAngles": {
  4369. "__type__": "cc.Vec3",
  4370. "x": 0,
  4371. "y": 0,
  4372. "z": 0
  4373. },
  4374. "_skewX": 0,
  4375. "_skewY": 0,
  4376. "_is3DNode": false,
  4377. "_groupIndex": 0,
  4378. "groupIndex": 0,
  4379. "_id": ""
  4380. },
  4381. {
  4382. "__type__": "cc.Sprite",
  4383. "_name": "",
  4384. "_objFlags": 0,
  4385. "node": {
  4386. "__id__": 128
  4387. },
  4388. "_enabled": true,
  4389. "_materials": [
  4390. {
  4391. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4392. }
  4393. ],
  4394. "_srcBlendFactor": 770,
  4395. "_dstBlendFactor": 771,
  4396. "_spriteFrame": {
  4397. "__uuid__": "6989e892-fca0-4ac3-86d9-086f3b403cf0"
  4398. },
  4399. "_type": 0,
  4400. "_sizeMode": 1,
  4401. "_fillType": 0,
  4402. "_fillCenter": {
  4403. "__type__": "cc.Vec2",
  4404. "x": 0,
  4405. "y": 0
  4406. },
  4407. "_fillStart": 0,
  4408. "_fillRange": 0,
  4409. "_isTrimmedMode": true,
  4410. "_atlas": null,
  4411. "_id": ""
  4412. },
  4413. {
  4414. "__type__": "cc.PrefabInfo",
  4415. "root": {
  4416. "__id__": 1
  4417. },
  4418. "asset": {
  4419. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4420. },
  4421. "fileId": "c8Wn//A59AYpXCL9NSGaI4",
  4422. "sync": false
  4423. },
  4424. {
  4425. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  4426. "_name": "",
  4427. "_objFlags": 0,
  4428. "node": {
  4429. "__id__": 117
  4430. },
  4431. "_enabled": true,
  4432. "panel_name": "module/pigBank/pigBank",
  4433. "open_type": 0,
  4434. "transition_type": 0,
  4435. "onComplete": [],
  4436. "_id": ""
  4437. },
  4438. {
  4439. "__type__": "cc.PrefabInfo",
  4440. "root": {
  4441. "__id__": 1
  4442. },
  4443. "asset": {
  4444. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4445. },
  4446. "fileId": "dbhoVT0zNOdZYGRfGjPXES",
  4447. "sync": false
  4448. },
  4449. {
  4450. "__type__": "cc.Widget",
  4451. "_name": "",
  4452. "_objFlags": 0,
  4453. "node": {
  4454. "__id__": 102
  4455. },
  4456. "_enabled": true,
  4457. "alignMode": 1,
  4458. "_target": null,
  4459. "_alignFlags": 1,
  4460. "_left": 0,
  4461. "_right": 0,
  4462. "_top": 0,
  4463. "_bottom": 0,
  4464. "_verticalCenter": 0,
  4465. "_horizontalCenter": 0,
  4466. "_isAbsLeft": true,
  4467. "_isAbsRight": true,
  4468. "_isAbsTop": true,
  4469. "_isAbsBottom": true,
  4470. "_isAbsHorizontalCenter": true,
  4471. "_isAbsVerticalCenter": true,
  4472. "_originalWidth": 0,
  4473. "_originalHeight": 0,
  4474. "_id": ""
  4475. },
  4476. {
  4477. "__type__": "cc.PrefabInfo",
  4478. "root": {
  4479. "__id__": 1
  4480. },
  4481. "asset": {
  4482. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4483. },
  4484. "fileId": "02tJh1paxKqI27V+jpDdPn",
  4485. "sync": false
  4486. },
  4487. {
  4488. "__type__": "cc.Node",
  4489. "_name": "tixian_bg",
  4490. "_objFlags": 0,
  4491. "_parent": {
  4492. "__id__": 101
  4493. },
  4494. "_children": [],
  4495. "_active": true,
  4496. "_components": [
  4497. {
  4498. "__id__": 136
  4499. }
  4500. ],
  4501. "_prefab": {
  4502. "__id__": 137
  4503. },
  4504. "_opacity": 255,
  4505. "_color": {
  4506. "__type__": "cc.Color",
  4507. "r": 255,
  4508. "g": 255,
  4509. "b": 255,
  4510. "a": 255
  4511. },
  4512. "_contentSize": {
  4513. "__type__": "cc.Size",
  4514. "width": 217,
  4515. "height": 60
  4516. },
  4517. "_anchorPoint": {
  4518. "__type__": "cc.Vec2",
  4519. "x": 0.5,
  4520. "y": 0.5
  4521. },
  4522. "_trs": {
  4523. "__type__": "TypedArray",
  4524. "ctor": "Float64Array",
  4525. "array": [
  4526. 0,
  4527. 0,
  4528. 0,
  4529. 0,
  4530. 0,
  4531. 0,
  4532. 1,
  4533. 1,
  4534. 1,
  4535. 1
  4536. ]
  4537. },
  4538. "_eulerAngles": {
  4539. "__type__": "cc.Vec3",
  4540. "x": 0,
  4541. "y": 0,
  4542. "z": 0
  4543. },
  4544. "_skewX": 0,
  4545. "_skewY": 0,
  4546. "_is3DNode": false,
  4547. "_groupIndex": 0,
  4548. "groupIndex": 0,
  4549. "_id": ""
  4550. },
  4551. {
  4552. "__type__": "cc.Sprite",
  4553. "_name": "",
  4554. "_objFlags": 0,
  4555. "node": {
  4556. "__id__": 135
  4557. },
  4558. "_enabled": true,
  4559. "_materials": [
  4560. {
  4561. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4562. }
  4563. ],
  4564. "_srcBlendFactor": 770,
  4565. "_dstBlendFactor": 771,
  4566. "_spriteFrame": {
  4567. "__uuid__": "146c87a4-54bc-43db-8e7a-c1e92835c69c"
  4568. },
  4569. "_type": 0,
  4570. "_sizeMode": 1,
  4571. "_fillType": 0,
  4572. "_fillCenter": {
  4573. "__type__": "cc.Vec2",
  4574. "x": 0,
  4575. "y": 0
  4576. },
  4577. "_fillStart": 0,
  4578. "_fillRange": 0,
  4579. "_isTrimmedMode": true,
  4580. "_atlas": null,
  4581. "_id": ""
  4582. },
  4583. {
  4584. "__type__": "cc.PrefabInfo",
  4585. "root": {
  4586. "__id__": 1
  4587. },
  4588. "asset": {
  4589. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4590. },
  4591. "fileId": "e0WIYKTn9MHYYzYFX4e4sV",
  4592. "sync": false
  4593. },
  4594. {
  4595. "__type__": "cc.Node",
  4596. "_name": "红包币",
  4597. "_objFlags": 0,
  4598. "_parent": {
  4599. "__id__": 101
  4600. },
  4601. "_children": [],
  4602. "_active": true,
  4603. "_components": [
  4604. {
  4605. "__id__": 139
  4606. },
  4607. {
  4608. "__id__": 140
  4609. }
  4610. ],
  4611. "_prefab": {
  4612. "__id__": 141
  4613. },
  4614. "_opacity": 255,
  4615. "_color": {
  4616. "__type__": "cc.Color",
  4617. "r": 255,
  4618. "g": 255,
  4619. "b": 255,
  4620. "a": 255
  4621. },
  4622. "_contentSize": {
  4623. "__type__": "cc.Size",
  4624. "width": 92.98,
  4625. "height": 44.32
  4626. },
  4627. "_anchorPoint": {
  4628. "__type__": "cc.Vec2",
  4629. "x": 0.5,
  4630. "y": 0.5
  4631. },
  4632. "_trs": {
  4633. "__type__": "TypedArray",
  4634. "ctor": "Float64Array",
  4635. "array": [
  4636. 0,
  4637. 0,
  4638. 0,
  4639. 0,
  4640. 0,
  4641. 0,
  4642. 1,
  4643. 1,
  4644. 1,
  4645. 1
  4646. ]
  4647. },
  4648. "_eulerAngles": {
  4649. "__type__": "cc.Vec3",
  4650. "x": 0,
  4651. "y": 0,
  4652. "z": 0
  4653. },
  4654. "_skewX": 0,
  4655. "_skewY": 0,
  4656. "_is3DNode": false,
  4657. "_groupIndex": 0,
  4658. "groupIndex": 0,
  4659. "_id": ""
  4660. },
  4661. {
  4662. "__type__": "cc.Label",
  4663. "_name": "",
  4664. "_objFlags": 0,
  4665. "node": {
  4666. "__id__": 138
  4667. },
  4668. "_enabled": true,
  4669. "_materials": [
  4670. {
  4671. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4672. }
  4673. ],
  4674. "_srcBlendFactor": 770,
  4675. "_dstBlendFactor": 771,
  4676. "_string": "22222",
  4677. "_N$string": "22222",
  4678. "_fontSize": 32,
  4679. "_lineHeight": 32,
  4680. "_enableWrapText": true,
  4681. "_N$file": null,
  4682. "_isSystemFontUsed": true,
  4683. "_spacingX": 0,
  4684. "_batchAsBitmap": false,
  4685. "_styleFlags": 0,
  4686. "_underlineHeight": 0,
  4687. "_N$horizontalAlign": 1,
  4688. "_N$verticalAlign": 1,
  4689. "_N$fontFamily": "Arial",
  4690. "_N$overflow": 0,
  4691. "_N$cacheMode": 0,
  4692. "_id": ""
  4693. },
  4694. {
  4695. "__type__": "cc.LabelOutline",
  4696. "_name": "",
  4697. "_objFlags": 0,
  4698. "node": {
  4699. "__id__": 138
  4700. },
  4701. "_enabled": true,
  4702. "_color": {
  4703. "__type__": "cc.Color",
  4704. "r": 0,
  4705. "g": 0,
  4706. "b": 0,
  4707. "a": 255
  4708. },
  4709. "_width": 2,
  4710. "_id": ""
  4711. },
  4712. {
  4713. "__type__": "cc.PrefabInfo",
  4714. "root": {
  4715. "__id__": 1
  4716. },
  4717. "asset": {
  4718. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4719. },
  4720. "fileId": "57AFTqddlC7ZudUroSWqu2",
  4721. "sync": false
  4722. },
  4723. {
  4724. "__type__": "cc.Node",
  4725. "_name": "icon_hb",
  4726. "_objFlags": 0,
  4727. "_parent": {
  4728. "__id__": 101
  4729. },
  4730. "_children": [],
  4731. "_active": true,
  4732. "_components": [
  4733. {
  4734. "__id__": 143
  4735. }
  4736. ],
  4737. "_prefab": {
  4738. "__id__": 144
  4739. },
  4740. "_opacity": 255,
  4741. "_color": {
  4742. "__type__": "cc.Color",
  4743. "r": 255,
  4744. "g": 255,
  4745. "b": 255,
  4746. "a": 255
  4747. },
  4748. "_contentSize": {
  4749. "__type__": "cc.Size",
  4750. "width": 56,
  4751. "height": 74
  4752. },
  4753. "_anchorPoint": {
  4754. "__type__": "cc.Vec2",
  4755. "x": 0.5,
  4756. "y": 0.5
  4757. },
  4758. "_trs": {
  4759. "__type__": "TypedArray",
  4760. "ctor": "Float64Array",
  4761. "array": [
  4762. -94,
  4763. 0,
  4764. 0,
  4765. 0,
  4766. 0,
  4767. 0,
  4768. 1,
  4769. 1,
  4770. 1,
  4771. 1
  4772. ]
  4773. },
  4774. "_eulerAngles": {
  4775. "__type__": "cc.Vec3",
  4776. "x": 0,
  4777. "y": 0,
  4778. "z": 0
  4779. },
  4780. "_skewX": 0,
  4781. "_skewY": 0,
  4782. "_is3DNode": false,
  4783. "_groupIndex": 0,
  4784. "groupIndex": 0,
  4785. "_id": ""
  4786. },
  4787. {
  4788. "__type__": "cc.Sprite",
  4789. "_name": "",
  4790. "_objFlags": 0,
  4791. "node": {
  4792. "__id__": 142
  4793. },
  4794. "_enabled": true,
  4795. "_materials": [
  4796. {
  4797. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4798. }
  4799. ],
  4800. "_srcBlendFactor": 770,
  4801. "_dstBlendFactor": 771,
  4802. "_spriteFrame": {
  4803. "__uuid__": "44d1aafb-9c1c-4184-abaa-fde1a4302c48"
  4804. },
  4805. "_type": 0,
  4806. "_sizeMode": 1,
  4807. "_fillType": 0,
  4808. "_fillCenter": {
  4809. "__type__": "cc.Vec2",
  4810. "x": 0,
  4811. "y": 0
  4812. },
  4813. "_fillStart": 0,
  4814. "_fillRange": 0,
  4815. "_isTrimmedMode": true,
  4816. "_atlas": null,
  4817. "_id": ""
  4818. },
  4819. {
  4820. "__type__": "cc.PrefabInfo",
  4821. "root": {
  4822. "__id__": 1
  4823. },
  4824. "asset": {
  4825. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4826. },
  4827. "fileId": "63aqi5/gBDibzvQY//xl7R",
  4828. "sync": false
  4829. },
  4830. {
  4831. "__type__": "cc.Node",
  4832. "_name": "btn7",
  4833. "_objFlags": 0,
  4834. "_parent": {
  4835. "__id__": 101
  4836. },
  4837. "_children": [],
  4838. "_active": true,
  4839. "_components": [
  4840. {
  4841. "__id__": 146
  4842. }
  4843. ],
  4844. "_prefab": {
  4845. "__id__": 147
  4846. },
  4847. "_opacity": 255,
  4848. "_color": {
  4849. "__type__": "cc.Color",
  4850. "r": 255,
  4851. "g": 255,
  4852. "b": 255,
  4853. "a": 255
  4854. },
  4855. "_contentSize": {
  4856. "__type__": "cc.Size",
  4857. "width": 81,
  4858. "height": 66
  4859. },
  4860. "_anchorPoint": {
  4861. "__type__": "cc.Vec2",
  4862. "x": 0.5,
  4863. "y": 0.5
  4864. },
  4865. "_trs": {
  4866. "__type__": "TypedArray",
  4867. "ctor": "Float64Array",
  4868. "array": [
  4869. 90,
  4870. 0,
  4871. 0,
  4872. 0,
  4873. 0,
  4874. 0,
  4875. 1,
  4876. 1,
  4877. 1,
  4878. 1
  4879. ]
  4880. },
  4881. "_eulerAngles": {
  4882. "__type__": "cc.Vec3",
  4883. "x": 0,
  4884. "y": 0,
  4885. "z": 0
  4886. },
  4887. "_skewX": 0,
  4888. "_skewY": 0,
  4889. "_is3DNode": false,
  4890. "_groupIndex": 0,
  4891. "groupIndex": 0,
  4892. "_id": ""
  4893. },
  4894. {
  4895. "__type__": "cc.Sprite",
  4896. "_name": "",
  4897. "_objFlags": 0,
  4898. "node": {
  4899. "__id__": 145
  4900. },
  4901. "_enabled": true,
  4902. "_materials": [
  4903. {
  4904. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4905. }
  4906. ],
  4907. "_srcBlendFactor": 770,
  4908. "_dstBlendFactor": 771,
  4909. "_spriteFrame": {
  4910. "__uuid__": "6989e892-fca0-4ac3-86d9-086f3b403cf0"
  4911. },
  4912. "_type": 0,
  4913. "_sizeMode": 1,
  4914. "_fillType": 0,
  4915. "_fillCenter": {
  4916. "__type__": "cc.Vec2",
  4917. "x": 0,
  4918. "y": 0
  4919. },
  4920. "_fillStart": 0,
  4921. "_fillRange": 0,
  4922. "_isTrimmedMode": true,
  4923. "_atlas": null,
  4924. "_id": ""
  4925. },
  4926. {
  4927. "__type__": "cc.PrefabInfo",
  4928. "root": {
  4929. "__id__": 1
  4930. },
  4931. "asset": {
  4932. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4933. },
  4934. "fileId": "44ICeFl2VPU4K1lKBp/IiR",
  4935. "sync": false
  4936. },
  4937. {
  4938. "__type__": "b8d2cnq+GZLFK30xbLDqr/m",
  4939. "_name": "",
  4940. "_objFlags": 0,
  4941. "node": {
  4942. "__id__": 101
  4943. },
  4944. "_enabled": true,
  4945. "panel_name": "module/redBagCash/redBagCash",
  4946. "open_type": 0,
  4947. "transition_type": 0,
  4948. "onComplete": [],
  4949. "_id": ""
  4950. },
  4951. {
  4952. "__type__": "cc.PrefabInfo",
  4953. "root": {
  4954. "__id__": 1
  4955. },
  4956. "asset": {
  4957. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4958. },
  4959. "fileId": "e2Kftii95CA5gdTQlPHULJ",
  4960. "sync": false
  4961. },
  4962. {
  4963. "__type__": "cc.PrefabInfo",
  4964. "root": {
  4965. "__id__": 1
  4966. },
  4967. "asset": {
  4968. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  4969. },
  4970. "fileId": "a7WQ1qUIBLbYrFhGGXNnxY",
  4971. "sync": false
  4972. },
  4973. {
  4974. "__type__": "cc.Node",
  4975. "_name": "动画",
  4976. "_objFlags": 0,
  4977. "_parent": {
  4978. "__id__": 1
  4979. },
  4980. "_children": [],
  4981. "_active": true,
  4982. "_components": [
  4983. {
  4984. "__id__": 152
  4985. }
  4986. ],
  4987. "_prefab": {
  4988. "__id__": 153
  4989. },
  4990. "_opacity": 255,
  4991. "_color": {
  4992. "__type__": "cc.Color",
  4993. "r": 255,
  4994. "g": 255,
  4995. "b": 255,
  4996. "a": 255
  4997. },
  4998. "_contentSize": {
  4999. "__type__": "cc.Size",
  5000. "width": 485.48,
  5001. "height": 443.28
  5002. },
  5003. "_anchorPoint": {
  5004. "__type__": "cc.Vec2",
  5005. "x": 0.5,
  5006. "y": 0.5
  5007. },
  5008. "_trs": {
  5009. "__type__": "TypedArray",
  5010. "ctor": "Float64Array",
  5011. "array": [
  5012. 0,
  5013. -300,
  5014. 0,
  5015. 0,
  5016. 0,
  5017. 0,
  5018. 1,
  5019. 1,
  5020. 1,
  5021. 1
  5022. ]
  5023. },
  5024. "_eulerAngles": {
  5025. "__type__": "cc.Vec3",
  5026. "x": 0,
  5027. "y": 0,
  5028. "z": 0
  5029. },
  5030. "_skewX": 0,
  5031. "_skewY": 0,
  5032. "_is3DNode": false,
  5033. "_groupIndex": 0,
  5034. "groupIndex": 0,
  5035. "_id": ""
  5036. },
  5037. {
  5038. "__type__": "sp.Skeleton",
  5039. "_name": "",
  5040. "_objFlags": 0,
  5041. "node": {
  5042. "__id__": 151
  5043. },
  5044. "_enabled": true,
  5045. "_materials": [
  5046. {
  5047. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  5048. }
  5049. ],
  5050. "paused": false,
  5051. "defaultSkin": "default",
  5052. "defaultAnimation": "idle",
  5053. "_preCacheMode": 0,
  5054. "_cacheMode": 0,
  5055. "loop": true,
  5056. "premultipliedAlpha": true,
  5057. "timeScale": 1,
  5058. "_accTime": 0,
  5059. "_playCount": 0,
  5060. "_frameCache": null,
  5061. "_curFrame": null,
  5062. "_skeletonCache": null,
  5063. "_animationName": "idle",
  5064. "_animationQueue": [],
  5065. "_headAniInfo": null,
  5066. "_playTimes": 0,
  5067. "_isAniComplete": true,
  5068. "_N$skeletonData": {
  5069. "__uuid__": "8f090d5d-cfa1-40d6-bcce-014cc1aa881e"
  5070. },
  5071. "_N$_defaultCacheMode": 0,
  5072. "_N$debugSlots": false,
  5073. "_N$debugBones": false,
  5074. "_N$debugMesh": false,
  5075. "_N$useTint": false,
  5076. "_N$enableBatch": false,
  5077. "_id": ""
  5078. },
  5079. {
  5080. "__type__": "cc.PrefabInfo",
  5081. "root": {
  5082. "__id__": 1
  5083. },
  5084. "asset": {
  5085. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  5086. },
  5087. "fileId": "9csULoxKJLRZr5diDYWWyI",
  5088. "sync": false
  5089. },
  5090. {
  5091. "__type__": "cc.Node",
  5092. "_name": "开始按钮",
  5093. "_objFlags": 0,
  5094. "_parent": {
  5095. "__id__": 1
  5096. },
  5097. "_children": [
  5098. {
  5099. "__id__": 155
  5100. }
  5101. ],
  5102. "_active": true,
  5103. "_components": [
  5104. {
  5105. "__id__": 159
  5106. },
  5107. {
  5108. "__id__": 161
  5109. }
  5110. ],
  5111. "_prefab": {
  5112. "__id__": 162
  5113. },
  5114. "_opacity": 255,
  5115. "_color": {
  5116. "__type__": "cc.Color",
  5117. "r": 255,
  5118. "g": 255,
  5119. "b": 255,
  5120. "a": 255
  5121. },
  5122. "_contentSize": {
  5123. "__type__": "cc.Size",
  5124. "width": 343,
  5125. "height": 127
  5126. },
  5127. "_anchorPoint": {
  5128. "__type__": "cc.Vec2",
  5129. "x": 0.5,
  5130. "y": 0.5
  5131. },
  5132. "_trs": {
  5133. "__type__": "TypedArray",
  5134. "ctor": "Float64Array",
  5135. "array": [
  5136. 0,
  5137. -447.737,
  5138. 0,
  5139. 0,
  5140. 0,
  5141. 0,
  5142. 1,
  5143. 1,
  5144. 1,
  5145. 1
  5146. ]
  5147. },
  5148. "_eulerAngles": {
  5149. "__type__": "cc.Vec3",
  5150. "x": 0,
  5151. "y": 0,
  5152. "z": 0
  5153. },
  5154. "_skewX": 0,
  5155. "_skewY": 0,
  5156. "_is3DNode": false,
  5157. "_groupIndex": 0,
  5158. "groupIndex": 0,
  5159. "_id": ""
  5160. },
  5161. {
  5162. "__type__": "cc.Node",
  5163. "_name": "Background",
  5164. "_objFlags": 512,
  5165. "_parent": {
  5166. "__id__": 154
  5167. },
  5168. "_children": [],
  5169. "_active": true,
  5170. "_components": [
  5171. {
  5172. "__id__": 156
  5173. },
  5174. {
  5175. "__id__": 157
  5176. }
  5177. ],
  5178. "_prefab": {
  5179. "__id__": 158
  5180. },
  5181. "_opacity": 255,
  5182. "_color": {
  5183. "__type__": "cc.Color",
  5184. "r": 255,
  5185. "g": 255,
  5186. "b": 255,
  5187. "a": 255
  5188. },
  5189. "_contentSize": {
  5190. "__type__": "cc.Size",
  5191. "width": 343,
  5192. "height": 127
  5193. },
  5194. "_anchorPoint": {
  5195. "__type__": "cc.Vec2",
  5196. "x": 0.5,
  5197. "y": 0.5
  5198. },
  5199. "_trs": {
  5200. "__type__": "TypedArray",
  5201. "ctor": "Float64Array",
  5202. "array": [
  5203. 0,
  5204. 0,
  5205. 0,
  5206. 0,
  5207. 0,
  5208. 0,
  5209. 1,
  5210. 1,
  5211. 1,
  5212. 0
  5213. ]
  5214. },
  5215. "_eulerAngles": {
  5216. "__type__": "cc.Vec3",
  5217. "x": 0,
  5218. "y": 0,
  5219. "z": 0
  5220. },
  5221. "_skewX": 0,
  5222. "_skewY": 0,
  5223. "_is3DNode": false,
  5224. "_groupIndex": 0,
  5225. "groupIndex": 0,
  5226. "_id": ""
  5227. },
  5228. {
  5229. "__type__": "cc.Sprite",
  5230. "_name": "",
  5231. "_objFlags": 0,
  5232. "node": {
  5233. "__id__": 155
  5234. },
  5235. "_enabled": true,
  5236. "_materials": [
  5237. {
  5238. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5239. }
  5240. ],
  5241. "_srcBlendFactor": 770,
  5242. "_dstBlendFactor": 771,
  5243. "_spriteFrame": {
  5244. "__uuid__": "af1f5888-985e-490b-9942-6d933bb8f95f"
  5245. },
  5246. "_type": 1,
  5247. "_sizeMode": 0,
  5248. "_fillType": 0,
  5249. "_fillCenter": {
  5250. "__type__": "cc.Vec2",
  5251. "x": 0,
  5252. "y": 0
  5253. },
  5254. "_fillStart": 0,
  5255. "_fillRange": 0,
  5256. "_isTrimmedMode": true,
  5257. "_atlas": null,
  5258. "_id": ""
  5259. },
  5260. {
  5261. "__type__": "cc.Widget",
  5262. "_name": "",
  5263. "_objFlags": 0,
  5264. "node": {
  5265. "__id__": 155
  5266. },
  5267. "_enabled": true,
  5268. "alignMode": 0,
  5269. "_target": null,
  5270. "_alignFlags": 45,
  5271. "_left": 0,
  5272. "_right": 0,
  5273. "_top": 0,
  5274. "_bottom": 0,
  5275. "_verticalCenter": 0,
  5276. "_horizontalCenter": 0,
  5277. "_isAbsLeft": true,
  5278. "_isAbsRight": true,
  5279. "_isAbsTop": true,
  5280. "_isAbsBottom": true,
  5281. "_isAbsHorizontalCenter": true,
  5282. "_isAbsVerticalCenter": true,
  5283. "_originalWidth": 100,
  5284. "_originalHeight": 40,
  5285. "_id": ""
  5286. },
  5287. {
  5288. "__type__": "cc.PrefabInfo",
  5289. "root": {
  5290. "__id__": 1
  5291. },
  5292. "asset": {
  5293. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  5294. },
  5295. "fileId": "36KWQOk6xO+7jMtzPQhVlV",
  5296. "sync": false
  5297. },
  5298. {
  5299. "__type__": "cc.Button",
  5300. "_name": "",
  5301. "_objFlags": 0,
  5302. "node": {
  5303. "__id__": 154
  5304. },
  5305. "_enabled": true,
  5306. "_normalMaterial": null,
  5307. "_grayMaterial": null,
  5308. "duration": 0.1,
  5309. "zoomScale": 1.2,
  5310. "clickEvents": [
  5311. {
  5312. "__id__": 160
  5313. }
  5314. ],
  5315. "_N$interactable": true,
  5316. "_N$enableAutoGrayEffect": false,
  5317. "_N$transition": 3,
  5318. "transition": 3,
  5319. "_N$normalColor": {
  5320. "__type__": "cc.Color",
  5321. "r": 230,
  5322. "g": 230,
  5323. "b": 230,
  5324. "a": 255
  5325. },
  5326. "_N$pressedColor": {
  5327. "__type__": "cc.Color",
  5328. "r": 200,
  5329. "g": 200,
  5330. "b": 200,
  5331. "a": 255
  5332. },
  5333. "pressedColor": {
  5334. "__type__": "cc.Color",
  5335. "r": 200,
  5336. "g": 200,
  5337. "b": 200,
  5338. "a": 255
  5339. },
  5340. "_N$hoverColor": {
  5341. "__type__": "cc.Color",
  5342. "r": 255,
  5343. "g": 255,
  5344. "b": 255,
  5345. "a": 255
  5346. },
  5347. "hoverColor": {
  5348. "__type__": "cc.Color",
  5349. "r": 255,
  5350. "g": 255,
  5351. "b": 255,
  5352. "a": 255
  5353. },
  5354. "_N$disabledColor": {
  5355. "__type__": "cc.Color",
  5356. "r": 120,
  5357. "g": 120,
  5358. "b": 120,
  5359. "a": 200
  5360. },
  5361. "_N$normalSprite": {
  5362. "__uuid__": "af1f5888-985e-490b-9942-6d933bb8f95f"
  5363. },
  5364. "_N$pressedSprite": {
  5365. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5366. },
  5367. "pressedSprite": {
  5368. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5369. },
  5370. "_N$hoverSprite": {
  5371. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5372. },
  5373. "hoverSprite": {
  5374. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5375. },
  5376. "_N$disabledSprite": {
  5377. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5378. },
  5379. "_N$target": {
  5380. "__id__": 155
  5381. },
  5382. "_id": ""
  5383. },
  5384. {
  5385. "__type__": "cc.ClickEvent",
  5386. "target": {
  5387. "__id__": 1
  5388. },
  5389. "component": "",
  5390. "_componentId": "8760dQYasROwLaLe1idTS07",
  5391. "handler": "onClickStart",
  5392. "customEventData": ""
  5393. },
  5394. {
  5395. "__type__": "cc.Animation",
  5396. "_name": "",
  5397. "_objFlags": 0,
  5398. "node": {
  5399. "__id__": 154
  5400. },
  5401. "_enabled": true,
  5402. "_defaultClip": {
  5403. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  5404. },
  5405. "_clips": [
  5406. {
  5407. "__uuid__": "1c7cfdae-7b6c-46a5-9085-2fa8aa684ac7"
  5408. }
  5409. ],
  5410. "playOnLoad": true,
  5411. "_id": ""
  5412. },
  5413. {
  5414. "__type__": "cc.PrefabInfo",
  5415. "root": {
  5416. "__id__": 1
  5417. },
  5418. "asset": {
  5419. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  5420. },
  5421. "fileId": "6a2pejykdHAYOVcXDQqEf8",
  5422. "sync": false
  5423. },
  5424. {
  5425. "__type__": "cc.Node",
  5426. "_objFlags": 0,
  5427. "_parent": {
  5428. "__id__": 1
  5429. },
  5430. "_prefab": {
  5431. "__id__": 164
  5432. },
  5433. "_name": "游戏核心",
  5434. "_active": false,
  5435. "_trs": {
  5436. "__type__": "TypedArray",
  5437. "ctor": "Float64Array",
  5438. "array": [
  5439. 0,
  5440. 0,
  5441. 0,
  5442. 0,
  5443. 0,
  5444. 0,
  5445. 1,
  5446. 1,
  5447. 1,
  5448. 1
  5449. ]
  5450. },
  5451. "_eulerAngles": {
  5452. "__type__": "cc.Vec3",
  5453. "x": 0,
  5454. "y": 0,
  5455. "z": 0
  5456. },
  5457. "_id": ""
  5458. },
  5459. {
  5460. "__type__": "cc.PrefabInfo",
  5461. "root": {
  5462. "__id__": 163
  5463. },
  5464. "asset": {
  5465. "__uuid__": "4c49ec9e-c64a-4921-84eb-9bdd737656e5"
  5466. },
  5467. "fileId": "e5hWmozl9FkayM6W0woX8l",
  5468. "sync": true
  5469. },
  5470. {
  5471. "__type__": "8760dQYasROwLaLe1idTS07",
  5472. "_name": "",
  5473. "_objFlags": 0,
  5474. "node": {
  5475. "__id__": 1
  5476. },
  5477. "_enabled": true,
  5478. "node_gameplay": {
  5479. "__id__": 163
  5480. },
  5481. "node_btn": {
  5482. "__id__": 16
  5483. },
  5484. "img_head": {
  5485. "__id__": 112
  5486. },
  5487. "lbl_redMoney": {
  5488. "__id__": 139
  5489. },
  5490. "lbl_rmb": {
  5491. "__id__": 122
  5492. },
  5493. "btn_cashOutNormal": {
  5494. "__id__": 146
  5495. },
  5496. "btn_cashOutGold": {
  5497. "__id__": 129
  5498. },
  5499. "btn_getRed1": {
  5500. "__id__": 9
  5501. },
  5502. "btn_getRed2": {
  5503. "__id__": 11
  5504. },
  5505. "btn_getRed3": {
  5506. "__id__": 13
  5507. },
  5508. "btn_start": {
  5509. "__id__": 159
  5510. },
  5511. "icon_hb": {
  5512. "__id__": 142
  5513. },
  5514. "icon_zb": {
  5515. "__id__": 125
  5516. },
  5517. "_id": ""
  5518. },
  5519. {
  5520. "__type__": "cc.Widget",
  5521. "_name": "",
  5522. "_objFlags": 0,
  5523. "node": {
  5524. "__id__": 1
  5525. },
  5526. "_enabled": true,
  5527. "alignMode": 1,
  5528. "_target": null,
  5529. "_alignFlags": 45,
  5530. "_left": 0,
  5531. "_right": 0,
  5532. "_top": 0,
  5533. "_bottom": 0,
  5534. "_verticalCenter": 0,
  5535. "_horizontalCenter": 0,
  5536. "_isAbsLeft": true,
  5537. "_isAbsRight": true,
  5538. "_isAbsTop": true,
  5539. "_isAbsBottom": true,
  5540. "_isAbsHorizontalCenter": true,
  5541. "_isAbsVerticalCenter": true,
  5542. "_originalWidth": 750,
  5543. "_originalHeight": 1334,
  5544. "_id": ""
  5545. },
  5546. {
  5547. "__type__": "cc.PrefabInfo",
  5548. "root": {
  5549. "__id__": 1
  5550. },
  5551. "asset": {
  5552. "__uuid__": "b4dea4a9-29c8-46bc-a50d-5754afa7a2bd"
  5553. },
  5554. "fileId": "",
  5555. "sync": false
  5556. }
  5557. ]