redPacketWithdrawal.prefab 96 KB

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