game.prefab 97 KB

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