god_card_view.prefab 93 KB

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