game.prefab 85 KB

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