game.scene 104 KB

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