lvl_2.prefab 77 KB

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