topMenu.prefab 97 KB

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