setting.prefab 98 KB

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