game.prefab 98 KB

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