game.prefab 98 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653
  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__": 270
  32. },
  33. {
  34. "__id__": 272
  35. },
  36. {
  37. "__id__": 274
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 276
  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": false,
  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": false,
  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": false,
  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": false,
  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": false,
  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": 311,
  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": false,
  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": 437,
  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": false,
  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": 563,
  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": false,
  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": 689,
  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": false,
  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": 815,
  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": false,
  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": 941,
  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": false,
  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": 1067,
  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": false,
  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": -8,
  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__": 259
  2266. },
  2267. {
  2268. "__id__": 261
  2269. },
  2270. {
  2271. "__id__": 263
  2272. },
  2273. {
  2274. "__id__": 265
  2275. },
  2276. {
  2277. "__id__": 267
  2278. }
  2279. ],
  2280. "_prefab": {
  2281. "__id__": 269
  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__": 110
  2326. },
  2327. {
  2328. "__id__": 120
  2329. },
  2330. {
  2331. "__id__": 130
  2332. },
  2333. {
  2334. "__id__": 140
  2335. },
  2336. {
  2337. "__id__": 150
  2338. },
  2339. {
  2340. "__id__": 160
  2341. },
  2342. {
  2343. "__id__": 170
  2344. },
  2345. {
  2346. "__id__": 180
  2347. },
  2348. {
  2349. "__id__": 190
  2350. },
  2351. {
  2352. "__id__": 200
  2353. },
  2354. {
  2355. "__id__": 210
  2356. },
  2357. {
  2358. "__id__": 220
  2359. },
  2360. {
  2361. "__id__": 228
  2362. },
  2363. {
  2364. "__id__": 236
  2365. },
  2366. {
  2367. "__id__": 242
  2368. },
  2369. {
  2370. "__id__": 248
  2371. }
  2372. ],
  2373. "_active": true,
  2374. "_components": [
  2375. {
  2376. "__id__": 254
  2377. },
  2378. {
  2379. "__id__": 256
  2380. }
  2381. ],
  2382. "_prefab": {
  2383. "__id__": 258
  2384. },
  2385. "_lpos": {
  2386. "__type__": "cc.Vec3",
  2387. "x": 0,
  2388. "y": 0,
  2389. "z": 0
  2390. },
  2391. "_lrot": {
  2392. "__type__": "cc.Quat",
  2393. "x": 0,
  2394. "y": 0,
  2395. "z": 0,
  2396. "w": 1
  2397. },
  2398. "_lscale": {
  2399. "__type__": "cc.Vec3",
  2400. "x": 1,
  2401. "y": 1,
  2402. "z": 1
  2403. },
  2404. "_mobility": 0,
  2405. "_layer": 33554432,
  2406. "_euler": {
  2407. "__type__": "cc.Vec3",
  2408. "x": 0,
  2409. "y": 0,
  2410. "z": 0
  2411. },
  2412. "_id": ""
  2413. },
  2414. {
  2415. "__type__": "cc.Node",
  2416. "_name": "item_0",
  2417. "_objFlags": 0,
  2418. "__editorExtras__": {},
  2419. "_parent": {
  2420. "__id__": 99
  2421. },
  2422. "_children": [],
  2423. "_active": true,
  2424. "_components": [
  2425. {
  2426. "__id__": 101
  2427. },
  2428. {
  2429. "__id__": 103
  2430. },
  2431. {
  2432. "__id__": 105
  2433. },
  2434. {
  2435. "__id__": 107
  2436. }
  2437. ],
  2438. "_prefab": {
  2439. "__id__": 109
  2440. },
  2441. "_lpos": {
  2442. "__type__": "cc.Vec3",
  2443. "x": -478.984,
  2444. "y": -263.274,
  2445. "z": 0
  2446. },
  2447. "_lrot": {
  2448. "__type__": "cc.Quat",
  2449. "x": 0,
  2450. "y": 0,
  2451. "z": 0,
  2452. "w": 1
  2453. },
  2454. "_lscale": {
  2455. "__type__": "cc.Vec3",
  2456. "x": 1,
  2457. "y": 1,
  2458. "z": 1
  2459. },
  2460. "_mobility": 0,
  2461. "_layer": 33554432,
  2462. "_euler": {
  2463. "__type__": "cc.Vec3",
  2464. "x": 0,
  2465. "y": 0,
  2466. "z": 0
  2467. },
  2468. "_id": ""
  2469. },
  2470. {
  2471. "__type__": "cc.UITransform",
  2472. "_name": "",
  2473. "_objFlags": 0,
  2474. "__editorExtras__": {},
  2475. "node": {
  2476. "__id__": 100
  2477. },
  2478. "_enabled": true,
  2479. "__prefab": {
  2480. "__id__": 102
  2481. },
  2482. "_contentSize": {
  2483. "__type__": "cc.Size",
  2484. "width": 200,
  2485. "height": 200
  2486. },
  2487. "_anchorPoint": {
  2488. "__type__": "cc.Vec2",
  2489. "x": 0.5,
  2490. "y": 0.5
  2491. },
  2492. "_id": ""
  2493. },
  2494. {
  2495. "__type__": "cc.CompPrefabInfo",
  2496. "fileId": "46DXwGrOVGW6diqz5PFHoH"
  2497. },
  2498. {
  2499. "__type__": "cc.Sprite",
  2500. "_name": "",
  2501. "_objFlags": 0,
  2502. "__editorExtras__": {},
  2503. "node": {
  2504. "__id__": 100
  2505. },
  2506. "_enabled": true,
  2507. "__prefab": {
  2508. "__id__": 104
  2509. },
  2510. "_customMaterial": null,
  2511. "_srcBlendFactor": 2,
  2512. "_dstBlendFactor": 4,
  2513. "_color": {
  2514. "__type__": "cc.Color",
  2515. "r": 255,
  2516. "g": 0,
  2517. "b": 0,
  2518. "a": 255
  2519. },
  2520. "_spriteFrame": {
  2521. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  2522. "__expectedType__": "cc.SpriteFrame"
  2523. },
  2524. "_type": 0,
  2525. "_fillType": 0,
  2526. "_sizeMode": 0,
  2527. "_fillCenter": {
  2528. "__type__": "cc.Vec2",
  2529. "x": 0,
  2530. "y": 0
  2531. },
  2532. "_fillStart": 0,
  2533. "_fillRange": 0,
  2534. "_isTrimmedMode": true,
  2535. "_useGrayscale": false,
  2536. "_atlas": null,
  2537. "_id": ""
  2538. },
  2539. {
  2540. "__type__": "cc.CompPrefabInfo",
  2541. "fileId": "80caQA5PZD1Iea29NWijCa"
  2542. },
  2543. {
  2544. "__type__": "cc.UIOpacity",
  2545. "_name": "",
  2546. "_objFlags": 0,
  2547. "__editorExtras__": {},
  2548. "node": {
  2549. "__id__": 100
  2550. },
  2551. "_enabled": true,
  2552. "__prefab": {
  2553. "__id__": 106
  2554. },
  2555. "_opacity": 0,
  2556. "_id": ""
  2557. },
  2558. {
  2559. "__type__": "cc.CompPrefabInfo",
  2560. "fileId": "9eOWswu7lHGoPFoLwYVGgU"
  2561. },
  2562. {
  2563. "__type__": "cc.BlockInputEvents",
  2564. "_name": "",
  2565. "_objFlags": 0,
  2566. "__editorExtras__": {},
  2567. "node": {
  2568. "__id__": 100
  2569. },
  2570. "_enabled": true,
  2571. "__prefab": {
  2572. "__id__": 108
  2573. },
  2574. "_id": ""
  2575. },
  2576. {
  2577. "__type__": "cc.CompPrefabInfo",
  2578. "fileId": "a61ZrsMYJPLbYU9WAdD2n0"
  2579. },
  2580. {
  2581. "__type__": "cc.PrefabInfo",
  2582. "root": {
  2583. "__id__": 1
  2584. },
  2585. "asset": {
  2586. "__id__": 0
  2587. },
  2588. "fileId": "7aSrKAPlNMd7xfnZFGfTaB",
  2589. "instance": null,
  2590. "targetOverrides": null,
  2591. "nestedPrefabInstanceRoots": null
  2592. },
  2593. {
  2594. "__type__": "cc.Node",
  2595. "_name": "item_1",
  2596. "_objFlags": 0,
  2597. "__editorExtras__": {},
  2598. "_parent": {
  2599. "__id__": 99
  2600. },
  2601. "_children": [],
  2602. "_active": true,
  2603. "_components": [
  2604. {
  2605. "__id__": 111
  2606. },
  2607. {
  2608. "__id__": 113
  2609. },
  2610. {
  2611. "__id__": 115
  2612. },
  2613. {
  2614. "__id__": 117
  2615. }
  2616. ],
  2617. "_prefab": {
  2618. "__id__": 119
  2619. },
  2620. "_lpos": {
  2621. "__type__": "cc.Vec3",
  2622. "x": -617.933,
  2623. "y": 66.393,
  2624. "z": 0
  2625. },
  2626. "_lrot": {
  2627. "__type__": "cc.Quat",
  2628. "x": 0,
  2629. "y": 0,
  2630. "z": 0,
  2631. "w": 1
  2632. },
  2633. "_lscale": {
  2634. "__type__": "cc.Vec3",
  2635. "x": 0.8,
  2636. "y": 0.8,
  2637. "z": 1
  2638. },
  2639. "_mobility": 0,
  2640. "_layer": 33554432,
  2641. "_euler": {
  2642. "__type__": "cc.Vec3",
  2643. "x": 0,
  2644. "y": 0,
  2645. "z": 0
  2646. },
  2647. "_id": ""
  2648. },
  2649. {
  2650. "__type__": "cc.UITransform",
  2651. "_name": "",
  2652. "_objFlags": 0,
  2653. "__editorExtras__": {},
  2654. "node": {
  2655. "__id__": 110
  2656. },
  2657. "_enabled": true,
  2658. "__prefab": {
  2659. "__id__": 112
  2660. },
  2661. "_contentSize": {
  2662. "__type__": "cc.Size",
  2663. "width": 100,
  2664. "height": 100
  2665. },
  2666. "_anchorPoint": {
  2667. "__type__": "cc.Vec2",
  2668. "x": 0.5,
  2669. "y": 0.5
  2670. },
  2671. "_id": ""
  2672. },
  2673. {
  2674. "__type__": "cc.CompPrefabInfo",
  2675. "fileId": "4ddop9Y2BOwaMYafgpzY6E"
  2676. },
  2677. {
  2678. "__type__": "cc.Sprite",
  2679. "_name": "",
  2680. "_objFlags": 0,
  2681. "__editorExtras__": {},
  2682. "node": {
  2683. "__id__": 110
  2684. },
  2685. "_enabled": true,
  2686. "__prefab": {
  2687. "__id__": 114
  2688. },
  2689. "_customMaterial": null,
  2690. "_srcBlendFactor": 2,
  2691. "_dstBlendFactor": 4,
  2692. "_color": {
  2693. "__type__": "cc.Color",
  2694. "r": 255,
  2695. "g": 0,
  2696. "b": 0,
  2697. "a": 255
  2698. },
  2699. "_spriteFrame": {
  2700. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  2701. "__expectedType__": "cc.SpriteFrame"
  2702. },
  2703. "_type": 0,
  2704. "_fillType": 0,
  2705. "_sizeMode": 0,
  2706. "_fillCenter": {
  2707. "__type__": "cc.Vec2",
  2708. "x": 0,
  2709. "y": 0
  2710. },
  2711. "_fillStart": 0,
  2712. "_fillRange": 0,
  2713. "_isTrimmedMode": true,
  2714. "_useGrayscale": false,
  2715. "_atlas": null,
  2716. "_id": ""
  2717. },
  2718. {
  2719. "__type__": "cc.CompPrefabInfo",
  2720. "fileId": "5f3DYbkv9ElKgx7vDrpR/F"
  2721. },
  2722. {
  2723. "__type__": "cc.UIOpacity",
  2724. "_name": "",
  2725. "_objFlags": 0,
  2726. "__editorExtras__": {},
  2727. "node": {
  2728. "__id__": 110
  2729. },
  2730. "_enabled": true,
  2731. "__prefab": {
  2732. "__id__": 116
  2733. },
  2734. "_opacity": 0,
  2735. "_id": ""
  2736. },
  2737. {
  2738. "__type__": "cc.CompPrefabInfo",
  2739. "fileId": "16Xj9wyPVF3rd4BRhqJpwC"
  2740. },
  2741. {
  2742. "__type__": "cc.BlockInputEvents",
  2743. "_name": "",
  2744. "_objFlags": 0,
  2745. "__editorExtras__": {},
  2746. "node": {
  2747. "__id__": 110
  2748. },
  2749. "_enabled": true,
  2750. "__prefab": {
  2751. "__id__": 118
  2752. },
  2753. "_id": ""
  2754. },
  2755. {
  2756. "__type__": "cc.CompPrefabInfo",
  2757. "fileId": "df/oe9TrVHC6uP8wIg3gyc"
  2758. },
  2759. {
  2760. "__type__": "cc.PrefabInfo",
  2761. "root": {
  2762. "__id__": 1
  2763. },
  2764. "asset": {
  2765. "__id__": 0
  2766. },
  2767. "fileId": "36E+CMsJhFJrEdWqniP+nT",
  2768. "instance": null,
  2769. "targetOverrides": null,
  2770. "nestedPrefabInstanceRoots": null
  2771. },
  2772. {
  2773. "__type__": "cc.Node",
  2774. "_name": "item_2",
  2775. "_objFlags": 0,
  2776. "__editorExtras__": {},
  2777. "_parent": {
  2778. "__id__": 99
  2779. },
  2780. "_children": [],
  2781. "_active": true,
  2782. "_components": [
  2783. {
  2784. "__id__": 121
  2785. },
  2786. {
  2787. "__id__": 123
  2788. },
  2789. {
  2790. "__id__": 125
  2791. },
  2792. {
  2793. "__id__": 127
  2794. }
  2795. ],
  2796. "_prefab": {
  2797. "__id__": 129
  2798. },
  2799. "_lpos": {
  2800. "__type__": "cc.Vec3",
  2801. "x": -440.633,
  2802. "y": 444.455,
  2803. "z": 0
  2804. },
  2805. "_lrot": {
  2806. "__type__": "cc.Quat",
  2807. "x": 0,
  2808. "y": 0,
  2809. "z": 0,
  2810. "w": 1
  2811. },
  2812. "_lscale": {
  2813. "__type__": "cc.Vec3",
  2814. "x": 3,
  2815. "y": 3,
  2816. "z": 1
  2817. },
  2818. "_mobility": 0,
  2819. "_layer": 33554432,
  2820. "_euler": {
  2821. "__type__": "cc.Vec3",
  2822. "x": 0,
  2823. "y": 0,
  2824. "z": 0
  2825. },
  2826. "_id": ""
  2827. },
  2828. {
  2829. "__type__": "cc.UITransform",
  2830. "_name": "",
  2831. "_objFlags": 0,
  2832. "__editorExtras__": {},
  2833. "node": {
  2834. "__id__": 120
  2835. },
  2836. "_enabled": true,
  2837. "__prefab": {
  2838. "__id__": 122
  2839. },
  2840. "_contentSize": {
  2841. "__type__": "cc.Size",
  2842. "width": 100,
  2843. "height": 100
  2844. },
  2845. "_anchorPoint": {
  2846. "__type__": "cc.Vec2",
  2847. "x": 0.5,
  2848. "y": 0.5
  2849. },
  2850. "_id": ""
  2851. },
  2852. {
  2853. "__type__": "cc.CompPrefabInfo",
  2854. "fileId": "dfV043nPdNFL1bEEy8Jvq4"
  2855. },
  2856. {
  2857. "__type__": "cc.Sprite",
  2858. "_name": "",
  2859. "_objFlags": 0,
  2860. "__editorExtras__": {},
  2861. "node": {
  2862. "__id__": 120
  2863. },
  2864. "_enabled": true,
  2865. "__prefab": {
  2866. "__id__": 124
  2867. },
  2868. "_customMaterial": null,
  2869. "_srcBlendFactor": 2,
  2870. "_dstBlendFactor": 4,
  2871. "_color": {
  2872. "__type__": "cc.Color",
  2873. "r": 255,
  2874. "g": 0,
  2875. "b": 0,
  2876. "a": 255
  2877. },
  2878. "_spriteFrame": {
  2879. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  2880. "__expectedType__": "cc.SpriteFrame"
  2881. },
  2882. "_type": 0,
  2883. "_fillType": 0,
  2884. "_sizeMode": 0,
  2885. "_fillCenter": {
  2886. "__type__": "cc.Vec2",
  2887. "x": 0,
  2888. "y": 0
  2889. },
  2890. "_fillStart": 0,
  2891. "_fillRange": 0,
  2892. "_isTrimmedMode": true,
  2893. "_useGrayscale": false,
  2894. "_atlas": null,
  2895. "_id": ""
  2896. },
  2897. {
  2898. "__type__": "cc.CompPrefabInfo",
  2899. "fileId": "9bHeZEuSVFpIAQh3J73oII"
  2900. },
  2901. {
  2902. "__type__": "cc.UIOpacity",
  2903. "_name": "",
  2904. "_objFlags": 0,
  2905. "__editorExtras__": {},
  2906. "node": {
  2907. "__id__": 120
  2908. },
  2909. "_enabled": true,
  2910. "__prefab": {
  2911. "__id__": 126
  2912. },
  2913. "_opacity": 0,
  2914. "_id": ""
  2915. },
  2916. {
  2917. "__type__": "cc.CompPrefabInfo",
  2918. "fileId": "ffi4QqboRMrYu3L6tOlg1Q"
  2919. },
  2920. {
  2921. "__type__": "cc.BlockInputEvents",
  2922. "_name": "",
  2923. "_objFlags": 0,
  2924. "__editorExtras__": {},
  2925. "node": {
  2926. "__id__": 120
  2927. },
  2928. "_enabled": true,
  2929. "__prefab": {
  2930. "__id__": 128
  2931. },
  2932. "_id": ""
  2933. },
  2934. {
  2935. "__type__": "cc.CompPrefabInfo",
  2936. "fileId": "f0KIwkgMlK2LwTR89m+vSq"
  2937. },
  2938. {
  2939. "__type__": "cc.PrefabInfo",
  2940. "root": {
  2941. "__id__": 1
  2942. },
  2943. "asset": {
  2944. "__id__": 0
  2945. },
  2946. "fileId": "73TZkTxMJH07dlKvD/S4HV",
  2947. "instance": null,
  2948. "targetOverrides": null,
  2949. "nestedPrefabInstanceRoots": null
  2950. },
  2951. {
  2952. "__type__": "cc.Node",
  2953. "_name": "item_3",
  2954. "_objFlags": 0,
  2955. "__editorExtras__": {},
  2956. "_parent": {
  2957. "__id__": 99
  2958. },
  2959. "_children": [],
  2960. "_active": true,
  2961. "_components": [
  2962. {
  2963. "__id__": 131
  2964. },
  2965. {
  2966. "__id__": 133
  2967. },
  2968. {
  2969. "__id__": 135
  2970. },
  2971. {
  2972. "__id__": 137
  2973. }
  2974. ],
  2975. "_prefab": {
  2976. "__id__": 139
  2977. },
  2978. "_lpos": {
  2979. "__type__": "cc.Vec3",
  2980. "x": -737.501,
  2981. "y": 360.95,
  2982. "z": 0
  2983. },
  2984. "_lrot": {
  2985. "__type__": "cc.Quat",
  2986. "x": 0,
  2987. "y": 0,
  2988. "z": 0,
  2989. "w": 1
  2990. },
  2991. "_lscale": {
  2992. "__type__": "cc.Vec3",
  2993. "x": 2,
  2994. "y": 2,
  2995. "z": 1
  2996. },
  2997. "_mobility": 0,
  2998. "_layer": 33554432,
  2999. "_euler": {
  3000. "__type__": "cc.Vec3",
  3001. "x": 0,
  3002. "y": 0,
  3003. "z": 0
  3004. },
  3005. "_id": ""
  3006. },
  3007. {
  3008. "__type__": "cc.UITransform",
  3009. "_name": "",
  3010. "_objFlags": 0,
  3011. "__editorExtras__": {},
  3012. "node": {
  3013. "__id__": 130
  3014. },
  3015. "_enabled": true,
  3016. "__prefab": {
  3017. "__id__": 132
  3018. },
  3019. "_contentSize": {
  3020. "__type__": "cc.Size",
  3021. "width": 100,
  3022. "height": 100
  3023. },
  3024. "_anchorPoint": {
  3025. "__type__": "cc.Vec2",
  3026. "x": 0.5,
  3027. "y": 0.5
  3028. },
  3029. "_id": ""
  3030. },
  3031. {
  3032. "__type__": "cc.CompPrefabInfo",
  3033. "fileId": "ccufRIOYJBY7/yYhDbfSd0"
  3034. },
  3035. {
  3036. "__type__": "cc.Sprite",
  3037. "_name": "",
  3038. "_objFlags": 0,
  3039. "__editorExtras__": {},
  3040. "node": {
  3041. "__id__": 130
  3042. },
  3043. "_enabled": true,
  3044. "__prefab": {
  3045. "__id__": 134
  3046. },
  3047. "_customMaterial": null,
  3048. "_srcBlendFactor": 2,
  3049. "_dstBlendFactor": 4,
  3050. "_color": {
  3051. "__type__": "cc.Color",
  3052. "r": 255,
  3053. "g": 0,
  3054. "b": 0,
  3055. "a": 255
  3056. },
  3057. "_spriteFrame": {
  3058. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3059. "__expectedType__": "cc.SpriteFrame"
  3060. },
  3061. "_type": 0,
  3062. "_fillType": 0,
  3063. "_sizeMode": 0,
  3064. "_fillCenter": {
  3065. "__type__": "cc.Vec2",
  3066. "x": 0,
  3067. "y": 0
  3068. },
  3069. "_fillStart": 0,
  3070. "_fillRange": 0,
  3071. "_isTrimmedMode": true,
  3072. "_useGrayscale": false,
  3073. "_atlas": null,
  3074. "_id": ""
  3075. },
  3076. {
  3077. "__type__": "cc.CompPrefabInfo",
  3078. "fileId": "53c/rVLUBJSp+rzzf/KmrM"
  3079. },
  3080. {
  3081. "__type__": "cc.UIOpacity",
  3082. "_name": "",
  3083. "_objFlags": 0,
  3084. "__editorExtras__": {},
  3085. "node": {
  3086. "__id__": 130
  3087. },
  3088. "_enabled": true,
  3089. "__prefab": {
  3090. "__id__": 136
  3091. },
  3092. "_opacity": 0,
  3093. "_id": ""
  3094. },
  3095. {
  3096. "__type__": "cc.CompPrefabInfo",
  3097. "fileId": "31JFqYPmFEW5sWc5zJEu+/"
  3098. },
  3099. {
  3100. "__type__": "cc.BlockInputEvents",
  3101. "_name": "",
  3102. "_objFlags": 0,
  3103. "__editorExtras__": {},
  3104. "node": {
  3105. "__id__": 130
  3106. },
  3107. "_enabled": true,
  3108. "__prefab": {
  3109. "__id__": 138
  3110. },
  3111. "_id": ""
  3112. },
  3113. {
  3114. "__type__": "cc.CompPrefabInfo",
  3115. "fileId": "cekJC+BNZOBZPEtTSpsWhK"
  3116. },
  3117. {
  3118. "__type__": "cc.PrefabInfo",
  3119. "root": {
  3120. "__id__": 1
  3121. },
  3122. "asset": {
  3123. "__id__": 0
  3124. },
  3125. "fileId": "764BnG5Y1CK4LBlg4EUdtH",
  3126. "instance": null,
  3127. "targetOverrides": null,
  3128. "nestedPrefabInstanceRoots": null
  3129. },
  3130. {
  3131. "__type__": "cc.Node",
  3132. "_name": "item_4",
  3133. "_objFlags": 0,
  3134. "__editorExtras__": {},
  3135. "_parent": {
  3136. "__id__": 99
  3137. },
  3138. "_children": [],
  3139. "_active": true,
  3140. "_components": [
  3141. {
  3142. "__id__": 141
  3143. },
  3144. {
  3145. "__id__": 143
  3146. },
  3147. {
  3148. "__id__": 145
  3149. },
  3150. {
  3151. "__id__": 147
  3152. }
  3153. ],
  3154. "_prefab": {
  3155. "__id__": 149
  3156. },
  3157. "_lpos": {
  3158. "__type__": "cc.Vec3",
  3159. "x": 806.262,
  3160. "y": 600.961,
  3161. "z": 0
  3162. },
  3163. "_lrot": {
  3164. "__type__": "cc.Quat",
  3165. "x": 0,
  3166. "y": 0,
  3167. "z": 0,
  3168. "w": 1
  3169. },
  3170. "_lscale": {
  3171. "__type__": "cc.Vec3",
  3172. "x": 1,
  3173. "y": 1,
  3174. "z": 1
  3175. },
  3176. "_mobility": 0,
  3177. "_layer": 33554432,
  3178. "_euler": {
  3179. "__type__": "cc.Vec3",
  3180. "x": 0,
  3181. "y": 0,
  3182. "z": 0
  3183. },
  3184. "_id": ""
  3185. },
  3186. {
  3187. "__type__": "cc.UITransform",
  3188. "_name": "",
  3189. "_objFlags": 0,
  3190. "__editorExtras__": {},
  3191. "node": {
  3192. "__id__": 140
  3193. },
  3194. "_enabled": true,
  3195. "__prefab": {
  3196. "__id__": 142
  3197. },
  3198. "_contentSize": {
  3199. "__type__": "cc.Size",
  3200. "width": 100,
  3201. "height": 100
  3202. },
  3203. "_anchorPoint": {
  3204. "__type__": "cc.Vec2",
  3205. "x": 0.5,
  3206. "y": 0.5
  3207. },
  3208. "_id": ""
  3209. },
  3210. {
  3211. "__type__": "cc.CompPrefabInfo",
  3212. "fileId": "78ocL1HcVBYYyl+nx8wOPz"
  3213. },
  3214. {
  3215. "__type__": "cc.Sprite",
  3216. "_name": "",
  3217. "_objFlags": 0,
  3218. "__editorExtras__": {},
  3219. "node": {
  3220. "__id__": 140
  3221. },
  3222. "_enabled": true,
  3223. "__prefab": {
  3224. "__id__": 144
  3225. },
  3226. "_customMaterial": null,
  3227. "_srcBlendFactor": 2,
  3228. "_dstBlendFactor": 4,
  3229. "_color": {
  3230. "__type__": "cc.Color",
  3231. "r": 255,
  3232. "g": 0,
  3233. "b": 0,
  3234. "a": 255
  3235. },
  3236. "_spriteFrame": {
  3237. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3238. "__expectedType__": "cc.SpriteFrame"
  3239. },
  3240. "_type": 0,
  3241. "_fillType": 0,
  3242. "_sizeMode": 0,
  3243. "_fillCenter": {
  3244. "__type__": "cc.Vec2",
  3245. "x": 0,
  3246. "y": 0
  3247. },
  3248. "_fillStart": 0,
  3249. "_fillRange": 0,
  3250. "_isTrimmedMode": true,
  3251. "_useGrayscale": false,
  3252. "_atlas": null,
  3253. "_id": ""
  3254. },
  3255. {
  3256. "__type__": "cc.CompPrefabInfo",
  3257. "fileId": "08l7fmCAtBpKSSXoBqMaRd"
  3258. },
  3259. {
  3260. "__type__": "cc.UIOpacity",
  3261. "_name": "",
  3262. "_objFlags": 0,
  3263. "__editorExtras__": {},
  3264. "node": {
  3265. "__id__": 140
  3266. },
  3267. "_enabled": true,
  3268. "__prefab": {
  3269. "__id__": 146
  3270. },
  3271. "_opacity": 0,
  3272. "_id": ""
  3273. },
  3274. {
  3275. "__type__": "cc.CompPrefabInfo",
  3276. "fileId": "2237RyhJ5A+4QRqXoJK1Uj"
  3277. },
  3278. {
  3279. "__type__": "cc.BlockInputEvents",
  3280. "_name": "",
  3281. "_objFlags": 0,
  3282. "__editorExtras__": {},
  3283. "node": {
  3284. "__id__": 140
  3285. },
  3286. "_enabled": true,
  3287. "__prefab": {
  3288. "__id__": 148
  3289. },
  3290. "_id": ""
  3291. },
  3292. {
  3293. "__type__": "cc.CompPrefabInfo",
  3294. "fileId": "5cPy1qiRRDHIy0SKkBxFDM"
  3295. },
  3296. {
  3297. "__type__": "cc.PrefabInfo",
  3298. "root": {
  3299. "__id__": 1
  3300. },
  3301. "asset": {
  3302. "__id__": 0
  3303. },
  3304. "fileId": "41z4D/ywJC9oPkijSF3Ku2",
  3305. "instance": null,
  3306. "targetOverrides": null,
  3307. "nestedPrefabInstanceRoots": null
  3308. },
  3309. {
  3310. "__type__": "cc.Node",
  3311. "_name": "item_5",
  3312. "_objFlags": 0,
  3313. "__editorExtras__": {},
  3314. "_parent": {
  3315. "__id__": 99
  3316. },
  3317. "_children": [],
  3318. "_active": true,
  3319. "_components": [
  3320. {
  3321. "__id__": 151
  3322. },
  3323. {
  3324. "__id__": 153
  3325. },
  3326. {
  3327. "__id__": 155
  3328. },
  3329. {
  3330. "__id__": 157
  3331. }
  3332. ],
  3333. "_prefab": {
  3334. "__id__": 159
  3335. },
  3336. "_lpos": {
  3337. "__type__": "cc.Vec3",
  3338. "x": 58.526,
  3339. "y": 386.773,
  3340. "z": 0
  3341. },
  3342. "_lrot": {
  3343. "__type__": "cc.Quat",
  3344. "x": 0,
  3345. "y": 0,
  3346. "z": 0,
  3347. "w": 1
  3348. },
  3349. "_lscale": {
  3350. "__type__": "cc.Vec3",
  3351. "x": 0.5,
  3352. "y": 0.5,
  3353. "z": 1
  3354. },
  3355. "_mobility": 0,
  3356. "_layer": 33554432,
  3357. "_euler": {
  3358. "__type__": "cc.Vec3",
  3359. "x": 0,
  3360. "y": 0,
  3361. "z": 0
  3362. },
  3363. "_id": ""
  3364. },
  3365. {
  3366. "__type__": "cc.UITransform",
  3367. "_name": "",
  3368. "_objFlags": 0,
  3369. "__editorExtras__": {},
  3370. "node": {
  3371. "__id__": 150
  3372. },
  3373. "_enabled": true,
  3374. "__prefab": {
  3375. "__id__": 152
  3376. },
  3377. "_contentSize": {
  3378. "__type__": "cc.Size",
  3379. "width": 100,
  3380. "height": 100
  3381. },
  3382. "_anchorPoint": {
  3383. "__type__": "cc.Vec2",
  3384. "x": 0.5,
  3385. "y": 0.5
  3386. },
  3387. "_id": ""
  3388. },
  3389. {
  3390. "__type__": "cc.CompPrefabInfo",
  3391. "fileId": "92S0iDv35FNK/CxAdhw0ZM"
  3392. },
  3393. {
  3394. "__type__": "cc.Sprite",
  3395. "_name": "",
  3396. "_objFlags": 0,
  3397. "__editorExtras__": {},
  3398. "node": {
  3399. "__id__": 150
  3400. },
  3401. "_enabled": true,
  3402. "__prefab": {
  3403. "__id__": 154
  3404. },
  3405. "_customMaterial": null,
  3406. "_srcBlendFactor": 2,
  3407. "_dstBlendFactor": 4,
  3408. "_color": {
  3409. "__type__": "cc.Color",
  3410. "r": 255,
  3411. "g": 0,
  3412. "b": 0,
  3413. "a": 255
  3414. },
  3415. "_spriteFrame": {
  3416. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3417. "__expectedType__": "cc.SpriteFrame"
  3418. },
  3419. "_type": 0,
  3420. "_fillType": 0,
  3421. "_sizeMode": 0,
  3422. "_fillCenter": {
  3423. "__type__": "cc.Vec2",
  3424. "x": 0,
  3425. "y": 0
  3426. },
  3427. "_fillStart": 0,
  3428. "_fillRange": 0,
  3429. "_isTrimmedMode": true,
  3430. "_useGrayscale": false,
  3431. "_atlas": null,
  3432. "_id": ""
  3433. },
  3434. {
  3435. "__type__": "cc.CompPrefabInfo",
  3436. "fileId": "1a6Zos6OpDSp13TPRAOhDh"
  3437. },
  3438. {
  3439. "__type__": "cc.UIOpacity",
  3440. "_name": "",
  3441. "_objFlags": 0,
  3442. "__editorExtras__": {},
  3443. "node": {
  3444. "__id__": 150
  3445. },
  3446. "_enabled": true,
  3447. "__prefab": {
  3448. "__id__": 156
  3449. },
  3450. "_opacity": 0,
  3451. "_id": ""
  3452. },
  3453. {
  3454. "__type__": "cc.CompPrefabInfo",
  3455. "fileId": "6fbfBP8pdBbJQ2rPCoXBOV"
  3456. },
  3457. {
  3458. "__type__": "cc.BlockInputEvents",
  3459. "_name": "",
  3460. "_objFlags": 0,
  3461. "__editorExtras__": {},
  3462. "node": {
  3463. "__id__": 150
  3464. },
  3465. "_enabled": true,
  3466. "__prefab": {
  3467. "__id__": 158
  3468. },
  3469. "_id": ""
  3470. },
  3471. {
  3472. "__type__": "cc.CompPrefabInfo",
  3473. "fileId": "7eE6ZQ371CS4jXRTyYWPfs"
  3474. },
  3475. {
  3476. "__type__": "cc.PrefabInfo",
  3477. "root": {
  3478. "__id__": 1
  3479. },
  3480. "asset": {
  3481. "__id__": 0
  3482. },
  3483. "fileId": "b4znckzatDqpXJD1kfsEBa",
  3484. "instance": null,
  3485. "targetOverrides": null,
  3486. "nestedPrefabInstanceRoots": null
  3487. },
  3488. {
  3489. "__type__": "cc.Node",
  3490. "_name": "item_6",
  3491. "_objFlags": 0,
  3492. "__editorExtras__": {},
  3493. "_parent": {
  3494. "__id__": 99
  3495. },
  3496. "_children": [],
  3497. "_active": true,
  3498. "_components": [
  3499. {
  3500. "__id__": 161
  3501. },
  3502. {
  3503. "__id__": 163
  3504. },
  3505. {
  3506. "__id__": 165
  3507. },
  3508. {
  3509. "__id__": 167
  3510. }
  3511. ],
  3512. "_prefab": {
  3513. "__id__": 169
  3514. },
  3515. "_lpos": {
  3516. "__type__": "cc.Vec3",
  3517. "x": -33.004,
  3518. "y": 284.228,
  3519. "z": 0
  3520. },
  3521. "_lrot": {
  3522. "__type__": "cc.Quat",
  3523. "x": 0,
  3524. "y": 0,
  3525. "z": 0,
  3526. "w": 1
  3527. },
  3528. "_lscale": {
  3529. "__type__": "cc.Vec3",
  3530. "x": 4,
  3531. "y": 2,
  3532. "z": 1
  3533. },
  3534. "_mobility": 0,
  3535. "_layer": 33554432,
  3536. "_euler": {
  3537. "__type__": "cc.Vec3",
  3538. "x": 0,
  3539. "y": 0,
  3540. "z": 0
  3541. },
  3542. "_id": ""
  3543. },
  3544. {
  3545. "__type__": "cc.UITransform",
  3546. "_name": "",
  3547. "_objFlags": 0,
  3548. "__editorExtras__": {},
  3549. "node": {
  3550. "__id__": 160
  3551. },
  3552. "_enabled": true,
  3553. "__prefab": {
  3554. "__id__": 162
  3555. },
  3556. "_contentSize": {
  3557. "__type__": "cc.Size",
  3558. "width": 100,
  3559. "height": 100
  3560. },
  3561. "_anchorPoint": {
  3562. "__type__": "cc.Vec2",
  3563. "x": 0.5,
  3564. "y": 0.5
  3565. },
  3566. "_id": ""
  3567. },
  3568. {
  3569. "__type__": "cc.CompPrefabInfo",
  3570. "fileId": "734sDBuKZEvYXlj+r1vwh1"
  3571. },
  3572. {
  3573. "__type__": "cc.Sprite",
  3574. "_name": "",
  3575. "_objFlags": 0,
  3576. "__editorExtras__": {},
  3577. "node": {
  3578. "__id__": 160
  3579. },
  3580. "_enabled": true,
  3581. "__prefab": {
  3582. "__id__": 164
  3583. },
  3584. "_customMaterial": null,
  3585. "_srcBlendFactor": 2,
  3586. "_dstBlendFactor": 4,
  3587. "_color": {
  3588. "__type__": "cc.Color",
  3589. "r": 255,
  3590. "g": 0,
  3591. "b": 0,
  3592. "a": 255
  3593. },
  3594. "_spriteFrame": {
  3595. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3596. "__expectedType__": "cc.SpriteFrame"
  3597. },
  3598. "_type": 0,
  3599. "_fillType": 0,
  3600. "_sizeMode": 0,
  3601. "_fillCenter": {
  3602. "__type__": "cc.Vec2",
  3603. "x": 0,
  3604. "y": 0
  3605. },
  3606. "_fillStart": 0,
  3607. "_fillRange": 0,
  3608. "_isTrimmedMode": true,
  3609. "_useGrayscale": false,
  3610. "_atlas": null,
  3611. "_id": ""
  3612. },
  3613. {
  3614. "__type__": "cc.CompPrefabInfo",
  3615. "fileId": "53fL0t+zVBjolu9uKrgOTo"
  3616. },
  3617. {
  3618. "__type__": "cc.UIOpacity",
  3619. "_name": "",
  3620. "_objFlags": 0,
  3621. "__editorExtras__": {},
  3622. "node": {
  3623. "__id__": 160
  3624. },
  3625. "_enabled": true,
  3626. "__prefab": {
  3627. "__id__": 166
  3628. },
  3629. "_opacity": 0,
  3630. "_id": ""
  3631. },
  3632. {
  3633. "__type__": "cc.CompPrefabInfo",
  3634. "fileId": "85vofCZN1CnagR7Vimf/fm"
  3635. },
  3636. {
  3637. "__type__": "cc.BlockInputEvents",
  3638. "_name": "",
  3639. "_objFlags": 0,
  3640. "__editorExtras__": {},
  3641. "node": {
  3642. "__id__": 160
  3643. },
  3644. "_enabled": true,
  3645. "__prefab": {
  3646. "__id__": 168
  3647. },
  3648. "_id": ""
  3649. },
  3650. {
  3651. "__type__": "cc.CompPrefabInfo",
  3652. "fileId": "9etZFKlDxDg5j7G7+wZ0b8"
  3653. },
  3654. {
  3655. "__type__": "cc.PrefabInfo",
  3656. "root": {
  3657. "__id__": 1
  3658. },
  3659. "asset": {
  3660. "__id__": 0
  3661. },
  3662. "fileId": "16L0U74X1KjauIFD3w1FBV",
  3663. "instance": null,
  3664. "targetOverrides": null,
  3665. "nestedPrefabInstanceRoots": null
  3666. },
  3667. {
  3668. "__type__": "cc.Node",
  3669. "_name": "item_7",
  3670. "_objFlags": 0,
  3671. "__editorExtras__": {},
  3672. "_parent": {
  3673. "__id__": 99
  3674. },
  3675. "_children": [],
  3676. "_active": true,
  3677. "_components": [
  3678. {
  3679. "__id__": 171
  3680. },
  3681. {
  3682. "__id__": 173
  3683. },
  3684. {
  3685. "__id__": 175
  3686. },
  3687. {
  3688. "__id__": 177
  3689. }
  3690. ],
  3691. "_prefab": {
  3692. "__id__": 179
  3693. },
  3694. "_lpos": {
  3695. "__type__": "cc.Vec3",
  3696. "x": 772.901,
  3697. "y": -67.012,
  3698. "z": 0
  3699. },
  3700. "_lrot": {
  3701. "__type__": "cc.Quat",
  3702. "x": 0,
  3703. "y": 0,
  3704. "z": 0,
  3705. "w": 1
  3706. },
  3707. "_lscale": {
  3708. "__type__": "cc.Vec3",
  3709. "x": 2,
  3710. "y": 2,
  3711. "z": 1
  3712. },
  3713. "_mobility": 0,
  3714. "_layer": 33554432,
  3715. "_euler": {
  3716. "__type__": "cc.Vec3",
  3717. "x": 0,
  3718. "y": 0,
  3719. "z": 0
  3720. },
  3721. "_id": ""
  3722. },
  3723. {
  3724. "__type__": "cc.UITransform",
  3725. "_name": "",
  3726. "_objFlags": 0,
  3727. "__editorExtras__": {},
  3728. "node": {
  3729. "__id__": 170
  3730. },
  3731. "_enabled": true,
  3732. "__prefab": {
  3733. "__id__": 172
  3734. },
  3735. "_contentSize": {
  3736. "__type__": "cc.Size",
  3737. "width": 100,
  3738. "height": 100
  3739. },
  3740. "_anchorPoint": {
  3741. "__type__": "cc.Vec2",
  3742. "x": 0.5,
  3743. "y": 0.5
  3744. },
  3745. "_id": ""
  3746. },
  3747. {
  3748. "__type__": "cc.CompPrefabInfo",
  3749. "fileId": "e3srEKK/RJq58ODnRCjAe7"
  3750. },
  3751. {
  3752. "__type__": "cc.Sprite",
  3753. "_name": "",
  3754. "_objFlags": 0,
  3755. "__editorExtras__": {},
  3756. "node": {
  3757. "__id__": 170
  3758. },
  3759. "_enabled": true,
  3760. "__prefab": {
  3761. "__id__": 174
  3762. },
  3763. "_customMaterial": null,
  3764. "_srcBlendFactor": 2,
  3765. "_dstBlendFactor": 4,
  3766. "_color": {
  3767. "__type__": "cc.Color",
  3768. "r": 255,
  3769. "g": 0,
  3770. "b": 0,
  3771. "a": 255
  3772. },
  3773. "_spriteFrame": {
  3774. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3775. "__expectedType__": "cc.SpriteFrame"
  3776. },
  3777. "_type": 0,
  3778. "_fillType": 0,
  3779. "_sizeMode": 0,
  3780. "_fillCenter": {
  3781. "__type__": "cc.Vec2",
  3782. "x": 0,
  3783. "y": 0
  3784. },
  3785. "_fillStart": 0,
  3786. "_fillRange": 0,
  3787. "_isTrimmedMode": true,
  3788. "_useGrayscale": false,
  3789. "_atlas": null,
  3790. "_id": ""
  3791. },
  3792. {
  3793. "__type__": "cc.CompPrefabInfo",
  3794. "fileId": "cfRvqvluxMg7rht+BW87K6"
  3795. },
  3796. {
  3797. "__type__": "cc.UIOpacity",
  3798. "_name": "",
  3799. "_objFlags": 0,
  3800. "__editorExtras__": {},
  3801. "node": {
  3802. "__id__": 170
  3803. },
  3804. "_enabled": true,
  3805. "__prefab": {
  3806. "__id__": 176
  3807. },
  3808. "_opacity": 0,
  3809. "_id": ""
  3810. },
  3811. {
  3812. "__type__": "cc.CompPrefabInfo",
  3813. "fileId": "903nWQe4JL6axYO2ndPFcv"
  3814. },
  3815. {
  3816. "__type__": "cc.BlockInputEvents",
  3817. "_name": "",
  3818. "_objFlags": 0,
  3819. "__editorExtras__": {},
  3820. "node": {
  3821. "__id__": 170
  3822. },
  3823. "_enabled": true,
  3824. "__prefab": {
  3825. "__id__": 178
  3826. },
  3827. "_id": ""
  3828. },
  3829. {
  3830. "__type__": "cc.CompPrefabInfo",
  3831. "fileId": "c5ssRcZR1BnZe00fnMPl1P"
  3832. },
  3833. {
  3834. "__type__": "cc.PrefabInfo",
  3835. "root": {
  3836. "__id__": 1
  3837. },
  3838. "asset": {
  3839. "__id__": 0
  3840. },
  3841. "fileId": "51ZKdICN9AgakPIh9j5UkF",
  3842. "instance": null,
  3843. "targetOverrides": null,
  3844. "nestedPrefabInstanceRoots": null
  3845. },
  3846. {
  3847. "__type__": "cc.Node",
  3848. "_name": "item_8",
  3849. "_objFlags": 0,
  3850. "__editorExtras__": {},
  3851. "_parent": {
  3852. "__id__": 99
  3853. },
  3854. "_children": [],
  3855. "_active": true,
  3856. "_components": [
  3857. {
  3858. "__id__": 181
  3859. },
  3860. {
  3861. "__id__": 183
  3862. },
  3863. {
  3864. "__id__": 185
  3865. },
  3866. {
  3867. "__id__": 187
  3868. }
  3869. ],
  3870. "_prefab": {
  3871. "__id__": 189
  3872. },
  3873. "_lpos": {
  3874. "__type__": "cc.Vec3",
  3875. "x": 667.174,
  3876. "y": -595.165,
  3877. "z": 0
  3878. },
  3879. "_lrot": {
  3880. "__type__": "cc.Quat",
  3881. "x": 0,
  3882. "y": 0,
  3883. "z": -0.1993679344171972,
  3884. "w": 0.9799247046208296
  3885. },
  3886. "_lscale": {
  3887. "__type__": "cc.Vec3",
  3888. "x": 1,
  3889. "y": 2,
  3890. "z": 1
  3891. },
  3892. "_mobility": 0,
  3893. "_layer": 33554432,
  3894. "_euler": {
  3895. "__type__": "cc.Vec3",
  3896. "x": 0,
  3897. "y": 0,
  3898. "z": -23
  3899. },
  3900. "_id": ""
  3901. },
  3902. {
  3903. "__type__": "cc.UITransform",
  3904. "_name": "",
  3905. "_objFlags": 0,
  3906. "__editorExtras__": {},
  3907. "node": {
  3908. "__id__": 180
  3909. },
  3910. "_enabled": true,
  3911. "__prefab": {
  3912. "__id__": 182
  3913. },
  3914. "_contentSize": {
  3915. "__type__": "cc.Size",
  3916. "width": 100,
  3917. "height": 100
  3918. },
  3919. "_anchorPoint": {
  3920. "__type__": "cc.Vec2",
  3921. "x": 0.5,
  3922. "y": 0.5
  3923. },
  3924. "_id": ""
  3925. },
  3926. {
  3927. "__type__": "cc.CompPrefabInfo",
  3928. "fileId": "ddXTbUPq1MgKskUMwQUGrG"
  3929. },
  3930. {
  3931. "__type__": "cc.Sprite",
  3932. "_name": "",
  3933. "_objFlags": 0,
  3934. "__editorExtras__": {},
  3935. "node": {
  3936. "__id__": 180
  3937. },
  3938. "_enabled": true,
  3939. "__prefab": {
  3940. "__id__": 184
  3941. },
  3942. "_customMaterial": null,
  3943. "_srcBlendFactor": 2,
  3944. "_dstBlendFactor": 4,
  3945. "_color": {
  3946. "__type__": "cc.Color",
  3947. "r": 255,
  3948. "g": 0,
  3949. "b": 0,
  3950. "a": 255
  3951. },
  3952. "_spriteFrame": {
  3953. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3954. "__expectedType__": "cc.SpriteFrame"
  3955. },
  3956. "_type": 0,
  3957. "_fillType": 0,
  3958. "_sizeMode": 0,
  3959. "_fillCenter": {
  3960. "__type__": "cc.Vec2",
  3961. "x": 0,
  3962. "y": 0
  3963. },
  3964. "_fillStart": 0,
  3965. "_fillRange": 0,
  3966. "_isTrimmedMode": true,
  3967. "_useGrayscale": false,
  3968. "_atlas": null,
  3969. "_id": ""
  3970. },
  3971. {
  3972. "__type__": "cc.CompPrefabInfo",
  3973. "fileId": "10aG57ovtAtL4AVqIrj+vv"
  3974. },
  3975. {
  3976. "__type__": "cc.UIOpacity",
  3977. "_name": "",
  3978. "_objFlags": 0,
  3979. "__editorExtras__": {},
  3980. "node": {
  3981. "__id__": 180
  3982. },
  3983. "_enabled": true,
  3984. "__prefab": {
  3985. "__id__": 186
  3986. },
  3987. "_opacity": 0,
  3988. "_id": ""
  3989. },
  3990. {
  3991. "__type__": "cc.CompPrefabInfo",
  3992. "fileId": "12bqrRdY1NyZtmxIkew3Rn"
  3993. },
  3994. {
  3995. "__type__": "cc.BlockInputEvents",
  3996. "_name": "",
  3997. "_objFlags": 0,
  3998. "__editorExtras__": {},
  3999. "node": {
  4000. "__id__": 180
  4001. },
  4002. "_enabled": true,
  4003. "__prefab": {
  4004. "__id__": 188
  4005. },
  4006. "_id": ""
  4007. },
  4008. {
  4009. "__type__": "cc.CompPrefabInfo",
  4010. "fileId": "1ail1I6GhADqS27NOR9ht4"
  4011. },
  4012. {
  4013. "__type__": "cc.PrefabInfo",
  4014. "root": {
  4015. "__id__": 1
  4016. },
  4017. "asset": {
  4018. "__id__": 0
  4019. },
  4020. "fileId": "341owByJFIBY/AfeN3jWhZ",
  4021. "instance": null,
  4022. "targetOverrides": null,
  4023. "nestedPrefabInstanceRoots": null
  4024. },
  4025. {
  4026. "__type__": "cc.Node",
  4027. "_name": "item_9",
  4028. "_objFlags": 0,
  4029. "__editorExtras__": {},
  4030. "_parent": {
  4031. "__id__": 99
  4032. },
  4033. "_children": [],
  4034. "_active": false,
  4035. "_components": [
  4036. {
  4037. "__id__": 191
  4038. },
  4039. {
  4040. "__id__": 193
  4041. },
  4042. {
  4043. "__id__": 195
  4044. },
  4045. {
  4046. "__id__": 197
  4047. }
  4048. ],
  4049. "_prefab": {
  4050. "__id__": 199
  4051. },
  4052. "_lpos": {
  4053. "__type__": "cc.Vec3",
  4054. "x": 462.054,
  4055. "y": -1046.659,
  4056. "z": 0
  4057. },
  4058. "_lrot": {
  4059. "__type__": "cc.Quat",
  4060. "x": 0,
  4061. "y": 0,
  4062. "z": 0,
  4063. "w": 1
  4064. },
  4065. "_lscale": {
  4066. "__type__": "cc.Vec3",
  4067. "x": 1,
  4068. "y": 1,
  4069. "z": 1
  4070. },
  4071. "_mobility": 0,
  4072. "_layer": 33554432,
  4073. "_euler": {
  4074. "__type__": "cc.Vec3",
  4075. "x": 0,
  4076. "y": 0,
  4077. "z": 0
  4078. },
  4079. "_id": ""
  4080. },
  4081. {
  4082. "__type__": "cc.UITransform",
  4083. "_name": "",
  4084. "_objFlags": 0,
  4085. "__editorExtras__": {},
  4086. "node": {
  4087. "__id__": 190
  4088. },
  4089. "_enabled": true,
  4090. "__prefab": {
  4091. "__id__": 192
  4092. },
  4093. "_contentSize": {
  4094. "__type__": "cc.Size",
  4095. "width": 100,
  4096. "height": 100
  4097. },
  4098. "_anchorPoint": {
  4099. "__type__": "cc.Vec2",
  4100. "x": 0.5,
  4101. "y": 0.5
  4102. },
  4103. "_id": ""
  4104. },
  4105. {
  4106. "__type__": "cc.CompPrefabInfo",
  4107. "fileId": "c7GNuDQFZGFYWrlE/wvyAU"
  4108. },
  4109. {
  4110. "__type__": "cc.Sprite",
  4111. "_name": "",
  4112. "_objFlags": 0,
  4113. "__editorExtras__": {},
  4114. "node": {
  4115. "__id__": 190
  4116. },
  4117. "_enabled": true,
  4118. "__prefab": {
  4119. "__id__": 194
  4120. },
  4121. "_customMaterial": null,
  4122. "_srcBlendFactor": 2,
  4123. "_dstBlendFactor": 4,
  4124. "_color": {
  4125. "__type__": "cc.Color",
  4126. "r": 255,
  4127. "g": 0,
  4128. "b": 0,
  4129. "a": 255
  4130. },
  4131. "_spriteFrame": {
  4132. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4133. "__expectedType__": "cc.SpriteFrame"
  4134. },
  4135. "_type": 0,
  4136. "_fillType": 0,
  4137. "_sizeMode": 0,
  4138. "_fillCenter": {
  4139. "__type__": "cc.Vec2",
  4140. "x": 0,
  4141. "y": 0
  4142. },
  4143. "_fillStart": 0,
  4144. "_fillRange": 0,
  4145. "_isTrimmedMode": true,
  4146. "_useGrayscale": false,
  4147. "_atlas": null,
  4148. "_id": ""
  4149. },
  4150. {
  4151. "__type__": "cc.CompPrefabInfo",
  4152. "fileId": "cdiwovCidMZZuAeDZf6VDL"
  4153. },
  4154. {
  4155. "__type__": "cc.UIOpacity",
  4156. "_name": "",
  4157. "_objFlags": 0,
  4158. "__editorExtras__": {},
  4159. "node": {
  4160. "__id__": 190
  4161. },
  4162. "_enabled": true,
  4163. "__prefab": {
  4164. "__id__": 196
  4165. },
  4166. "_opacity": 0,
  4167. "_id": ""
  4168. },
  4169. {
  4170. "__type__": "cc.CompPrefabInfo",
  4171. "fileId": "b3DR4bTh9MlY/1uNXIfgUw"
  4172. },
  4173. {
  4174. "__type__": "cc.BlockInputEvents",
  4175. "_name": "",
  4176. "_objFlags": 0,
  4177. "__editorExtras__": {},
  4178. "node": {
  4179. "__id__": 190
  4180. },
  4181. "_enabled": true,
  4182. "__prefab": {
  4183. "__id__": 198
  4184. },
  4185. "_id": ""
  4186. },
  4187. {
  4188. "__type__": "cc.CompPrefabInfo",
  4189. "fileId": "6euhzcEw1D25+pbLkJR/Yn"
  4190. },
  4191. {
  4192. "__type__": "cc.PrefabInfo",
  4193. "root": {
  4194. "__id__": 1
  4195. },
  4196. "asset": {
  4197. "__id__": 0
  4198. },
  4199. "fileId": "599yxXcklC0IY2UylmcY4d",
  4200. "instance": null,
  4201. "targetOverrides": null,
  4202. "nestedPrefabInstanceRoots": null
  4203. },
  4204. {
  4205. "__type__": "cc.Node",
  4206. "_name": "item_10",
  4207. "_objFlags": 0,
  4208. "__editorExtras__": {},
  4209. "_parent": {
  4210. "__id__": 99
  4211. },
  4212. "_children": [],
  4213. "_active": true,
  4214. "_components": [
  4215. {
  4216. "__id__": 201
  4217. },
  4218. {
  4219. "__id__": 203
  4220. },
  4221. {
  4222. "__id__": 205
  4223. },
  4224. {
  4225. "__id__": 207
  4226. }
  4227. ],
  4228. "_prefab": {
  4229. "__id__": 209
  4230. },
  4231. "_lpos": {
  4232. "__type__": "cc.Vec3",
  4233. "x": -243.139,
  4234. "y": -946.007,
  4235. "z": 0
  4236. },
  4237. "_lrot": {
  4238. "__type__": "cc.Quat",
  4239. "x": 0,
  4240. "y": 0,
  4241. "z": 0,
  4242. "w": 1
  4243. },
  4244. "_lscale": {
  4245. "__type__": "cc.Vec3",
  4246. "x": 3,
  4247. "y": 3,
  4248. "z": 1
  4249. },
  4250. "_mobility": 0,
  4251. "_layer": 33554432,
  4252. "_euler": {
  4253. "__type__": "cc.Vec3",
  4254. "x": 0,
  4255. "y": 0,
  4256. "z": 0
  4257. },
  4258. "_id": ""
  4259. },
  4260. {
  4261. "__type__": "cc.UITransform",
  4262. "_name": "",
  4263. "_objFlags": 0,
  4264. "__editorExtras__": {},
  4265. "node": {
  4266. "__id__": 200
  4267. },
  4268. "_enabled": true,
  4269. "__prefab": {
  4270. "__id__": 202
  4271. },
  4272. "_contentSize": {
  4273. "__type__": "cc.Size",
  4274. "width": 100,
  4275. "height": 100
  4276. },
  4277. "_anchorPoint": {
  4278. "__type__": "cc.Vec2",
  4279. "x": 0.5,
  4280. "y": 0.5
  4281. },
  4282. "_id": ""
  4283. },
  4284. {
  4285. "__type__": "cc.CompPrefabInfo",
  4286. "fileId": "04oY/HsaRHwr/oh+vMZ/A3"
  4287. },
  4288. {
  4289. "__type__": "cc.Sprite",
  4290. "_name": "",
  4291. "_objFlags": 0,
  4292. "__editorExtras__": {},
  4293. "node": {
  4294. "__id__": 200
  4295. },
  4296. "_enabled": true,
  4297. "__prefab": {
  4298. "__id__": 204
  4299. },
  4300. "_customMaterial": null,
  4301. "_srcBlendFactor": 2,
  4302. "_dstBlendFactor": 4,
  4303. "_color": {
  4304. "__type__": "cc.Color",
  4305. "r": 255,
  4306. "g": 0,
  4307. "b": 0,
  4308. "a": 255
  4309. },
  4310. "_spriteFrame": {
  4311. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4312. "__expectedType__": "cc.SpriteFrame"
  4313. },
  4314. "_type": 0,
  4315. "_fillType": 0,
  4316. "_sizeMode": 0,
  4317. "_fillCenter": {
  4318. "__type__": "cc.Vec2",
  4319. "x": 0,
  4320. "y": 0
  4321. },
  4322. "_fillStart": 0,
  4323. "_fillRange": 0,
  4324. "_isTrimmedMode": true,
  4325. "_useGrayscale": false,
  4326. "_atlas": null,
  4327. "_id": ""
  4328. },
  4329. {
  4330. "__type__": "cc.CompPrefabInfo",
  4331. "fileId": "3e7N+dw5hLvp+eYxwfqYkW"
  4332. },
  4333. {
  4334. "__type__": "cc.UIOpacity",
  4335. "_name": "",
  4336. "_objFlags": 0,
  4337. "__editorExtras__": {},
  4338. "node": {
  4339. "__id__": 200
  4340. },
  4341. "_enabled": true,
  4342. "__prefab": {
  4343. "__id__": 206
  4344. },
  4345. "_opacity": 0,
  4346. "_id": ""
  4347. },
  4348. {
  4349. "__type__": "cc.CompPrefabInfo",
  4350. "fileId": "97MErIv+pHKpkMUtBRcAAh"
  4351. },
  4352. {
  4353. "__type__": "cc.BlockInputEvents",
  4354. "_name": "",
  4355. "_objFlags": 0,
  4356. "__editorExtras__": {},
  4357. "node": {
  4358. "__id__": 200
  4359. },
  4360. "_enabled": true,
  4361. "__prefab": {
  4362. "__id__": 208
  4363. },
  4364. "_id": ""
  4365. },
  4366. {
  4367. "__type__": "cc.CompPrefabInfo",
  4368. "fileId": "85/IB7ULxHcYJ6FTyx4Bkl"
  4369. },
  4370. {
  4371. "__type__": "cc.PrefabInfo",
  4372. "root": {
  4373. "__id__": 1
  4374. },
  4375. "asset": {
  4376. "__id__": 0
  4377. },
  4378. "fileId": "97oDrnkAZAKqVt6u+Rilql",
  4379. "instance": null,
  4380. "targetOverrides": null,
  4381. "nestedPrefabInstanceRoots": null
  4382. },
  4383. {
  4384. "__type__": "cc.Node",
  4385. "_name": "item_11",
  4386. "_objFlags": 0,
  4387. "__editorExtras__": {},
  4388. "_parent": {
  4389. "__id__": 99
  4390. },
  4391. "_children": [],
  4392. "_active": false,
  4393. "_components": [
  4394. {
  4395. "__id__": 211
  4396. },
  4397. {
  4398. "__id__": 213
  4399. },
  4400. {
  4401. "__id__": 215
  4402. },
  4403. {
  4404. "__id__": 217
  4405. }
  4406. ],
  4407. "_prefab": {
  4408. "__id__": 219
  4409. },
  4410. "_lpos": {
  4411. "__type__": "cc.Vec3",
  4412. "x": -733.976,
  4413. "y": -485.317,
  4414. "z": 0
  4415. },
  4416. "_lrot": {
  4417. "__type__": "cc.Quat",
  4418. "x": 0,
  4419. "y": 0,
  4420. "z": 0,
  4421. "w": 1
  4422. },
  4423. "_lscale": {
  4424. "__type__": "cc.Vec3",
  4425. "x": 1,
  4426. "y": 1,
  4427. "z": 1
  4428. },
  4429. "_mobility": 0,
  4430. "_layer": 33554432,
  4431. "_euler": {
  4432. "__type__": "cc.Vec3",
  4433. "x": 0,
  4434. "y": 0,
  4435. "z": 0
  4436. },
  4437. "_id": ""
  4438. },
  4439. {
  4440. "__type__": "cc.UITransform",
  4441. "_name": "",
  4442. "_objFlags": 0,
  4443. "__editorExtras__": {},
  4444. "node": {
  4445. "__id__": 210
  4446. },
  4447. "_enabled": true,
  4448. "__prefab": {
  4449. "__id__": 212
  4450. },
  4451. "_contentSize": {
  4452. "__type__": "cc.Size",
  4453. "width": 100,
  4454. "height": 100
  4455. },
  4456. "_anchorPoint": {
  4457. "__type__": "cc.Vec2",
  4458. "x": 0.5,
  4459. "y": 0.5
  4460. },
  4461. "_id": ""
  4462. },
  4463. {
  4464. "__type__": "cc.CompPrefabInfo",
  4465. "fileId": "53Tyzf6DxGopzRm6P9fwZW"
  4466. },
  4467. {
  4468. "__type__": "cc.Sprite",
  4469. "_name": "",
  4470. "_objFlags": 0,
  4471. "__editorExtras__": {},
  4472. "node": {
  4473. "__id__": 210
  4474. },
  4475. "_enabled": true,
  4476. "__prefab": {
  4477. "__id__": 214
  4478. },
  4479. "_customMaterial": null,
  4480. "_srcBlendFactor": 2,
  4481. "_dstBlendFactor": 4,
  4482. "_color": {
  4483. "__type__": "cc.Color",
  4484. "r": 255,
  4485. "g": 0,
  4486. "b": 0,
  4487. "a": 255
  4488. },
  4489. "_spriteFrame": {
  4490. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4491. "__expectedType__": "cc.SpriteFrame"
  4492. },
  4493. "_type": 0,
  4494. "_fillType": 0,
  4495. "_sizeMode": 0,
  4496. "_fillCenter": {
  4497. "__type__": "cc.Vec2",
  4498. "x": 0,
  4499. "y": 0
  4500. },
  4501. "_fillStart": 0,
  4502. "_fillRange": 0,
  4503. "_isTrimmedMode": true,
  4504. "_useGrayscale": false,
  4505. "_atlas": null,
  4506. "_id": ""
  4507. },
  4508. {
  4509. "__type__": "cc.CompPrefabInfo",
  4510. "fileId": "25pDddh0lLrqRJeCB5RGhJ"
  4511. },
  4512. {
  4513. "__type__": "cc.UIOpacity",
  4514. "_name": "",
  4515. "_objFlags": 0,
  4516. "__editorExtras__": {},
  4517. "node": {
  4518. "__id__": 210
  4519. },
  4520. "_enabled": true,
  4521. "__prefab": {
  4522. "__id__": 216
  4523. },
  4524. "_opacity": 0,
  4525. "_id": ""
  4526. },
  4527. {
  4528. "__type__": "cc.CompPrefabInfo",
  4529. "fileId": "0e/MLBdS9J/a9qjgu0ZJuZ"
  4530. },
  4531. {
  4532. "__type__": "cc.BlockInputEvents",
  4533. "_name": "",
  4534. "_objFlags": 0,
  4535. "__editorExtras__": {},
  4536. "node": {
  4537. "__id__": 210
  4538. },
  4539. "_enabled": true,
  4540. "__prefab": {
  4541. "__id__": 218
  4542. },
  4543. "_id": ""
  4544. },
  4545. {
  4546. "__type__": "cc.CompPrefabInfo",
  4547. "fileId": "05MBtXqgFGKId1VaO674Yo"
  4548. },
  4549. {
  4550. "__type__": "cc.PrefabInfo",
  4551. "root": {
  4552. "__id__": 1
  4553. },
  4554. "asset": {
  4555. "__id__": 0
  4556. },
  4557. "fileId": "864OxBCl9Mf4EsvZAB4tCG",
  4558. "instance": null,
  4559. "targetOverrides": null,
  4560. "nestedPrefabInstanceRoots": null
  4561. },
  4562. {
  4563. "__type__": "cc.Node",
  4564. "_name": "zhangai2",
  4565. "_objFlags": 0,
  4566. "__editorExtras__": {},
  4567. "_parent": {
  4568. "__id__": 99
  4569. },
  4570. "_children": [],
  4571. "_active": true,
  4572. "_components": [
  4573. {
  4574. "__id__": 221
  4575. },
  4576. {
  4577. "__id__": 223
  4578. },
  4579. {
  4580. "__id__": 225
  4581. }
  4582. ],
  4583. "_prefab": {
  4584. "__id__": 227
  4585. },
  4586. "_lpos": {
  4587. "__type__": "cc.Vec3",
  4588. "x": -750,
  4589. "y": -480.222,
  4590. "z": 0
  4591. },
  4592. "_lrot": {
  4593. "__type__": "cc.Quat",
  4594. "x": 0,
  4595. "y": 0,
  4596. "z": 0,
  4597. "w": 1
  4598. },
  4599. "_lscale": {
  4600. "__type__": "cc.Vec3",
  4601. "x": 1.5,
  4602. "y": 1.5,
  4603. "z": 1
  4604. },
  4605. "_mobility": 0,
  4606. "_layer": 33554432,
  4607. "_euler": {
  4608. "__type__": "cc.Vec3",
  4609. "x": 0,
  4610. "y": 0,
  4611. "z": 0
  4612. },
  4613. "_id": ""
  4614. },
  4615. {
  4616. "__type__": "cc.UITransform",
  4617. "_name": "",
  4618. "_objFlags": 0,
  4619. "__editorExtras__": {},
  4620. "node": {
  4621. "__id__": 220
  4622. },
  4623. "_enabled": true,
  4624. "__prefab": {
  4625. "__id__": 222
  4626. },
  4627. "_contentSize": {
  4628. "__type__": "cc.Size",
  4629. "width": 154.618,
  4630. "height": 141.618
  4631. },
  4632. "_anchorPoint": {
  4633. "__type__": "cc.Vec2",
  4634. "x": 0.5,
  4635. "y": 0.5
  4636. },
  4637. "_id": ""
  4638. },
  4639. {
  4640. "__type__": "cc.CompPrefabInfo",
  4641. "fileId": "eeX/v+sblIoo198ZZ8cOT7"
  4642. },
  4643. {
  4644. "__type__": "cc.Sprite",
  4645. "_name": "",
  4646. "_objFlags": 0,
  4647. "__editorExtras__": {},
  4648. "node": {
  4649. "__id__": 220
  4650. },
  4651. "_enabled": true,
  4652. "__prefab": {
  4653. "__id__": 224
  4654. },
  4655. "_customMaterial": null,
  4656. "_srcBlendFactor": 2,
  4657. "_dstBlendFactor": 4,
  4658. "_color": {
  4659. "__type__": "cc.Color",
  4660. "r": 255,
  4661. "g": 255,
  4662. "b": 255,
  4663. "a": 255
  4664. },
  4665. "_spriteFrame": {
  4666. "__uuid__": "819568aa-a1d9-45a2-9b3a-a58a402381f3@f9941",
  4667. "__expectedType__": "cc.SpriteFrame"
  4668. },
  4669. "_type": 0,
  4670. "_fillType": 0,
  4671. "_sizeMode": 0,
  4672. "_fillCenter": {
  4673. "__type__": "cc.Vec2",
  4674. "x": 0,
  4675. "y": 0
  4676. },
  4677. "_fillStart": 0,
  4678. "_fillRange": 0,
  4679. "_isTrimmedMode": true,
  4680. "_useGrayscale": false,
  4681. "_atlas": null,
  4682. "_id": ""
  4683. },
  4684. {
  4685. "__type__": "cc.CompPrefabInfo",
  4686. "fileId": "60xnHL0udASoIvqMrnZJWy"
  4687. },
  4688. {
  4689. "__type__": "cc.UIOpacity",
  4690. "_name": "",
  4691. "_objFlags": 0,
  4692. "__editorExtras__": {},
  4693. "node": {
  4694. "__id__": 220
  4695. },
  4696. "_enabled": true,
  4697. "__prefab": {
  4698. "__id__": 226
  4699. },
  4700. "_opacity": 255,
  4701. "_id": ""
  4702. },
  4703. {
  4704. "__type__": "cc.CompPrefabInfo",
  4705. "fileId": "c7ZqBYwBpPhbCCMIFQIBQo"
  4706. },
  4707. {
  4708. "__type__": "cc.PrefabInfo",
  4709. "root": {
  4710. "__id__": 1
  4711. },
  4712. "asset": {
  4713. "__id__": 0
  4714. },
  4715. "fileId": "88WHv1dTlP4rmgGjKh+y88",
  4716. "instance": null,
  4717. "targetOverrides": null,
  4718. "nestedPrefabInstanceRoots": null
  4719. },
  4720. {
  4721. "__type__": "cc.Node",
  4722. "_name": "zhangai1",
  4723. "_objFlags": 0,
  4724. "__editorExtras__": {},
  4725. "_parent": {
  4726. "__id__": 99
  4727. },
  4728. "_children": [],
  4729. "_active": true,
  4730. "_components": [
  4731. {
  4732. "__id__": 229
  4733. },
  4734. {
  4735. "__id__": 231
  4736. },
  4737. {
  4738. "__id__": 233
  4739. }
  4740. ],
  4741. "_prefab": {
  4742. "__id__": 235
  4743. },
  4744. "_lpos": {
  4745. "__type__": "cc.Vec3",
  4746. "x": 489.147,
  4747. "y": -1043.979,
  4748. "z": 0
  4749. },
  4750. "_lrot": {
  4751. "__type__": "cc.Quat",
  4752. "x": 0,
  4753. "y": 0,
  4754. "z": 0,
  4755. "w": 1
  4756. },
  4757. "_lscale": {
  4758. "__type__": "cc.Vec3",
  4759. "x": 1,
  4760. "y": 1,
  4761. "z": 1
  4762. },
  4763. "_mobility": 0,
  4764. "_layer": 33554432,
  4765. "_euler": {
  4766. "__type__": "cc.Vec3",
  4767. "x": 0,
  4768. "y": 0,
  4769. "z": 0
  4770. },
  4771. "_id": ""
  4772. },
  4773. {
  4774. "__type__": "cc.UITransform",
  4775. "_name": "",
  4776. "_objFlags": 0,
  4777. "__editorExtras__": {},
  4778. "node": {
  4779. "__id__": 228
  4780. },
  4781. "_enabled": true,
  4782. "__prefab": {
  4783. "__id__": 230
  4784. },
  4785. "_contentSize": {
  4786. "__type__": "cc.Size",
  4787. "width": 205,
  4788. "height": 151
  4789. },
  4790. "_anchorPoint": {
  4791. "__type__": "cc.Vec2",
  4792. "x": 0.5,
  4793. "y": 0.5
  4794. },
  4795. "_id": ""
  4796. },
  4797. {
  4798. "__type__": "cc.CompPrefabInfo",
  4799. "fileId": "53I3VTm29Ku7ZVME4JSGEt"
  4800. },
  4801. {
  4802. "__type__": "cc.Sprite",
  4803. "_name": "",
  4804. "_objFlags": 0,
  4805. "__editorExtras__": {},
  4806. "node": {
  4807. "__id__": 228
  4808. },
  4809. "_enabled": true,
  4810. "__prefab": {
  4811. "__id__": 232
  4812. },
  4813. "_customMaterial": null,
  4814. "_srcBlendFactor": 2,
  4815. "_dstBlendFactor": 4,
  4816. "_color": {
  4817. "__type__": "cc.Color",
  4818. "r": 255,
  4819. "g": 255,
  4820. "b": 255,
  4821. "a": 255
  4822. },
  4823. "_spriteFrame": {
  4824. "__uuid__": "7686f4a1-0487-4665-8da6-2dcefd25f91b@f9941",
  4825. "__expectedType__": "cc.SpriteFrame"
  4826. },
  4827. "_type": 0,
  4828. "_fillType": 0,
  4829. "_sizeMode": 2,
  4830. "_fillCenter": {
  4831. "__type__": "cc.Vec2",
  4832. "x": 0,
  4833. "y": 0
  4834. },
  4835. "_fillStart": 0,
  4836. "_fillRange": 0,
  4837. "_isTrimmedMode": true,
  4838. "_useGrayscale": false,
  4839. "_atlas": null,
  4840. "_id": ""
  4841. },
  4842. {
  4843. "__type__": "cc.CompPrefabInfo",
  4844. "fileId": "f5pMG6JBtAbp9qocGGdqs4"
  4845. },
  4846. {
  4847. "__type__": "cc.UIOpacity",
  4848. "_name": "",
  4849. "_objFlags": 0,
  4850. "__editorExtras__": {},
  4851. "node": {
  4852. "__id__": 228
  4853. },
  4854. "_enabled": true,
  4855. "__prefab": {
  4856. "__id__": 234
  4857. },
  4858. "_opacity": 255,
  4859. "_id": ""
  4860. },
  4861. {
  4862. "__type__": "cc.CompPrefabInfo",
  4863. "fileId": "1eFOs8aapPJbAyKzwuF5yx"
  4864. },
  4865. {
  4866. "__type__": "cc.PrefabInfo",
  4867. "root": {
  4868. "__id__": 1
  4869. },
  4870. "asset": {
  4871. "__id__": 0
  4872. },
  4873. "fileId": "8ccLdkm3hN/oleGPEXYfBp",
  4874. "instance": null,
  4875. "targetOverrides": null,
  4876. "nestedPrefabInstanceRoots": null
  4877. },
  4878. {
  4879. "__type__": "cc.Node",
  4880. "_name": "byl_deng1",
  4881. "_objFlags": 0,
  4882. "__editorExtras__": {},
  4883. "_parent": {
  4884. "__id__": 99
  4885. },
  4886. "_children": [],
  4887. "_active": true,
  4888. "_components": [
  4889. {
  4890. "__id__": 237
  4891. },
  4892. {
  4893. "__id__": 239
  4894. }
  4895. ],
  4896. "_prefab": {
  4897. "__id__": 241
  4898. },
  4899. "_lpos": {
  4900. "__type__": "cc.Vec3",
  4901. "x": 48.36900000000003,
  4902. "y": -78.13800000000003,
  4903. "z": 0
  4904. },
  4905. "_lrot": {
  4906. "__type__": "cc.Quat",
  4907. "x": 0,
  4908. "y": 0,
  4909. "z": 0,
  4910. "w": 1
  4911. },
  4912. "_lscale": {
  4913. "__type__": "cc.Vec3",
  4914. "x": 1,
  4915. "y": 1,
  4916. "z": 1
  4917. },
  4918. "_mobility": 0,
  4919. "_layer": 33554432,
  4920. "_euler": {
  4921. "__type__": "cc.Vec3",
  4922. "x": 0,
  4923. "y": 0,
  4924. "z": 0
  4925. },
  4926. "_id": ""
  4927. },
  4928. {
  4929. "__type__": "cc.UITransform",
  4930. "_name": "",
  4931. "_objFlags": 0,
  4932. "__editorExtras__": {},
  4933. "node": {
  4934. "__id__": 236
  4935. },
  4936. "_enabled": true,
  4937. "__prefab": {
  4938. "__id__": 238
  4939. },
  4940. "_contentSize": {
  4941. "__type__": "cc.Size",
  4942. "width": 112.87999725341797,
  4943. "height": 306.2200012207031
  4944. },
  4945. "_anchorPoint": {
  4946. "__type__": "cc.Vec2",
  4947. "x": 4.2,
  4948. "y": -1.7
  4949. },
  4950. "_id": ""
  4951. },
  4952. {
  4953. "__type__": "cc.CompPrefabInfo",
  4954. "fileId": "8bQseC961BCrHiEXWazAO9"
  4955. },
  4956. {
  4957. "__type__": "sp.Skeleton",
  4958. "_name": "",
  4959. "_objFlags": 0,
  4960. "__editorExtras__": {},
  4961. "node": {
  4962. "__id__": 236
  4963. },
  4964. "_enabled": true,
  4965. "__prefab": {
  4966. "__id__": 240
  4967. },
  4968. "_customMaterial": null,
  4969. "_srcBlendFactor": 2,
  4970. "_dstBlendFactor": 4,
  4971. "_color": {
  4972. "__type__": "cc.Color",
  4973. "r": 255,
  4974. "g": 255,
  4975. "b": 255,
  4976. "a": 255
  4977. },
  4978. "_skeletonData": {
  4979. "__uuid__": "1bb12aea-d90c-4161-a0db-0225543d9a82",
  4980. "__expectedType__": "sp.SkeletonData"
  4981. },
  4982. "defaultSkin": "default",
  4983. "defaultAnimation": "idle2",
  4984. "_premultipliedAlpha": false,
  4985. "_timeScale": 1,
  4986. "_preCacheMode": 0,
  4987. "_cacheMode": 0,
  4988. "_sockets": [],
  4989. "_useTint": false,
  4990. "_debugMesh": false,
  4991. "_debugBones": false,
  4992. "_debugSlots": false,
  4993. "_enableBatch": false,
  4994. "loop": true,
  4995. "_id": ""
  4996. },
  4997. {
  4998. "__type__": "cc.CompPrefabInfo",
  4999. "fileId": "2bVgFoMNtFhqW3aHEAGzTi"
  5000. },
  5001. {
  5002. "__type__": "cc.PrefabInfo",
  5003. "root": {
  5004. "__id__": 1
  5005. },
  5006. "asset": {
  5007. "__id__": 0
  5008. },
  5009. "fileId": "2376eHclZHlauoRfxZFlcn",
  5010. "instance": null,
  5011. "targetOverrides": null,
  5012. "nestedPrefabInstanceRoots": null
  5013. },
  5014. {
  5015. "__type__": "cc.Node",
  5016. "_name": "byl_deng2",
  5017. "_objFlags": 0,
  5018. "__editorExtras__": {},
  5019. "_parent": {
  5020. "__id__": 99
  5021. },
  5022. "_children": [],
  5023. "_active": true,
  5024. "_components": [
  5025. {
  5026. "__id__": 243
  5027. },
  5028. {
  5029. "__id__": 245
  5030. }
  5031. ],
  5032. "_prefab": {
  5033. "__id__": 247
  5034. },
  5035. "_lpos": {
  5036. "__type__": "cc.Vec3",
  5037. "x": 55.98000000000002,
  5038. "y": -78.37099999999998,
  5039. "z": 0
  5040. },
  5041. "_lrot": {
  5042. "__type__": "cc.Quat",
  5043. "x": 0,
  5044. "y": 0,
  5045. "z": 0,
  5046. "w": 1
  5047. },
  5048. "_lscale": {
  5049. "__type__": "cc.Vec3",
  5050. "x": 1,
  5051. "y": 1,
  5052. "z": 1
  5053. },
  5054. "_mobility": 0,
  5055. "_layer": 33554432,
  5056. "_euler": {
  5057. "__type__": "cc.Vec3",
  5058. "x": 0,
  5059. "y": 0,
  5060. "z": 0
  5061. },
  5062. "_id": ""
  5063. },
  5064. {
  5065. "__type__": "cc.UITransform",
  5066. "_name": "",
  5067. "_objFlags": 0,
  5068. "__editorExtras__": {},
  5069. "node": {
  5070. "__id__": 242
  5071. },
  5072. "_enabled": true,
  5073. "__prefab": {
  5074. "__id__": 244
  5075. },
  5076. "_contentSize": {
  5077. "__type__": "cc.Size",
  5078. "width": 111.95999908447266,
  5079. "height": 310.8399963378906
  5080. },
  5081. "_anchorPoint": {
  5082. "__type__": "cc.Vec2",
  5083. "x": -1.5,
  5084. "y": -1.7
  5085. },
  5086. "_id": ""
  5087. },
  5088. {
  5089. "__type__": "cc.CompPrefabInfo",
  5090. "fileId": "a506oAcXpOQL5YR81A1fEu"
  5091. },
  5092. {
  5093. "__type__": "sp.Skeleton",
  5094. "_name": "",
  5095. "_objFlags": 0,
  5096. "__editorExtras__": {},
  5097. "node": {
  5098. "__id__": 242
  5099. },
  5100. "_enabled": true,
  5101. "__prefab": {
  5102. "__id__": 246
  5103. },
  5104. "_customMaterial": null,
  5105. "_srcBlendFactor": 2,
  5106. "_dstBlendFactor": 4,
  5107. "_color": {
  5108. "__type__": "cc.Color",
  5109. "r": 255,
  5110. "g": 255,
  5111. "b": 255,
  5112. "a": 255
  5113. },
  5114. "_skeletonData": {
  5115. "__uuid__": "05b221ce-100f-4e29-aa26-8f66df717259",
  5116. "__expectedType__": "sp.SkeletonData"
  5117. },
  5118. "defaultSkin": "default",
  5119. "defaultAnimation": "idle",
  5120. "_premultipliedAlpha": false,
  5121. "_timeScale": 1,
  5122. "_preCacheMode": 0,
  5123. "_cacheMode": 0,
  5124. "_sockets": [],
  5125. "_useTint": false,
  5126. "_debugMesh": false,
  5127. "_debugBones": false,
  5128. "_debugSlots": false,
  5129. "_enableBatch": false,
  5130. "loop": true,
  5131. "_id": ""
  5132. },
  5133. {
  5134. "__type__": "cc.CompPrefabInfo",
  5135. "fileId": "989K/8nm9AeoH8jzmoT9Wj"
  5136. },
  5137. {
  5138. "__type__": "cc.PrefabInfo",
  5139. "root": {
  5140. "__id__": 1
  5141. },
  5142. "asset": {
  5143. "__id__": 0
  5144. },
  5145. "fileId": "23fnKT2KZM3oVAF4wdE/Nd",
  5146. "instance": null,
  5147. "targetOverrides": null,
  5148. "nestedPrefabInstanceRoots": null
  5149. },
  5150. {
  5151. "__type__": "cc.Node",
  5152. "_name": "byl_ren",
  5153. "_objFlags": 0,
  5154. "__editorExtras__": {},
  5155. "_parent": {
  5156. "__id__": 99
  5157. },
  5158. "_children": [],
  5159. "_active": true,
  5160. "_components": [
  5161. {
  5162. "__id__": 249
  5163. },
  5164. {
  5165. "__id__": 251
  5166. }
  5167. ],
  5168. "_prefab": {
  5169. "__id__": 253
  5170. },
  5171. "_lpos": {
  5172. "__type__": "cc.Vec3",
  5173. "x": 53.06700000000001,
  5174. "y": -78.58500000000004,
  5175. "z": 0
  5176. },
  5177. "_lrot": {
  5178. "__type__": "cc.Quat",
  5179. "x": 0,
  5180. "y": 0,
  5181. "z": 0,
  5182. "w": 1
  5183. },
  5184. "_lscale": {
  5185. "__type__": "cc.Vec3",
  5186. "x": 1,
  5187. "y": 1,
  5188. "z": 1
  5189. },
  5190. "_mobility": 0,
  5191. "_layer": 33554432,
  5192. "_euler": {
  5193. "__type__": "cc.Vec3",
  5194. "x": 0,
  5195. "y": 0,
  5196. "z": 0
  5197. },
  5198. "_id": ""
  5199. },
  5200. {
  5201. "__type__": "cc.UITransform",
  5202. "_name": "",
  5203. "_objFlags": 0,
  5204. "__editorExtras__": {},
  5205. "node": {
  5206. "__id__": 248
  5207. },
  5208. "_enabled": true,
  5209. "__prefab": {
  5210. "__id__": 250
  5211. },
  5212. "_contentSize": {
  5213. "__type__": "cc.Size",
  5214. "width": 1342,
  5215. "height": 2056
  5216. },
  5217. "_anchorPoint": {
  5218. "__type__": "cc.Vec2",
  5219. "x": 0.3858196866849851,
  5220. "y": 0.3658803501945525
  5221. },
  5222. "_id": ""
  5223. },
  5224. {
  5225. "__type__": "cc.CompPrefabInfo",
  5226. "fileId": "29Erg4WwBCFoP83FsIkm5y"
  5227. },
  5228. {
  5229. "__type__": "sp.Skeleton",
  5230. "_name": "",
  5231. "_objFlags": 0,
  5232. "__editorExtras__": {},
  5233. "node": {
  5234. "__id__": 248
  5235. },
  5236. "_enabled": true,
  5237. "__prefab": {
  5238. "__id__": 252
  5239. },
  5240. "_customMaterial": null,
  5241. "_srcBlendFactor": 2,
  5242. "_dstBlendFactor": 4,
  5243. "_color": {
  5244. "__type__": "cc.Color",
  5245. "r": 255,
  5246. "g": 255,
  5247. "b": 255,
  5248. "a": 255
  5249. },
  5250. "_skeletonData": {
  5251. "__uuid__": "ce148558-cb97-4362-a737-f8e07fad2739",
  5252. "__expectedType__": "sp.SkeletonData"
  5253. },
  5254. "defaultSkin": "default",
  5255. "defaultAnimation": "idle",
  5256. "_premultipliedAlpha": false,
  5257. "_timeScale": 1,
  5258. "_preCacheMode": 0,
  5259. "_cacheMode": 0,
  5260. "_sockets": [],
  5261. "_useTint": false,
  5262. "_debugMesh": false,
  5263. "_debugBones": false,
  5264. "_debugSlots": false,
  5265. "_enableBatch": false,
  5266. "loop": true,
  5267. "_id": ""
  5268. },
  5269. {
  5270. "__type__": "cc.CompPrefabInfo",
  5271. "fileId": "18OPGEjNJOCI57aFQvf1XK"
  5272. },
  5273. {
  5274. "__type__": "cc.PrefabInfo",
  5275. "root": {
  5276. "__id__": 1
  5277. },
  5278. "asset": {
  5279. "__id__": 0
  5280. },
  5281. "fileId": "7eNBe9yWhM9YvxCbhAZg7B",
  5282. "instance": null,
  5283. "targetOverrides": null,
  5284. "nestedPrefabInstanceRoots": null
  5285. },
  5286. {
  5287. "__type__": "cc.UITransform",
  5288. "_name": "",
  5289. "_objFlags": 0,
  5290. "__editorExtras__": {},
  5291. "node": {
  5292. "__id__": 99
  5293. },
  5294. "_enabled": true,
  5295. "__prefab": {
  5296. "__id__": 255
  5297. },
  5298. "_contentSize": {
  5299. "__type__": "cc.Size",
  5300. "width": 1730,
  5301. "height": 2306
  5302. },
  5303. "_anchorPoint": {
  5304. "__type__": "cc.Vec2",
  5305. "x": 0.5,
  5306. "y": 0.5
  5307. },
  5308. "_id": ""
  5309. },
  5310. {
  5311. "__type__": "cc.CompPrefabInfo",
  5312. "fileId": "83BxBAq51BC7pcvmGFXz82"
  5313. },
  5314. {
  5315. "__type__": "cc.Sprite",
  5316. "_name": "",
  5317. "_objFlags": 0,
  5318. "__editorExtras__": {},
  5319. "node": {
  5320. "__id__": 99
  5321. },
  5322. "_enabled": true,
  5323. "__prefab": {
  5324. "__id__": 257
  5325. },
  5326. "_customMaterial": null,
  5327. "_srcBlendFactor": 2,
  5328. "_dstBlendFactor": 4,
  5329. "_color": {
  5330. "__type__": "cc.Color",
  5331. "r": 255,
  5332. "g": 255,
  5333. "b": 255,
  5334. "a": 255
  5335. },
  5336. "_spriteFrame": {
  5337. "__uuid__": "701ae1aa-bb2e-4d1b-856f-bd3cc46c7e2d@f9941",
  5338. "__expectedType__": "cc.SpriteFrame"
  5339. },
  5340. "_type": 0,
  5341. "_fillType": 0,
  5342. "_sizeMode": 0,
  5343. "_fillCenter": {
  5344. "__type__": "cc.Vec2",
  5345. "x": 0,
  5346. "y": 0
  5347. },
  5348. "_fillStart": 0,
  5349. "_fillRange": 0,
  5350. "_isTrimmedMode": true,
  5351. "_useGrayscale": false,
  5352. "_atlas": null,
  5353. "_id": ""
  5354. },
  5355. {
  5356. "__type__": "cc.CompPrefabInfo",
  5357. "fileId": "9dGM9bnelEPo3wIUHm8haE"
  5358. },
  5359. {
  5360. "__type__": "cc.PrefabInfo",
  5361. "root": {
  5362. "__id__": 1
  5363. },
  5364. "asset": {
  5365. "__id__": 0
  5366. },
  5367. "fileId": "c5PoCRJCBKCLhXIOkrC1tH",
  5368. "instance": null,
  5369. "targetOverrides": null,
  5370. "nestedPrefabInstanceRoots": null
  5371. },
  5372. {
  5373. "__type__": "cc.UITransform",
  5374. "_name": "",
  5375. "_objFlags": 0,
  5376. "__editorExtras__": {},
  5377. "node": {
  5378. "__id__": 98
  5379. },
  5380. "_enabled": true,
  5381. "__prefab": {
  5382. "__id__": 260
  5383. },
  5384. "_contentSize": {
  5385. "__type__": "cc.Size",
  5386. "width": 720,
  5387. "height": 720
  5388. },
  5389. "_anchorPoint": {
  5390. "__type__": "cc.Vec2",
  5391. "x": 0.5,
  5392. "y": 0.5
  5393. },
  5394. "_id": ""
  5395. },
  5396. {
  5397. "__type__": "cc.CompPrefabInfo",
  5398. "fileId": "0erCbR17pOU6sbbmyMow34"
  5399. },
  5400. {
  5401. "__type__": "cc.Mask",
  5402. "_name": "",
  5403. "_objFlags": 0,
  5404. "__editorExtras__": {},
  5405. "node": {
  5406. "__id__": 98
  5407. },
  5408. "_enabled": true,
  5409. "__prefab": {
  5410. "__id__": 262
  5411. },
  5412. "_type": 0,
  5413. "_inverted": false,
  5414. "_segments": 64,
  5415. "_alphaThreshold": 0.1,
  5416. "_id": ""
  5417. },
  5418. {
  5419. "__type__": "cc.CompPrefabInfo",
  5420. "fileId": "9aUujILoRHFbiu6fxAi8sc"
  5421. },
  5422. {
  5423. "__type__": "cc.Graphics",
  5424. "_name": "",
  5425. "_objFlags": 0,
  5426. "__editorExtras__": {},
  5427. "node": {
  5428. "__id__": 98
  5429. },
  5430. "_enabled": true,
  5431. "__prefab": {
  5432. "__id__": 264
  5433. },
  5434. "_customMaterial": null,
  5435. "_srcBlendFactor": 2,
  5436. "_dstBlendFactor": 4,
  5437. "_color": {
  5438. "__type__": "cc.Color",
  5439. "r": 255,
  5440. "g": 255,
  5441. "b": 255,
  5442. "a": 255
  5443. },
  5444. "_lineWidth": 1,
  5445. "_strokeColor": {
  5446. "__type__": "cc.Color",
  5447. "r": 0,
  5448. "g": 0,
  5449. "b": 0,
  5450. "a": 255
  5451. },
  5452. "_lineJoin": 2,
  5453. "_lineCap": 0,
  5454. "_fillColor": {
  5455. "__type__": "cc.Color",
  5456. "r": 255,
  5457. "g": 255,
  5458. "b": 255,
  5459. "a": 0
  5460. },
  5461. "_miterLimit": 10,
  5462. "_id": ""
  5463. },
  5464. {
  5465. "__type__": "cc.CompPrefabInfo",
  5466. "fileId": "f0m/Q4eVdK4IRghgjfswp4"
  5467. },
  5468. {
  5469. "__type__": "f61f1g/KmdHY5IHRjOP6a4U",
  5470. "_name": "",
  5471. "_objFlags": 0,
  5472. "__editorExtras__": {},
  5473. "node": {
  5474. "__id__": 98
  5475. },
  5476. "_enabled": true,
  5477. "__prefab": {
  5478. "__id__": 266
  5479. },
  5480. "_id": ""
  5481. },
  5482. {
  5483. "__type__": "cc.CompPrefabInfo",
  5484. "fileId": "ff0sfkqgxMiYC45B8oUeAf"
  5485. },
  5486. {
  5487. "__type__": "cc.Widget",
  5488. "_name": "",
  5489. "_objFlags": 0,
  5490. "__editorExtras__": {},
  5491. "node": {
  5492. "__id__": 98
  5493. },
  5494. "_enabled": true,
  5495. "__prefab": {
  5496. "__id__": 268
  5497. },
  5498. "_alignFlags": 45,
  5499. "_target": null,
  5500. "_left": 0,
  5501. "_right": 0,
  5502. "_top": 224,
  5503. "_bottom": 336,
  5504. "_horizontalCenter": 0,
  5505. "_verticalCenter": 0,
  5506. "_isAbsLeft": true,
  5507. "_isAbsRight": true,
  5508. "_isAbsTop": true,
  5509. "_isAbsBottom": true,
  5510. "_isAbsHorizontalCenter": true,
  5511. "_isAbsVerticalCenter": true,
  5512. "_originalWidth": 720,
  5513. "_originalHeight": 720,
  5514. "_alignMode": 2,
  5515. "_lockFlags": 0,
  5516. "_id": ""
  5517. },
  5518. {
  5519. "__type__": "cc.CompPrefabInfo",
  5520. "fileId": "f1queg1F9KK6lyvrdq4z1p"
  5521. },
  5522. {
  5523. "__type__": "cc.PrefabInfo",
  5524. "root": {
  5525. "__id__": 1
  5526. },
  5527. "asset": {
  5528. "__id__": 0
  5529. },
  5530. "fileId": "3165PePgBFnrVlD6gq02nx",
  5531. "instance": null,
  5532. "targetOverrides": null,
  5533. "nestedPrefabInstanceRoots": null
  5534. },
  5535. {
  5536. "__type__": "cc.UITransform",
  5537. "_name": "",
  5538. "_objFlags": 0,
  5539. "__editorExtras__": {},
  5540. "node": {
  5541. "__id__": 1
  5542. },
  5543. "_enabled": true,
  5544. "__prefab": {
  5545. "__id__": 271
  5546. },
  5547. "_contentSize": {
  5548. "__type__": "cc.Size",
  5549. "width": 720,
  5550. "height": 1280
  5551. },
  5552. "_anchorPoint": {
  5553. "__type__": "cc.Vec2",
  5554. "x": 0.5,
  5555. "y": 0.5
  5556. },
  5557. "_id": ""
  5558. },
  5559. {
  5560. "__type__": "cc.CompPrefabInfo",
  5561. "fileId": "b30K2mmSNKh6Q8O1BM1EjJ"
  5562. },
  5563. {
  5564. "__type__": "cc.Widget",
  5565. "_name": "",
  5566. "_objFlags": 0,
  5567. "__editorExtras__": {},
  5568. "node": {
  5569. "__id__": 1
  5570. },
  5571. "_enabled": true,
  5572. "__prefab": {
  5573. "__id__": 273
  5574. },
  5575. "_alignFlags": 45,
  5576. "_target": null,
  5577. "_left": 0,
  5578. "_right": 0,
  5579. "_top": 0,
  5580. "_bottom": 0,
  5581. "_horizontalCenter": 0,
  5582. "_verticalCenter": 0,
  5583. "_isAbsLeft": true,
  5584. "_isAbsRight": true,
  5585. "_isAbsTop": true,
  5586. "_isAbsBottom": true,
  5587. "_isAbsHorizontalCenter": true,
  5588. "_isAbsVerticalCenter": true,
  5589. "_originalWidth": 100,
  5590. "_originalHeight": 100,
  5591. "_alignMode": 2,
  5592. "_lockFlags": 0,
  5593. "_id": ""
  5594. },
  5595. {
  5596. "__type__": "cc.CompPrefabInfo",
  5597. "fileId": "047bITCtxDz7pJrLXoiQwA"
  5598. },
  5599. {
  5600. "__type__": "95cf8933n5L15reWuuBAxjt",
  5601. "_name": "",
  5602. "_objFlags": 0,
  5603. "__editorExtras__": {},
  5604. "node": {
  5605. "__id__": 1
  5606. },
  5607. "_enabled": true,
  5608. "__prefab": {
  5609. "__id__": 275
  5610. },
  5611. "arr_tishi": [
  5612. "",
  5613. "",
  5614. "",
  5615. "",
  5616. "",
  5617. "",
  5618. "",
  5619. "",
  5620. "",
  5621. "滑动移开右下方的扁竹篮,露出下面的电动老鼠玩具",
  5622. "",
  5623. "滑动左侧的柴堆,移开上面几根木头,露出里面的一盒火柴"
  5624. ],
  5625. "tishi_indexs": [
  5626. 9,
  5627. 11
  5628. ],
  5629. "node_zhanai": {
  5630. "__id__": 228
  5631. },
  5632. "node_zhanai2": {
  5633. "__id__": 220
  5634. },
  5635. "_id": ""
  5636. },
  5637. {
  5638. "__type__": "cc.CompPrefabInfo",
  5639. "fileId": "5aQ8hr8JFJ+704FTj+lLDM"
  5640. },
  5641. {
  5642. "__type__": "cc.PrefabInfo",
  5643. "root": {
  5644. "__id__": 1
  5645. },
  5646. "asset": {
  5647. "__id__": 0
  5648. },
  5649. "fileId": "84EJqt0yZOs7GBZWZ8Rsvl",
  5650. "instance": null,
  5651. "targetOverrides": null
  5652. }
  5653. ]