game.prefab 93 KB

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