redPacketWithdrawal.prefab 96 KB

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