ActionSystem.prefab 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1001 &100100000
  4. Prefab:
  5. m_ObjectHideFlags: 1
  6. serializedVersion: 2
  7. m_Modification:
  8. m_TransformParent: {fileID: 0}
  9. m_Modifications: []
  10. m_RemovedComponents: []
  11. m_ParentPrefab: {fileID: 0}
  12. m_RootGameObject: {fileID: 1294521219064336}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1015205079863316
  15. GameObject:
  16. m_ObjectHideFlags: 1
  17. m_PrefabParentObject: {fileID: 0}
  18. m_PrefabInternal: {fileID: 100100000}
  19. serializedVersion: 5
  20. m_Component:
  21. - component: {fileID: 4270230676025686}
  22. - component: {fileID: 20958118981660222}
  23. m_Layer: 0
  24. m_Name: Eye Mono
  25. m_TagString: Untagged
  26. m_Icon: {fileID: 0}
  27. m_NavMeshLayer: 0
  28. m_StaticEditorFlags: 0
  29. m_IsActive: 0
  30. --- !u!1 &1021210004538364
  31. GameObject:
  32. m_ObjectHideFlags: 1
  33. m_PrefabParentObject: {fileID: 0}
  34. m_PrefabInternal: {fileID: 100100000}
  35. serializedVersion: 5
  36. m_Component:
  37. - component: {fileID: 4876869257575508}
  38. - component: {fileID: 33449208629184662}
  39. - component: {fileID: 23698246664400606}
  40. m_Layer: 0
  41. m_Name: TpPosition
  42. m_TagString: Untagged
  43. m_Icon: {fileID: 0}
  44. m_NavMeshLayer: 0
  45. m_StaticEditorFlags: 0
  46. m_IsActive: 1
  47. --- !u!1 &1043270915479188
  48. GameObject:
  49. m_ObjectHideFlags: 1
  50. m_PrefabParentObject: {fileID: 0}
  51. m_PrefabInternal: {fileID: 100100000}
  52. serializedVersion: 5
  53. m_Component:
  54. - component: {fileID: 4953600853326284}
  55. - component: {fileID: 33301587952549738}
  56. - component: {fileID: 23991992014464340}
  57. m_Layer: 0
  58. m_Name: Power
  59. m_TagString: Untagged
  60. m_Icon: {fileID: 0}
  61. m_NavMeshLayer: 0
  62. m_StaticEditorFlags: 0
  63. m_IsActive: 1
  64. --- !u!1 &1075656691178396
  65. GameObject:
  66. m_ObjectHideFlags: 1
  67. m_PrefabParentObject: {fileID: 0}
  68. m_PrefabInternal: {fileID: 100100000}
  69. serializedVersion: 5
  70. m_Component:
  71. - component: {fileID: 4469108814882786}
  72. - component: {fileID: 212891644315396748}
  73. m_Layer: 0
  74. m_Name: ningshi0002 (13)
  75. m_TagString: Untagged
  76. m_Icon: {fileID: 0}
  77. m_NavMeshLayer: 0
  78. m_StaticEditorFlags: 0
  79. m_IsActive: 1
  80. --- !u!1 &1082353721071874
  81. GameObject:
  82. m_ObjectHideFlags: 0
  83. m_PrefabParentObject: {fileID: 0}
  84. m_PrefabInternal: {fileID: 100100000}
  85. serializedVersion: 5
  86. m_Component:
  87. - component: {fileID: 4876801941165726}
  88. - component: {fileID: 114098219620512812}
  89. m_Layer: 0
  90. m_Name: SvrCamera
  91. m_TagString: SvrCamera
  92. m_Icon: {fileID: 0}
  93. m_NavMeshLayer: 0
  94. m_StaticEditorFlags: 0
  95. m_IsActive: 1
  96. --- !u!1 &1096901707509138
  97. GameObject:
  98. m_ObjectHideFlags: 1
  99. m_PrefabParentObject: {fileID: 0}
  100. m_PrefabInternal: {fileID: 100100000}
  101. serializedVersion: 5
  102. m_Component:
  103. - component: {fileID: 4890447366637020}
  104. - component: {fileID: 212317236645125964}
  105. m_Layer: 0
  106. m_Name: ningshi0002 (21)
  107. m_TagString: Untagged
  108. m_Icon: {fileID: 0}
  109. m_NavMeshLayer: 0
  110. m_StaticEditorFlags: 0
  111. m_IsActive: 1
  112. --- !u!1 &1100665268516136
  113. GameObject:
  114. m_ObjectHideFlags: 1
  115. m_PrefabParentObject: {fileID: 0}
  116. m_PrefabInternal: {fileID: 100100000}
  117. serializedVersion: 5
  118. m_Component:
  119. - component: {fileID: 4254979074740214}
  120. - component: {fileID: 212119702698572300}
  121. m_Layer: 0
  122. m_Name: ningshi0002 (16)
  123. m_TagString: Untagged
  124. m_Icon: {fileID: 0}
  125. m_NavMeshLayer: 0
  126. m_StaticEditorFlags: 0
  127. m_IsActive: 1
  128. --- !u!1 &1146501631072402
  129. GameObject:
  130. m_ObjectHideFlags: 1
  131. m_PrefabParentObject: {fileID: 0}
  132. m_PrefabInternal: {fileID: 100100000}
  133. serializedVersion: 5
  134. m_Component:
  135. - component: {fileID: 4832913842568894}
  136. - component: {fileID: 33908665617237894}
  137. - component: {fileID: 23932059663633580}
  138. - component: {fileID: 95847449239833238}
  139. m_Layer: 0
  140. m_Name: ball
  141. m_TagString: Untagged
  142. m_Icon: {fileID: 0}
  143. m_NavMeshLayer: 0
  144. m_StaticEditorFlags: 0
  145. m_IsActive: 1
  146. --- !u!1 &1174541670427696
  147. GameObject:
  148. m_ObjectHideFlags: 1
  149. m_PrefabParentObject: {fileID: 0}
  150. m_PrefabInternal: {fileID: 100100000}
  151. serializedVersion: 5
  152. m_Component:
  153. - component: {fileID: 4865815721467250}
  154. m_Layer: 0
  155. m_Name: gesturePoint
  156. m_TagString: Untagged
  157. m_Icon: {fileID: 0}
  158. m_NavMeshLayer: 0
  159. m_StaticEditorFlags: 0
  160. m_IsActive: 0
  161. --- !u!1 &1208700578151218
  162. GameObject:
  163. m_ObjectHideFlags: 1
  164. m_PrefabParentObject: {fileID: 0}
  165. m_PrefabInternal: {fileID: 100100000}
  166. serializedVersion: 5
  167. m_Component:
  168. - component: {fileID: 4739814862370592}
  169. - component: {fileID: 212795174595214126}
  170. m_Layer: 0
  171. m_Name: ningshi0002
  172. m_TagString: Untagged
  173. m_Icon: {fileID: 0}
  174. m_NavMeshLayer: 0
  175. m_StaticEditorFlags: 0
  176. m_IsActive: 1
  177. --- !u!1 &1238134577842654
  178. GameObject:
  179. m_ObjectHideFlags: 1
  180. m_PrefabParentObject: {fileID: 0}
  181. m_PrefabInternal: {fileID: 100100000}
  182. serializedVersion: 5
  183. m_Component:
  184. - component: {fileID: 4628809454443238}
  185. - component: {fileID: 212244956586271678}
  186. m_Layer: 0
  187. m_Name: ningshi0002 (15)
  188. m_TagString: Untagged
  189. m_Icon: {fileID: 0}
  190. m_NavMeshLayer: 0
  191. m_StaticEditorFlags: 0
  192. m_IsActive: 1
  193. --- !u!1 &1268970512877320
  194. GameObject:
  195. m_ObjectHideFlags: 1
  196. m_PrefabParentObject: {fileID: 0}
  197. m_PrefabInternal: {fileID: 100100000}
  198. serializedVersion: 5
  199. m_Component:
  200. - component: {fileID: 4198279302467098}
  201. - component: {fileID: 212857852735331454}
  202. m_Layer: 0
  203. m_Name: ningshi0002 (5)
  204. m_TagString: Untagged
  205. m_Icon: {fileID: 0}
  206. m_NavMeshLayer: 0
  207. m_StaticEditorFlags: 0
  208. m_IsActive: 1
  209. --- !u!1 &1274723906782620
  210. GameObject:
  211. m_ObjectHideFlags: 1
  212. m_PrefabParentObject: {fileID: 0}
  213. m_PrefabInternal: {fileID: 100100000}
  214. serializedVersion: 5
  215. m_Component:
  216. - component: {fileID: 4369963675030112}
  217. - component: {fileID: 20454870205990702}
  218. m_Layer: 0
  219. m_Name: Overlay Mono
  220. m_TagString: Untagged
  221. m_Icon: {fileID: 0}
  222. m_NavMeshLayer: 0
  223. m_StaticEditorFlags: 0
  224. m_IsActive: 0
  225. --- !u!1 &1294521219064336
  226. GameObject:
  227. m_ObjectHideFlags: 0
  228. m_PrefabParentObject: {fileID: 0}
  229. m_PrefabInternal: {fileID: 100100000}
  230. serializedVersion: 5
  231. m_Component:
  232. - component: {fileID: 4720197992379418}
  233. - component: {fileID: 114970540200081164}
  234. m_Layer: 0
  235. m_Name: ActionSystem
  236. m_TagString: Untagged
  237. m_Icon: {fileID: 0}
  238. m_NavMeshLayer: 0
  239. m_StaticEditorFlags: 0
  240. m_IsActive: 1
  241. --- !u!1 &1300326281954026
  242. GameObject:
  243. m_ObjectHideFlags: 1
  244. m_PrefabParentObject: {fileID: 0}
  245. m_PrefabInternal: {fileID: 100100000}
  246. serializedVersion: 5
  247. m_Component:
  248. - component: {fileID: 4214516727652216}
  249. - component: {fileID: 95461007655097332}
  250. - component: {fileID: 114300070390400506}
  251. m_Layer: 0
  252. m_Name: K02
  253. m_TagString: Untagged
  254. m_Icon: {fileID: 0}
  255. m_NavMeshLayer: 0
  256. m_StaticEditorFlags: 0
  257. m_IsActive: 0
  258. --- !u!1 &1302699185281578
  259. GameObject:
  260. m_ObjectHideFlags: 1
  261. m_PrefabParentObject: {fileID: 0}
  262. m_PrefabInternal: {fileID: 100100000}
  263. serializedVersion: 5
  264. m_Component:
  265. - component: {fileID: 4774461529905366}
  266. - component: {fileID: 212229318468736566}
  267. m_Layer: 0
  268. m_Name: ningshi0002 (10)
  269. m_TagString: Untagged
  270. m_Icon: {fileID: 0}
  271. m_NavMeshLayer: 0
  272. m_StaticEditorFlags: 0
  273. m_IsActive: 1
  274. --- !u!1 &1321107910127838
  275. GameObject:
  276. m_ObjectHideFlags: 1
  277. m_PrefabParentObject: {fileID: 0}
  278. m_PrefabInternal: {fileID: 100100000}
  279. serializedVersion: 5
  280. m_Component:
  281. - component: {fileID: 4843171714060610}
  282. - component: {fileID: 212328168738625734}
  283. m_Layer: 0
  284. m_Name: ningshi0002 (20)
  285. m_TagString: Untagged
  286. m_Icon: {fileID: 0}
  287. m_NavMeshLayer: 0
  288. m_StaticEditorFlags: 0
  289. m_IsActive: 1
  290. --- !u!1 &1324525766445254
  291. GameObject:
  292. m_ObjectHideFlags: 1
  293. m_PrefabParentObject: {fileID: 0}
  294. m_PrefabInternal: {fileID: 100100000}
  295. serializedVersion: 5
  296. m_Component:
  297. - component: {fileID: 4849891999306508}
  298. - component: {fileID: 212429853278362596}
  299. m_Layer: 0
  300. m_Name: ningshi0002 (7)
  301. m_TagString: Untagged
  302. m_Icon: {fileID: 0}
  303. m_NavMeshLayer: 0
  304. m_StaticEditorFlags: 0
  305. m_IsActive: 1
  306. --- !u!1 &1328790797853220
  307. GameObject:
  308. m_ObjectHideFlags: 1
  309. m_PrefabParentObject: {fileID: 0}
  310. m_PrefabInternal: {fileID: 100100000}
  311. serializedVersion: 5
  312. m_Component:
  313. - component: {fileID: 4878016747271834}
  314. - component: {fileID: 212393918723628180}
  315. m_Layer: 0
  316. m_Name: ningshi0002 (18)
  317. m_TagString: Untagged
  318. m_Icon: {fileID: 0}
  319. m_NavMeshLayer: 0
  320. m_StaticEditorFlags: 0
  321. m_IsActive: 1
  322. --- !u!1 &1350586147218432
  323. GameObject:
  324. m_ObjectHideFlags: 1
  325. m_PrefabParentObject: {fileID: 0}
  326. m_PrefabInternal: {fileID: 100100000}
  327. serializedVersion: 5
  328. m_Component:
  329. - component: {fileID: 4860302598176436}
  330. - component: {fileID: 212692484945669948}
  331. m_Layer: 0
  332. m_Name: ningshi0002 (24)
  333. m_TagString: Untagged
  334. m_Icon: {fileID: 0}
  335. m_NavMeshLayer: 0
  336. m_StaticEditorFlags: 0
  337. m_IsActive: 1
  338. --- !u!1 &1354915284334524
  339. GameObject:
  340. m_ObjectHideFlags: 1
  341. m_PrefabParentObject: {fileID: 0}
  342. m_PrefabInternal: {fileID: 100100000}
  343. serializedVersion: 5
  344. m_Component:
  345. - component: {fileID: 4673831139479862}
  346. - component: {fileID: 212546426076160250}
  347. m_Layer: 0
  348. m_Name: ningshi0002 (12)
  349. m_TagString: Untagged
  350. m_Icon: {fileID: 0}
  351. m_NavMeshLayer: 0
  352. m_StaticEditorFlags: 0
  353. m_IsActive: 1
  354. --- !u!1 &1364410240662954
  355. GameObject:
  356. m_ObjectHideFlags: 1
  357. m_PrefabParentObject: {fileID: 0}
  358. m_PrefabInternal: {fileID: 100100000}
  359. serializedVersion: 5
  360. m_Component:
  361. - component: {fileID: 4369060881649884}
  362. - component: {fileID: 20899961603007150}
  363. m_Layer: 0
  364. m_Name: Eye Right
  365. m_TagString: Untagged
  366. m_Icon: {fileID: 0}
  367. m_NavMeshLayer: 0
  368. m_StaticEditorFlags: 0
  369. m_IsActive: 1
  370. --- !u!1 &1374156469221360
  371. GameObject:
  372. m_ObjectHideFlags: 1
  373. m_PrefabParentObject: {fileID: 0}
  374. m_PrefabInternal: {fileID: 100100000}
  375. serializedVersion: 5
  376. m_Component:
  377. - component: {fileID: 4313124065424330}
  378. - component: {fileID: 212781700749731272}
  379. m_Layer: 0
  380. m_Name: ningshi0002 (3)
  381. m_TagString: Untagged
  382. m_Icon: {fileID: 0}
  383. m_NavMeshLayer: 0
  384. m_StaticEditorFlags: 0
  385. m_IsActive: 1
  386. --- !u!1 &1379326223157830
  387. GameObject:
  388. m_ObjectHideFlags: 1
  389. m_PrefabParentObject: {fileID: 0}
  390. m_PrefabInternal: {fileID: 100100000}
  391. serializedVersion: 5
  392. m_Component:
  393. - component: {fileID: 4432275751617070}
  394. - component: {fileID: 212412964775961736}
  395. m_Layer: 0
  396. m_Name: ningshi0002 (19)
  397. m_TagString: Untagged
  398. m_Icon: {fileID: 0}
  399. m_NavMeshLayer: 0
  400. m_StaticEditorFlags: 0
  401. m_IsActive: 1
  402. --- !u!1 &1379767780872134
  403. GameObject:
  404. m_ObjectHideFlags: 1
  405. m_PrefabParentObject: {fileID: 0}
  406. m_PrefabInternal: {fileID: 100100000}
  407. serializedVersion: 5
  408. m_Component:
  409. - component: {fileID: 4064886234197702}
  410. - component: {fileID: 33290694085283334}
  411. - component: {fileID: 23173827596008832}
  412. m_Layer: 0
  413. m_Name: TpPosition
  414. m_TagString: Untagged
  415. m_Icon: {fileID: 0}
  416. m_NavMeshLayer: 0
  417. m_StaticEditorFlags: 0
  418. m_IsActive: 1
  419. --- !u!1 &1385807594792148
  420. GameObject:
  421. m_ObjectHideFlags: 1
  422. m_PrefabParentObject: {fileID: 0}
  423. m_PrefabInternal: {fileID: 100100000}
  424. serializedVersion: 5
  425. m_Component:
  426. - component: {fileID: 4488586842546758}
  427. - component: {fileID: 33944952337942220}
  428. - component: {fileID: 23525455966816958}
  429. m_Layer: 0
  430. m_Name: Body
  431. m_TagString: Untagged
  432. m_Icon: {fileID: 0}
  433. m_NavMeshLayer: 0
  434. m_StaticEditorFlags: 0
  435. m_IsActive: 1
  436. --- !u!1 &1397213865582930
  437. GameObject:
  438. m_ObjectHideFlags: 1
  439. m_PrefabParentObject: {fileID: 0}
  440. m_PrefabInternal: {fileID: 100100000}
  441. serializedVersion: 5
  442. m_Component:
  443. - component: {fileID: 4900857244640378}
  444. - component: {fileID: 114411551736270582}
  445. m_Layer: 0
  446. m_Name: K07
  447. m_TagString: Untagged
  448. m_Icon: {fileID: 0}
  449. m_NavMeshLayer: 0
  450. m_StaticEditorFlags: 0
  451. m_IsActive: 0
  452. --- !u!1 &1407198949309676
  453. GameObject:
  454. m_ObjectHideFlags: 1
  455. m_PrefabParentObject: {fileID: 0}
  456. m_PrefabInternal: {fileID: 100100000}
  457. serializedVersion: 5
  458. m_Component:
  459. - component: {fileID: 4445087851028478}
  460. - component: {fileID: 33838245989137428}
  461. - component: {fileID: 23430685652239280}
  462. m_Layer: 0
  463. m_Name: Power
  464. m_TagString: Untagged
  465. m_Icon: {fileID: 0}
  466. m_NavMeshLayer: 0
  467. m_StaticEditorFlags: 0
  468. m_IsActive: 1
  469. --- !u!1 &1460681799994562
  470. GameObject:
  471. m_ObjectHideFlags: 1
  472. m_PrefabParentObject: {fileID: 0}
  473. m_PrefabInternal: {fileID: 100100000}
  474. serializedVersion: 5
  475. m_Component:
  476. - component: {fileID: 4324502088704734}
  477. - component: {fileID: 33691966190885564}
  478. - component: {fileID: 23992908614689102}
  479. m_Layer: 0
  480. m_Name: Tp
  481. m_TagString: Untagged
  482. m_Icon: {fileID: 0}
  483. m_NavMeshLayer: 0
  484. m_StaticEditorFlags: 0
  485. m_IsActive: 1
  486. --- !u!1 &1467161394575342
  487. GameObject:
  488. m_ObjectHideFlags: 1
  489. m_PrefabParentObject: {fileID: 0}
  490. m_PrefabInternal: {fileID: 100100000}
  491. serializedVersion: 5
  492. m_Component:
  493. - component: {fileID: 4649080974982138}
  494. - component: {fileID: 212491090591271266}
  495. m_Layer: 0
  496. m_Name: ningshi0002 (14)
  497. m_TagString: Untagged
  498. m_Icon: {fileID: 0}
  499. m_NavMeshLayer: 0
  500. m_StaticEditorFlags: 0
  501. m_IsActive: 1
  502. --- !u!1 &1496381286723346
  503. GameObject:
  504. m_ObjectHideFlags: 1
  505. m_PrefabParentObject: {fileID: 0}
  506. m_PrefabInternal: {fileID: 100100000}
  507. serializedVersion: 5
  508. m_Component:
  509. - component: {fileID: 4896094492956928}
  510. - component: {fileID: 212332543266847098}
  511. m_Layer: 0
  512. m_Name: ningshi0002 (4)
  513. m_TagString: Untagged
  514. m_Icon: {fileID: 0}
  515. m_NavMeshLayer: 0
  516. m_StaticEditorFlags: 0
  517. m_IsActive: 1
  518. --- !u!1 &1501734189842776
  519. GameObject:
  520. m_ObjectHideFlags: 1
  521. m_PrefabParentObject: {fileID: 0}
  522. m_PrefabInternal: {fileID: 100100000}
  523. serializedVersion: 5
  524. m_Component:
  525. - component: {fileID: 4220876299151102}
  526. - component: {fileID: 212471072377590064}
  527. - component: {fileID: 95719277355437428}
  528. m_Layer: 0
  529. m_Name: gazeLoading
  530. m_TagString: Untagged
  531. m_Icon: {fileID: 0}
  532. m_NavMeshLayer: 0
  533. m_StaticEditorFlags: 0
  534. m_IsActive: 1
  535. --- !u!1 &1503711807111756
  536. GameObject:
  537. m_ObjectHideFlags: 1
  538. m_PrefabParentObject: {fileID: 0}
  539. m_PrefabInternal: {fileID: 100100000}
  540. serializedVersion: 5
  541. m_Component:
  542. - component: {fileID: 4759464816587836}
  543. - component: {fileID: 20461493053110492}
  544. m_Layer: 0
  545. m_Name: Overlay Right
  546. m_TagString: Untagged
  547. m_Icon: {fileID: 0}
  548. m_NavMeshLayer: 0
  549. m_StaticEditorFlags: 0
  550. m_IsActive: 0
  551. --- !u!1 &1527641087798164
  552. GameObject:
  553. m_ObjectHideFlags: 1
  554. m_PrefabParentObject: {fileID: 0}
  555. m_PrefabInternal: {fileID: 100100000}
  556. serializedVersion: 5
  557. m_Component:
  558. - component: {fileID: 4683247027840708}
  559. - component: {fileID: 212715513589843310}
  560. m_Layer: 0
  561. m_Name: ningshi0002 (9)
  562. m_TagString: Untagged
  563. m_Icon: {fileID: 0}
  564. m_NavMeshLayer: 0
  565. m_StaticEditorFlags: 0
  566. m_IsActive: 1
  567. --- !u!1 &1532928450161934
  568. GameObject:
  569. m_ObjectHideFlags: 1
  570. m_PrefabParentObject: {fileID: 0}
  571. m_PrefabInternal: {fileID: 100100000}
  572. serializedVersion: 5
  573. m_Component:
  574. - component: {fileID: 4725474468302338}
  575. - component: {fileID: 114780193328442540}
  576. m_Layer: 0
  577. m_Name: focus
  578. m_TagString: Untagged
  579. m_Icon: {fileID: 0}
  580. m_NavMeshLayer: 0
  581. m_StaticEditorFlags: 0
  582. m_IsActive: 1
  583. --- !u!1 &1555137522558926
  584. GameObject:
  585. m_ObjectHideFlags: 1
  586. m_PrefabParentObject: {fileID: 0}
  587. m_PrefabInternal: {fileID: 100100000}
  588. serializedVersion: 5
  589. m_Component:
  590. - component: {fileID: 4809379182671494}
  591. m_Layer: 0
  592. m_Name: Head
  593. m_TagString: Untagged
  594. m_Icon: {fileID: 0}
  595. m_NavMeshLayer: 0
  596. m_StaticEditorFlags: 0
  597. m_IsActive: 1
  598. --- !u!1 &1560323261863206
  599. GameObject:
  600. m_ObjectHideFlags: 1
  601. m_PrefabParentObject: {fileID: 0}
  602. m_PrefabInternal: {fileID: 100100000}
  603. serializedVersion: 5
  604. m_Component:
  605. - component: {fileID: 4217588916474940}
  606. - component: {fileID: 212975815470547082}
  607. m_Layer: 0
  608. m_Name: ningshi0002 (2)
  609. m_TagString: Untagged
  610. m_Icon: {fileID: 0}
  611. m_NavMeshLayer: 0
  612. m_StaticEditorFlags: 0
  613. m_IsActive: 1
  614. --- !u!1 &1576927553798042
  615. GameObject:
  616. m_ObjectHideFlags: 1
  617. m_PrefabParentObject: {fileID: 0}
  618. m_PrefabInternal: {fileID: 100100000}
  619. serializedVersion: 5
  620. m_Component:
  621. - component: {fileID: 4044038758367058}
  622. - component: {fileID: 114918812589586918}
  623. m_Layer: 0
  624. m_Name: focusLight
  625. m_TagString: Untagged
  626. m_Icon: {fileID: 0}
  627. m_NavMeshLayer: 0
  628. m_StaticEditorFlags: 0
  629. m_IsActive: 1
  630. --- !u!1 &1597115745663624
  631. GameObject:
  632. m_ObjectHideFlags: 1
  633. m_PrefabParentObject: {fileID: 0}
  634. m_PrefabInternal: {fileID: 100100000}
  635. serializedVersion: 5
  636. m_Component:
  637. - component: {fileID: 4177144781231092}
  638. - component: {fileID: 33466522464460754}
  639. - component: {fileID: 23576315961231554}
  640. m_Layer: 0
  641. m_Name: Back
  642. m_TagString: Untagged
  643. m_Icon: {fileID: 0}
  644. m_NavMeshLayer: 0
  645. m_StaticEditorFlags: 0
  646. m_IsActive: 1
  647. --- !u!1 &1618772780716692
  648. GameObject:
  649. m_ObjectHideFlags: 1
  650. m_PrefabParentObject: {fileID: 0}
  651. m_PrefabInternal: {fileID: 100100000}
  652. serializedVersion: 5
  653. m_Component:
  654. - component: {fileID: 4406299724247258}
  655. m_Layer: 0
  656. m_Name: clickPoint
  657. m_TagString: Untagged
  658. m_Icon: {fileID: 0}
  659. m_NavMeshLayer: 0
  660. m_StaticEditorFlags: 0
  661. m_IsActive: 0
  662. --- !u!1 &1668480619314178
  663. GameObject:
  664. m_ObjectHideFlags: 0
  665. m_PrefabParentObject: {fileID: 0}
  666. m_PrefabInternal: {fileID: 100100000}
  667. serializedVersion: 5
  668. m_Component:
  669. - component: {fileID: 4937183475884164}
  670. - component: {fileID: 114608496240376138}
  671. m_Layer: 0
  672. m_Name: BlueToothHandle
  673. m_TagString: Untagged
  674. m_Icon: {fileID: 0}
  675. m_NavMeshLayer: 0
  676. m_StaticEditorFlags: 0
  677. m_IsActive: 0
  678. --- !u!1 &1679942072902480
  679. GameObject:
  680. m_ObjectHideFlags: 1
  681. m_PrefabParentObject: {fileID: 0}
  682. m_PrefabInternal: {fileID: 100100000}
  683. serializedVersion: 5
  684. m_Component:
  685. - component: {fileID: 4111035495765318}
  686. - component: {fileID: 33589183027348256}
  687. - component: {fileID: 23255151372307716}
  688. m_Layer: 0
  689. m_Name: Body
  690. m_TagString: Untagged
  691. m_Icon: {fileID: 0}
  692. m_NavMeshLayer: 0
  693. m_StaticEditorFlags: 0
  694. m_IsActive: 1
  695. --- !u!1 &1680978486835952
  696. GameObject:
  697. m_ObjectHideFlags: 1
  698. m_PrefabParentObject: {fileID: 0}
  699. m_PrefabInternal: {fileID: 100100000}
  700. serializedVersion: 5
  701. m_Component:
  702. - component: {fileID: 4850728206387594}
  703. - component: {fileID: 212021385287634724}
  704. m_Layer: 0
  705. m_Name: ningshi0002 (11)
  706. m_TagString: Untagged
  707. m_Icon: {fileID: 0}
  708. m_NavMeshLayer: 0
  709. m_StaticEditorFlags: 0
  710. m_IsActive: 1
  711. --- !u!1 &1687990807718132
  712. GameObject:
  713. m_ObjectHideFlags: 1
  714. m_PrefabParentObject: {fileID: 0}
  715. m_PrefabInternal: {fileID: 100100000}
  716. serializedVersion: 5
  717. m_Component:
  718. - component: {fileID: 4218817719632920}
  719. - component: {fileID: 20320088114743364}
  720. - component: {fileID: 81270192313429134}
  721. m_Layer: 0
  722. m_Name: Eye Left
  723. m_TagString: Untagged
  724. m_Icon: {fileID: 0}
  725. m_NavMeshLayer: 0
  726. m_StaticEditorFlags: 0
  727. m_IsActive: 1
  728. --- !u!1 &1689971289014064
  729. GameObject:
  730. m_ObjectHideFlags: 1
  731. m_PrefabParentObject: {fileID: 0}
  732. m_PrefabInternal: {fileID: 100100000}
  733. serializedVersion: 5
  734. m_Component:
  735. - component: {fileID: 4295676916313576}
  736. - component: {fileID: 212166773954083466}
  737. m_Layer: 0
  738. m_Name: ningshi0002 (23)
  739. m_TagString: Untagged
  740. m_Icon: {fileID: 0}
  741. m_NavMeshLayer: 0
  742. m_StaticEditorFlags: 0
  743. m_IsActive: 1
  744. --- !u!1 &1698489500805430
  745. GameObject:
  746. m_ObjectHideFlags: 1
  747. m_PrefabParentObject: {fileID: 0}
  748. m_PrefabInternal: {fileID: 100100000}
  749. serializedVersion: 5
  750. m_Component:
  751. - component: {fileID: 4675000314425852}
  752. - component: {fileID: 212580965120450408}
  753. m_Layer: 0
  754. m_Name: ningshi0002 (22)
  755. m_TagString: Untagged
  756. m_Icon: {fileID: 0}
  757. m_NavMeshLayer: 0
  758. m_StaticEditorFlags: 0
  759. m_IsActive: 1
  760. --- !u!1 &1708315818472814
  761. GameObject:
  762. m_ObjectHideFlags: 1
  763. m_PrefabParentObject: {fileID: 0}
  764. m_PrefabInternal: {fileID: 100100000}
  765. serializedVersion: 5
  766. m_Component:
  767. - component: {fileID: 4281915471310360}
  768. m_Layer: 0
  769. m_Name: focusItem
  770. m_TagString: Untagged
  771. m_Icon: {fileID: 0}
  772. m_NavMeshLayer: 0
  773. m_StaticEditorFlags: 0
  774. m_IsActive: 1
  775. --- !u!1 &1719550069148118
  776. GameObject:
  777. m_ObjectHideFlags: 1
  778. m_PrefabParentObject: {fileID: 0}
  779. m_PrefabInternal: {fileID: 100100000}
  780. serializedVersion: 5
  781. m_Component:
  782. - component: {fileID: 4399681120828764}
  783. m_Layer: 0
  784. m_Name: quan
  785. m_TagString: Untagged
  786. m_Icon: {fileID: 0}
  787. m_NavMeshLayer: 0
  788. m_StaticEditorFlags: 0
  789. m_IsActive: 1
  790. --- !u!1 &1754261937116598
  791. GameObject:
  792. m_ObjectHideFlags: 1
  793. m_PrefabParentObject: {fileID: 0}
  794. m_PrefabInternal: {fileID: 100100000}
  795. serializedVersion: 5
  796. m_Component:
  797. - component: {fileID: 4107759430112568}
  798. - component: {fileID: 108422988541680640}
  799. m_Layer: 0
  800. m_Name: Point light
  801. m_TagString: Untagged
  802. m_Icon: {fileID: 0}
  803. m_NavMeshLayer: 0
  804. m_StaticEditorFlags: 0
  805. m_IsActive: 1
  806. --- !u!1 &1761176673634732
  807. GameObject:
  808. m_ObjectHideFlags: 1
  809. m_PrefabParentObject: {fileID: 0}
  810. m_PrefabInternal: {fileID: 100100000}
  811. serializedVersion: 5
  812. m_Component:
  813. - component: {fileID: 4521949715071706}
  814. - component: {fileID: 33488830674401898}
  815. - component: {fileID: 65439044559410754}
  816. - component: {fileID: 23963143730638740}
  817. m_Layer: 0
  818. m_Name: Cube
  819. m_TagString: Untagged
  820. m_Icon: {fileID: 0}
  821. m_NavMeshLayer: 0
  822. m_StaticEditorFlags: 0
  823. m_IsActive: 0
  824. --- !u!1 &1778847862384098
  825. GameObject:
  826. m_ObjectHideFlags: 1
  827. m_PrefabParentObject: {fileID: 0}
  828. m_PrefabInternal: {fileID: 100100000}
  829. serializedVersion: 5
  830. m_Component:
  831. - component: {fileID: 4118420953897510}
  832. - component: {fileID: 33936683324148390}
  833. - component: {fileID: 23833625919228672}
  834. m_Layer: 0
  835. m_Name: Trigger
  836. m_TagString: Untagged
  837. m_Icon: {fileID: 0}
  838. m_NavMeshLayer: 0
  839. m_StaticEditorFlags: 0
  840. m_IsActive: 1
  841. --- !u!1 &1784551452574438
  842. GameObject:
  843. m_ObjectHideFlags: 1
  844. m_PrefabParentObject: {fileID: 0}
  845. m_PrefabInternal: {fileID: 100100000}
  846. serializedVersion: 5
  847. m_Component:
  848. - component: {fileID: 4077701020143204}
  849. - component: {fileID: 212062884374788998}
  850. m_Layer: 0
  851. m_Name: ningshi0002 (17)
  852. m_TagString: Untagged
  853. m_Icon: {fileID: 0}
  854. m_NavMeshLayer: 0
  855. m_StaticEditorFlags: 0
  856. m_IsActive: 1
  857. --- !u!1 &1821209654602778
  858. GameObject:
  859. m_ObjectHideFlags: 1
  860. m_PrefabParentObject: {fileID: 0}
  861. m_PrefabInternal: {fileID: 100100000}
  862. serializedVersion: 5
  863. m_Component:
  864. - component: {fileID: 4041969455203692}
  865. - component: {fileID: 212575539292227668}
  866. m_Layer: 0
  867. m_Name: ningshi0002 (1)
  868. m_TagString: Untagged
  869. m_Icon: {fileID: 0}
  870. m_NavMeshLayer: 0
  871. m_StaticEditorFlags: 0
  872. m_IsActive: 1
  873. --- !u!1 &1838331599951758
  874. GameObject:
  875. m_ObjectHideFlags: 1
  876. m_PrefabParentObject: {fileID: 0}
  877. m_PrefabInternal: {fileID: 100100000}
  878. serializedVersion: 5
  879. m_Component:
  880. - component: {fileID: 4693725420361670}
  881. m_Layer: 0
  882. m_Name: MIA_Ctrl
  883. m_TagString: Untagged
  884. m_Icon: {fileID: 0}
  885. m_NavMeshLayer: 0
  886. m_StaticEditorFlags: 0
  887. m_IsActive: 1
  888. --- !u!1 &1843897232960780
  889. GameObject:
  890. m_ObjectHideFlags: 1
  891. m_PrefabParentObject: {fileID: 0}
  892. m_PrefabInternal: {fileID: 100100000}
  893. serializedVersion: 5
  894. m_Component:
  895. - component: {fileID: 4833222198800830}
  896. - component: {fileID: 114053476190485178}
  897. m_Layer: 0
  898. m_Name: Overlay Fade
  899. m_TagString: Untagged
  900. m_Icon: {fileID: 0}
  901. m_NavMeshLayer: 0
  902. m_StaticEditorFlags: 0
  903. m_IsActive: 1
  904. --- !u!1 &1844231281819750
  905. GameObject:
  906. m_ObjectHideFlags: 1
  907. m_PrefabParentObject: {fileID: 0}
  908. m_PrefabInternal: {fileID: 100100000}
  909. serializedVersion: 5
  910. m_Component:
  911. - component: {fileID: 4338119686699736}
  912. - component: {fileID: 33604472307167456}
  913. - component: {fileID: 23389030766378156}
  914. m_Layer: 0
  915. m_Name: Trigger
  916. m_TagString: Untagged
  917. m_Icon: {fileID: 0}
  918. m_NavMeshLayer: 0
  919. m_StaticEditorFlags: 0
  920. m_IsActive: 1
  921. --- !u!1 &1847767592272548
  922. GameObject:
  923. m_ObjectHideFlags: 1
  924. m_PrefabParentObject: {fileID: 0}
  925. m_PrefabInternal: {fileID: 100100000}
  926. serializedVersion: 5
  927. m_Component:
  928. - component: {fileID: 4362313158241814}
  929. - component: {fileID: 33054991263583400}
  930. - component: {fileID: 23747600240659170}
  931. - component: {fileID: 95624088995505412}
  932. m_Layer: 0
  933. m_Name: torus01
  934. m_TagString: Untagged
  935. m_Icon: {fileID: 0}
  936. m_NavMeshLayer: 0
  937. m_StaticEditorFlags: 0
  938. m_IsActive: 1
  939. --- !u!1 &1857813620353714
  940. GameObject:
  941. m_ObjectHideFlags: 1
  942. m_PrefabParentObject: {fileID: 0}
  943. m_PrefabInternal: {fileID: 100100000}
  944. serializedVersion: 5
  945. m_Component:
  946. - component: {fileID: 4993095893070850}
  947. - component: {fileID: 33703261319938940}
  948. - component: {fileID: 23118716930643858}
  949. - component: {fileID: 95893954905429186}
  950. m_Layer: 0
  951. m_Name: cylinder02
  952. m_TagString: Untagged
  953. m_Icon: {fileID: 0}
  954. m_NavMeshLayer: 0
  955. m_StaticEditorFlags: 0
  956. m_IsActive: 1
  957. --- !u!1 &1880338652899262
  958. GameObject:
  959. m_ObjectHideFlags: 1
  960. m_PrefabParentObject: {fileID: 0}
  961. m_PrefabInternal: {fileID: 100100000}
  962. serializedVersion: 5
  963. m_Component:
  964. - component: {fileID: 4966098716922840}
  965. - component: {fileID: 33148998424294172}
  966. - component: {fileID: 23183123319105950}
  967. m_Layer: 0
  968. m_Name: VolumeDown
  969. m_TagString: Untagged
  970. m_Icon: {fileID: 0}
  971. m_NavMeshLayer: 0
  972. m_StaticEditorFlags: 0
  973. m_IsActive: 1
  974. --- !u!1 &1910693291792744
  975. GameObject:
  976. m_ObjectHideFlags: 1
  977. m_PrefabParentObject: {fileID: 0}
  978. m_PrefabInternal: {fileID: 100100000}
  979. serializedVersion: 5
  980. m_Component:
  981. - component: {fileID: 4731909609222216}
  982. - component: {fileID: 33381082273219440}
  983. - component: {fileID: 23489904839521972}
  984. m_Layer: 0
  985. m_Name: VolumeUp
  986. m_TagString: Untagged
  987. m_Icon: {fileID: 0}
  988. m_NavMeshLayer: 0
  989. m_StaticEditorFlags: 0
  990. m_IsActive: 1
  991. --- !u!1 &1921623912379650
  992. GameObject:
  993. m_ObjectHideFlags: 1
  994. m_PrefabParentObject: {fileID: 0}
  995. m_PrefabInternal: {fileID: 100100000}
  996. serializedVersion: 5
  997. m_Component:
  998. - component: {fileID: 4765291579440340}
  999. - component: {fileID: 212323680589164910}
  1000. m_Layer: 0
  1001. m_Name: ningshi0002 (6)
  1002. m_TagString: Untagged
  1003. m_Icon: {fileID: 0}
  1004. m_NavMeshLayer: 0
  1005. m_StaticEditorFlags: 0
  1006. m_IsActive: 1
  1007. --- !u!1 &1921842542114302
  1008. GameObject:
  1009. m_ObjectHideFlags: 1
  1010. m_PrefabParentObject: {fileID: 0}
  1011. m_PrefabInternal: {fileID: 100100000}
  1012. serializedVersion: 5
  1013. m_Component:
  1014. - component: {fileID: 4731533429021426}
  1015. - component: {fileID: 20913649207440992}
  1016. m_Layer: 0
  1017. m_Name: Overlay Left
  1018. m_TagString: Untagged
  1019. m_Icon: {fileID: 0}
  1020. m_NavMeshLayer: 0
  1021. m_StaticEditorFlags: 0
  1022. m_IsActive: 0
  1023. --- !u!1 &1931012866338252
  1024. GameObject:
  1025. m_ObjectHideFlags: 1
  1026. m_PrefabParentObject: {fileID: 0}
  1027. m_PrefabInternal: {fileID: 100100000}
  1028. serializedVersion: 5
  1029. m_Component:
  1030. - component: {fileID: 4007200649572484}
  1031. - component: {fileID: 120549355705370898}
  1032. m_Layer: 0
  1033. m_Name: liner
  1034. m_TagString: Untagged
  1035. m_Icon: {fileID: 0}
  1036. m_NavMeshLayer: 0
  1037. m_StaticEditorFlags: 0
  1038. m_IsActive: 1
  1039. --- !u!1 &1955285811994900
  1040. GameObject:
  1041. m_ObjectHideFlags: 1
  1042. m_PrefabParentObject: {fileID: 0}
  1043. m_PrefabInternal: {fileID: 100100000}
  1044. serializedVersion: 5
  1045. m_Component:
  1046. - component: {fileID: 4394501336067066}
  1047. - component: {fileID: 212931073896023434}
  1048. m_Layer: 0
  1049. m_Name: ningshi0002 (8)
  1050. m_TagString: Untagged
  1051. m_Icon: {fileID: 0}
  1052. m_NavMeshLayer: 0
  1053. m_StaticEditorFlags: 0
  1054. m_IsActive: 1
  1055. --- !u!1 &1989273577072080
  1056. GameObject:
  1057. m_ObjectHideFlags: 1
  1058. m_PrefabParentObject: {fileID: 0}
  1059. m_PrefabInternal: {fileID: 100100000}
  1060. serializedVersion: 5
  1061. m_Component:
  1062. - component: {fileID: 4434780910591760}
  1063. - component: {fileID: 33489282040249316}
  1064. - component: {fileID: 23153429131756018}
  1065. m_Layer: 0
  1066. m_Name: Back
  1067. m_TagString: Untagged
  1068. m_Icon: {fileID: 0}
  1069. m_NavMeshLayer: 0
  1070. m_StaticEditorFlags: 0
  1071. m_IsActive: 1
  1072. --- !u!4 &4007200649572484
  1073. Transform:
  1074. m_ObjectHideFlags: 1
  1075. m_PrefabParentObject: {fileID: 0}
  1076. m_PrefabInternal: {fileID: 100100000}
  1077. m_GameObject: {fileID: 1931012866338252}
  1078. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1079. m_LocalPosition: {x: 0, y: 0, z: 0}
  1080. m_LocalScale: {x: 1, y: 1, z: 1}
  1081. m_Children: []
  1082. m_Father: {fileID: 4937183475884164}
  1083. m_RootOrder: 3
  1084. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1085. --- !u!4 &4041969455203692
  1086. Transform:
  1087. m_ObjectHideFlags: 1
  1088. m_PrefabParentObject: {fileID: 0}
  1089. m_PrefabInternal: {fileID: 100100000}
  1090. m_GameObject: {fileID: 1821209654602778}
  1091. m_LocalRotation: {x: -0, y: -0, z: -0.1253333, w: 0.9921148}
  1092. m_LocalPosition: {x: 0, y: 0, z: 0}
  1093. m_LocalScale: {x: 1, y: 1, z: 1}
  1094. m_Children: []
  1095. m_Father: {fileID: 4220876299151102}
  1096. m_RootOrder: 1
  1097. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -14.4}
  1098. --- !u!4 &4044038758367058
  1099. Transform:
  1100. m_ObjectHideFlags: 1
  1101. m_PrefabParentObject: {fileID: 0}
  1102. m_PrefabInternal: {fileID: 100100000}
  1103. m_GameObject: {fileID: 1576927553798042}
  1104. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1105. m_LocalPosition: {x: 0, y: 0, z: -0.01}
  1106. m_LocalScale: {x: 1, y: 1, z: 1}
  1107. m_Children:
  1108. - {fileID: 4107759430112568}
  1109. m_Father: {fileID: 4809379182671494}
  1110. m_RootOrder: 1
  1111. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1112. --- !u!4 &4064886234197702
  1113. Transform:
  1114. m_ObjectHideFlags: 1
  1115. m_PrefabParentObject: {fileID: 0}
  1116. m_PrefabInternal: {fileID: 100100000}
  1117. m_GameObject: {fileID: 1379767780872134}
  1118. m_LocalRotation: {x: 0.00000002185578, y: -0.00000035762787, z: -0.00000023841856,
  1119. w: 1}
  1120. m_LocalPosition: {x: 0, y: 0.002, z: 0}
  1121. m_LocalScale: {x: 0.15, y: 0.2, z: 0.15}
  1122. m_Children: []
  1123. m_Father: {fileID: 4118420953897510}
  1124. m_RootOrder: 0
  1125. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1126. --- !u!4 &4077701020143204
  1127. Transform:
  1128. m_ObjectHideFlags: 1
  1129. m_PrefabParentObject: {fileID: 0}
  1130. m_PrefabInternal: {fileID: 100100000}
  1131. m_GameObject: {fileID: 1784551452574438}
  1132. m_LocalRotation: {x: -0, y: -0, z: -0.84432805, w: -0.5358266}
  1133. m_LocalPosition: {x: 0, y: 0, z: 0}
  1134. m_LocalScale: {x: 1, y: 1, z: 1}
  1135. m_Children: []
  1136. m_Father: {fileID: 4220876299151102}
  1137. m_RootOrder: 17
  1138. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -244.8}
  1139. --- !u!4 &4107759430112568
  1140. Transform:
  1141. m_ObjectHideFlags: 1
  1142. m_PrefabParentObject: {fileID: 0}
  1143. m_PrefabInternal: {fileID: 100100000}
  1144. m_GameObject: {fileID: 1754261937116598}
  1145. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1146. m_LocalPosition: {x: 0, y: 0, z: -0.1}
  1147. m_LocalScale: {x: 1, y: 1, z: 1}
  1148. m_Children: []
  1149. m_Father: {fileID: 4044038758367058}
  1150. m_RootOrder: 0
  1151. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1152. --- !u!4 &4111035495765318
  1153. Transform:
  1154. m_ObjectHideFlags: 1
  1155. m_PrefabParentObject: {fileID: 0}
  1156. m_PrefabInternal: {fileID: 100100000}
  1157. m_GameObject: {fileID: 1679942072902480}
  1158. m_LocalRotation: {x: 0.000000021855694, y: 0, z: -0, w: 1}
  1159. m_LocalPosition: {x: -0.00013142974, y: -0.015486487, z: 0.004963715}
  1160. m_LocalScale: {x: 1, y: 1, z: 1}
  1161. m_Children: []
  1162. m_Father: {fileID: 4693725420361670}
  1163. m_RootOrder: 6
  1164. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1165. --- !u!4 &4118420953897510
  1166. Transform:
  1167. m_ObjectHideFlags: 1
  1168. m_PrefabParentObject: {fileID: 0}
  1169. m_PrefabInternal: {fileID: 100100000}
  1170. m_GameObject: {fileID: 1778847862384098}
  1171. m_LocalRotation: {x: -8.5387596e-14, y: 0.00000035762787, z: 0.00000023841858, w: 1}
  1172. m_LocalPosition: {x: -0.00018924382, y: 0.0031740188, z: 0.030600319}
  1173. m_LocalScale: {x: 1, y: 1, z: 1}
  1174. m_Children:
  1175. - {fileID: 4064886234197702}
  1176. m_Father: {fileID: 4214516727652216}
  1177. m_RootOrder: 3
  1178. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1179. --- !u!4 &4177144781231092
  1180. Transform:
  1181. m_ObjectHideFlags: 1
  1182. m_PrefabParentObject: {fileID: 0}
  1183. m_PrefabInternal: {fileID: 100100000}
  1184. m_GameObject: {fileID: 1597115745663624}
  1185. m_LocalRotation: {x: -8.5387596e-14, y: 0.00000035762787, z: 0.00000023841858, w: 1}
  1186. m_LocalPosition: {x: -0.0003545754, y: 0.0039024472, z: 0.0029990743}
  1187. m_LocalScale: {x: 1, y: 1, z: 1}
  1188. m_Children: []
  1189. m_Father: {fileID: 4214516727652216}
  1190. m_RootOrder: 2
  1191. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1192. --- !u!4 &4198279302467098
  1193. Transform:
  1194. m_ObjectHideFlags: 1
  1195. m_PrefabParentObject: {fileID: 0}
  1196. m_PrefabInternal: {fileID: 100100000}
  1197. m_GameObject: {fileID: 1268970512877320}
  1198. m_LocalRotation: {x: -0, y: -0, z: -0.58778524, w: 0.809017}
  1199. m_LocalPosition: {x: 0, y: 0, z: 0}
  1200. m_LocalScale: {x: 1, y: 1, z: 1}
  1201. m_Children: []
  1202. m_Father: {fileID: 4220876299151102}
  1203. m_RootOrder: 5
  1204. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -72}
  1205. --- !u!4 &4214516727652216
  1206. Transform:
  1207. m_ObjectHideFlags: 1
  1208. m_PrefabParentObject: {fileID: 0}
  1209. m_PrefabInternal: {fileID: 100100000}
  1210. m_GameObject: {fileID: 1300326281954026}
  1211. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1212. m_LocalPosition: {x: 0, y: 0, z: 0}
  1213. m_LocalScale: {x: 1, y: 1, z: 1}
  1214. m_Children:
  1215. - {fileID: 4488586842546758}
  1216. - {fileID: 4445087851028478}
  1217. - {fileID: 4177144781231092}
  1218. - {fileID: 4118420953897510}
  1219. m_Father: {fileID: 4937183475884164}
  1220. m_RootOrder: 0
  1221. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1222. --- !u!4 &4217588916474940
  1223. Transform:
  1224. m_ObjectHideFlags: 1
  1225. m_PrefabParentObject: {fileID: 0}
  1226. m_PrefabInternal: {fileID: 100100000}
  1227. m_GameObject: {fileID: 1560323261863206}
  1228. m_LocalRotation: {x: -0, y: -0, z: -0.24868982, w: 0.9685832}
  1229. m_LocalPosition: {x: 0, y: 0, z: 0}
  1230. m_LocalScale: {x: 1, y: 1, z: 1}
  1231. m_Children: []
  1232. m_Father: {fileID: 4220876299151102}
  1233. m_RootOrder: 2
  1234. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -28.8}
  1235. --- !u!4 &4218817719632920
  1236. Transform:
  1237. m_ObjectHideFlags: 1
  1238. m_PrefabParentObject: {fileID: 0}
  1239. m_PrefabInternal: {fileID: 100100000}
  1240. m_GameObject: {fileID: 1687990807718132}
  1241. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1242. m_LocalPosition: {x: 0, y: 0, z: 0}
  1243. m_LocalScale: {x: 1, y: 1, z: 1}
  1244. m_Children: []
  1245. m_Father: {fileID: 4809379182671494}
  1246. m_RootOrder: 2
  1247. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1248. --- !u!4 &4220876299151102
  1249. Transform:
  1250. m_ObjectHideFlags: 1
  1251. m_PrefabParentObject: {fileID: 0}
  1252. m_PrefabInternal: {fileID: 100100000}
  1253. m_GameObject: {fileID: 1501734189842776}
  1254. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1255. m_LocalPosition: {x: 0, y: 0, z: 0}
  1256. m_LocalScale: {x: 0.20000002, y: 0.20000002, z: 0.20000002}
  1257. m_Children:
  1258. - {fileID: 4739814862370592}
  1259. - {fileID: 4041969455203692}
  1260. - {fileID: 4217588916474940}
  1261. - {fileID: 4313124065424330}
  1262. - {fileID: 4896094492956928}
  1263. - {fileID: 4198279302467098}
  1264. - {fileID: 4765291579440340}
  1265. - {fileID: 4849891999306508}
  1266. - {fileID: 4394501336067066}
  1267. - {fileID: 4683247027840708}
  1268. - {fileID: 4774461529905366}
  1269. - {fileID: 4850728206387594}
  1270. - {fileID: 4673831139479862}
  1271. - {fileID: 4469108814882786}
  1272. - {fileID: 4649080974982138}
  1273. - {fileID: 4628809454443238}
  1274. - {fileID: 4254979074740214}
  1275. - {fileID: 4077701020143204}
  1276. - {fileID: 4878016747271834}
  1277. - {fileID: 4432275751617070}
  1278. - {fileID: 4843171714060610}
  1279. - {fileID: 4890447366637020}
  1280. - {fileID: 4675000314425852}
  1281. - {fileID: 4295676916313576}
  1282. - {fileID: 4860302598176436}
  1283. m_Father: {fileID: 4281915471310360}
  1284. m_RootOrder: 2
  1285. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1286. --- !u!4 &4254979074740214
  1287. Transform:
  1288. m_ObjectHideFlags: 1
  1289. m_PrefabParentObject: {fileID: 0}
  1290. m_PrefabInternal: {fileID: 100100000}
  1291. m_GameObject: {fileID: 1100665268516136}
  1292. m_LocalRotation: {x: -0, y: -0, z: -0.9048272, w: -0.425779}
  1293. m_LocalPosition: {x: 0, y: 0, z: 0}
  1294. m_LocalScale: {x: 1, y: 1, z: 1}
  1295. m_Children: []
  1296. m_Father: {fileID: 4220876299151102}
  1297. m_RootOrder: 16
  1298. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -230.4}
  1299. --- !u!4 &4270230676025686
  1300. Transform:
  1301. m_ObjectHideFlags: 1
  1302. m_PrefabParentObject: {fileID: 0}
  1303. m_PrefabInternal: {fileID: 100100000}
  1304. m_GameObject: {fileID: 1015205079863316}
  1305. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1306. m_LocalPosition: {x: 0, y: 0, z: 0}
  1307. m_LocalScale: {x: 1, y: 1, z: 1}
  1308. m_Children: []
  1309. m_Father: {fileID: 4809379182671494}
  1310. m_RootOrder: 4
  1311. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1312. --- !u!4 &4281915471310360
  1313. Transform:
  1314. m_ObjectHideFlags: 1
  1315. m_PrefabParentObject: {fileID: 0}
  1316. m_PrefabInternal: {fileID: 100100000}
  1317. m_GameObject: {fileID: 1708315818472814}
  1318. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1319. m_LocalPosition: {x: 0, y: 0, z: -0.01}
  1320. m_LocalScale: {x: 0.2, y: 0.2, z: 0.2}
  1321. m_Children:
  1322. - {fileID: 4399681120828764}
  1323. - {fileID: 4865815721467250}
  1324. - {fileID: 4220876299151102}
  1325. - {fileID: 4406299724247258}
  1326. m_Father: {fileID: 4725474468302338}
  1327. m_RootOrder: 0
  1328. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1329. --- !u!4 &4295676916313576
  1330. Transform:
  1331. m_ObjectHideFlags: 1
  1332. m_PrefabParentObject: {fileID: 0}
  1333. m_PrefabInternal: {fileID: 100100000}
  1334. m_GameObject: {fileID: 1689971289014064}
  1335. m_LocalRotation: {x: -0, y: -0, z: -0.24869, w: -0.96858317}
  1336. m_LocalPosition: {x: 0, y: 0, z: 0}
  1337. m_LocalScale: {x: 1, y: 1, z: 1}
  1338. m_Children: []
  1339. m_Father: {fileID: 4220876299151102}
  1340. m_RootOrder: 23
  1341. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -331.2}
  1342. --- !u!4 &4313124065424330
  1343. Transform:
  1344. m_ObjectHideFlags: 1
  1345. m_PrefabParentObject: {fileID: 0}
  1346. m_PrefabInternal: {fileID: 100100000}
  1347. m_GameObject: {fileID: 1374156469221360}
  1348. m_LocalRotation: {x: -0, y: -0, z: -0.36812454, w: 0.9297765}
  1349. m_LocalPosition: {x: 0, y: 0, z: 0}
  1350. m_LocalScale: {x: 1, y: 1, z: 1}
  1351. m_Children: []
  1352. m_Father: {fileID: 4220876299151102}
  1353. m_RootOrder: 3
  1354. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -43.2}
  1355. --- !u!4 &4324502088704734
  1356. Transform:
  1357. m_ObjectHideFlags: 1
  1358. m_PrefabParentObject: {fileID: 0}
  1359. m_PrefabInternal: {fileID: 100100000}
  1360. m_GameObject: {fileID: 1460681799994562}
  1361. m_LocalRotation: {x: 0.000000021855694, y: 0, z: -0, w: 1}
  1362. m_LocalPosition: {x: -0.00013143184, y: 0.012544352, z: 0.018776607}
  1363. m_LocalScale: {x: 1, y: 1, z: 1}
  1364. m_Children:
  1365. - {fileID: 4876869257575508}
  1366. m_Father: {fileID: 4693725420361670}
  1367. m_RootOrder: 2
  1368. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1369. --- !u!4 &4338119686699736
  1370. Transform:
  1371. m_ObjectHideFlags: 1
  1372. m_PrefabParentObject: {fileID: 0}
  1373. m_PrefabInternal: {fileID: 100100000}
  1374. m_GameObject: {fileID: 1844231281819750}
  1375. m_LocalRotation: {x: 0.000000021855694, y: 0, z: -0, w: 1}
  1376. m_LocalPosition: {x: -0.0001314341, y: -0.017774401, z: 0.033571508}
  1377. m_LocalScale: {x: 1, y: 1, z: 1}
  1378. m_Children: []
  1379. m_Father: {fileID: 4693725420361670}
  1380. m_RootOrder: 3
  1381. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1382. --- !u!4 &4362313158241814
  1383. Transform:
  1384. m_ObjectHideFlags: 1
  1385. m_PrefabParentObject: {fileID: 0}
  1386. m_PrefabInternal: {fileID: 100100000}
  1387. m_GameObject: {fileID: 1847767592272548}
  1388. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1389. m_LocalPosition: {x: -0, y: 0, z: 0}
  1390. m_LocalScale: {x: 1, y: 1, z: 1}
  1391. m_Children: []
  1392. m_Father: {fileID: 4399681120828764}
  1393. m_RootOrder: 0
  1394. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1395. --- !u!4 &4369060881649884
  1396. Transform:
  1397. m_ObjectHideFlags: 1
  1398. m_PrefabParentObject: {fileID: 0}
  1399. m_PrefabInternal: {fileID: 100100000}
  1400. m_GameObject: {fileID: 1364410240662954}
  1401. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1402. m_LocalPosition: {x: 0, y: 0, z: 0}
  1403. m_LocalScale: {x: 1, y: 1, z: 1}
  1404. m_Children: []
  1405. m_Father: {fileID: 4809379182671494}
  1406. m_RootOrder: 3
  1407. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1408. --- !u!4 &4369963675030112
  1409. Transform:
  1410. m_ObjectHideFlags: 1
  1411. m_PrefabParentObject: {fileID: 0}
  1412. m_PrefabInternal: {fileID: 100100000}
  1413. m_GameObject: {fileID: 1274723906782620}
  1414. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1415. m_LocalPosition: {x: 0, y: 0, z: 0}
  1416. m_LocalScale: {x: 1, y: 1, z: 1}
  1417. m_Children: []
  1418. m_Father: {fileID: 4809379182671494}
  1419. m_RootOrder: 5
  1420. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1421. --- !u!4 &4394501336067066
  1422. Transform:
  1423. m_ObjectHideFlags: 1
  1424. m_PrefabParentObject: {fileID: 0}
  1425. m_PrefabInternal: {fileID: 100100000}
  1426. m_GameObject: {fileID: 1955285811994900}
  1427. m_LocalRotation: {x: -0, y: -0, z: -0.8443279, w: 0.5358269}
  1428. m_LocalPosition: {x: 0, y: 0, z: 0}
  1429. m_LocalScale: {x: 1, y: 1, z: 1}
  1430. m_Children: []
  1431. m_Father: {fileID: 4220876299151102}
  1432. m_RootOrder: 8
  1433. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -115.2}
  1434. --- !u!4 &4399681120828764
  1435. Transform:
  1436. m_ObjectHideFlags: 1
  1437. m_PrefabParentObject: {fileID: 0}
  1438. m_PrefabInternal: {fileID: 100100000}
  1439. m_GameObject: {fileID: 1719550069148118}
  1440. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1441. m_LocalPosition: {x: 0, y: 0, z: 0}
  1442. m_LocalScale: {x: 1, y: 1, z: 1}
  1443. m_Children:
  1444. - {fileID: 4362313158241814}
  1445. m_Father: {fileID: 4281915471310360}
  1446. m_RootOrder: 0
  1447. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1448. --- !u!4 &4406299724247258
  1449. Transform:
  1450. m_ObjectHideFlags: 1
  1451. m_PrefabParentObject: {fileID: 0}
  1452. m_PrefabInternal: {fileID: 100100000}
  1453. m_GameObject: {fileID: 1618772780716692}
  1454. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1455. m_LocalPosition: {x: 0, y: 0, z: 0}
  1456. m_LocalScale: {x: 1, y: 1, z: 1}
  1457. m_Children:
  1458. - {fileID: 4832913842568894}
  1459. m_Father: {fileID: 4281915471310360}
  1460. m_RootOrder: 3
  1461. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1462. --- !u!4 &4432275751617070
  1463. Transform:
  1464. m_ObjectHideFlags: 1
  1465. m_PrefabParentObject: {fileID: 0}
  1466. m_PrefabInternal: {fileID: 100100000}
  1467. m_GameObject: {fileID: 1379326223157830}
  1468. m_LocalRotation: {x: -0, y: -0, z: -0.6845471, w: -0.7289686}
  1469. m_LocalPosition: {x: 0, y: 0, z: 0}
  1470. m_LocalScale: {x: 1, y: 1, z: 1}
  1471. m_Children: []
  1472. m_Father: {fileID: 4220876299151102}
  1473. m_RootOrder: 19
  1474. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -273.6}
  1475. --- !u!4 &4434780910591760
  1476. Transform:
  1477. m_ObjectHideFlags: 1
  1478. m_PrefabParentObject: {fileID: 0}
  1479. m_PrefabInternal: {fileID: 100100000}
  1480. m_GameObject: {fileID: 1989273577072080}
  1481. m_LocalRotation: {x: 0.000000021855694, y: 0, z: -0, w: 1}
  1482. m_LocalPosition: {x: 0.0001852965, y: 0.011434017, z: -0.0069151614}
  1483. m_LocalScale: {x: 1, y: 1, z: 1}
  1484. m_Children: []
  1485. m_Father: {fileID: 4693725420361670}
  1486. m_RootOrder: 0
  1487. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1488. --- !u!4 &4445087851028478
  1489. Transform:
  1490. m_ObjectHideFlags: 1
  1491. m_PrefabParentObject: {fileID: 0}
  1492. m_PrefabInternal: {fileID: 100100000}
  1493. m_GameObject: {fileID: 1407198949309676}
  1494. m_LocalRotation: {x: 0.00000008742278, y: 0.00000011920929, z: -1.0421607e-14, w: 1}
  1495. m_LocalPosition: {x: 0.018533401, y: -0.00047026156, z: 0.013229171}
  1496. m_LocalScale: {x: 1.1161, y: 1.2154088, z: 1.1532334}
  1497. m_Children: []
  1498. m_Father: {fileID: 4214516727652216}
  1499. m_RootOrder: 1
  1500. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1501. --- !u!4 &4469108814882786
  1502. Transform:
  1503. m_ObjectHideFlags: 1
  1504. m_PrefabParentObject: {fileID: 0}
  1505. m_PrefabInternal: {fileID: 100100000}
  1506. m_GameObject: {fileID: 1075656691178396}
  1507. m_LocalRotation: {x: -0, y: -0, z: -0.9980267, w: -0.06279047}
  1508. m_LocalPosition: {x: 0, y: 0, z: 0}
  1509. m_LocalScale: {x: 1, y: 1, z: 1}
  1510. m_Children: []
  1511. m_Father: {fileID: 4220876299151102}
  1512. m_RootOrder: 13
  1513. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -187.2}
  1514. --- !u!4 &4488586842546758
  1515. Transform:
  1516. m_ObjectHideFlags: 1
  1517. m_PrefabParentObject: {fileID: 0}
  1518. m_PrefabInternal: {fileID: 100100000}
  1519. m_GameObject: {fileID: 1385807594792148}
  1520. m_LocalRotation: {x: -8.5387596e-14, y: 0.00000035762787, z: 0.00000023841858, w: 1}
  1521. m_LocalPosition: {x: -0.0001892501, y: -0.000046236513, z: 0.0000000023841857}
  1522. m_LocalScale: {x: 1, y: 1, z: 1}
  1523. m_Children: []
  1524. m_Father: {fileID: 4214516727652216}
  1525. m_RootOrder: 0
  1526. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1527. --- !u!4 &4521949715071706
  1528. Transform:
  1529. m_ObjectHideFlags: 1
  1530. m_PrefabParentObject: {fileID: 0}
  1531. m_PrefabInternal: {fileID: 100100000}
  1532. m_GameObject: {fileID: 1761176673634732}
  1533. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1534. m_LocalPosition: {x: 0, y: 0, z: 0}
  1535. m_LocalScale: {x: 0.05625546, y: 0.05625546, z: 0.12259719}
  1536. m_Children: []
  1537. m_Father: {fileID: 4937183475884164}
  1538. m_RootOrder: 2
  1539. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1540. --- !u!4 &4628809454443238
  1541. Transform:
  1542. m_ObjectHideFlags: 1
  1543. m_PrefabParentObject: {fileID: 0}
  1544. m_PrefabInternal: {fileID: 100100000}
  1545. m_GameObject: {fileID: 1238134577842654}
  1546. m_LocalRotation: {x: -0, y: -0, z: -0.9510566, w: -0.30901685}
  1547. m_LocalPosition: {x: 0, y: 0, z: 0}
  1548. m_LocalScale: {x: 1, y: 1, z: 1}
  1549. m_Children: []
  1550. m_Father: {fileID: 4220876299151102}
  1551. m_RootOrder: 15
  1552. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -216}
  1553. --- !u!4 &4649080974982138
  1554. Transform:
  1555. m_ObjectHideFlags: 1
  1556. m_PrefabParentObject: {fileID: 0}
  1557. m_PrefabInternal: {fileID: 100100000}
  1558. m_GameObject: {fileID: 1467161394575342}
  1559. m_LocalRotation: {x: -0, y: -0, z: -0.9822873, w: -0.1873813}
  1560. m_LocalPosition: {x: 0, y: 0, z: 0}
  1561. m_LocalScale: {x: 1, y: 1, z: 1}
  1562. m_Children: []
  1563. m_Father: {fileID: 4220876299151102}
  1564. m_RootOrder: 14
  1565. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -201.6}
  1566. --- !u!4 &4673831139479862
  1567. Transform:
  1568. m_ObjectHideFlags: 1
  1569. m_PrefabParentObject: {fileID: 0}
  1570. m_PrefabInternal: {fileID: 100100000}
  1571. m_GameObject: {fileID: 1354915284334524}
  1572. m_LocalRotation: {x: -0, y: -0, z: -0.9980267, w: 0.06279056}
  1573. m_LocalPosition: {x: 0, y: 0, z: 0}
  1574. m_LocalScale: {x: 1, y: 1, z: 1}
  1575. m_Children: []
  1576. m_Father: {fileID: 4220876299151102}
  1577. m_RootOrder: 12
  1578. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -172.8}
  1579. --- !u!4 &4675000314425852
  1580. Transform:
  1581. m_ObjectHideFlags: 1
  1582. m_PrefabParentObject: {fileID: 0}
  1583. m_PrefabInternal: {fileID: 100100000}
  1584. m_GameObject: {fileID: 1698489500805430}
  1585. m_LocalRotation: {x: -0, y: -0, z: -0.36812487, w: -0.92977643}
  1586. m_LocalPosition: {x: 0, y: 0, z: 0}
  1587. m_LocalScale: {x: 1, y: 1, z: 1}
  1588. m_Children: []
  1589. m_Father: {fileID: 4220876299151102}
  1590. m_RootOrder: 22
  1591. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -316.8}
  1592. --- !u!4 &4683247027840708
  1593. Transform:
  1594. m_ObjectHideFlags: 1
  1595. m_PrefabParentObject: {fileID: 0}
  1596. m_PrefabInternal: {fileID: 100100000}
  1597. m_GameObject: {fileID: 1527641087798164}
  1598. m_LocalRotation: {x: -0, y: -0, z: -0.9048271, w: 0.42577925}
  1599. m_LocalPosition: {x: 0, y: 0, z: 0}
  1600. m_LocalScale: {x: 1, y: 1, z: 1}
  1601. m_Children: []
  1602. m_Father: {fileID: 4220876299151102}
  1603. m_RootOrder: 9
  1604. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -129.6}
  1605. --- !u!4 &4693725420361670
  1606. Transform:
  1607. m_ObjectHideFlags: 1
  1608. m_PrefabParentObject: {fileID: 0}
  1609. m_PrefabInternal: {fileID: 100100000}
  1610. m_GameObject: {fileID: 1838331599951758}
  1611. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1612. m_LocalPosition: {x: 0, y: 0, z: 0}
  1613. m_LocalScale: {x: 1, y: 1, z: 1}
  1614. m_Children:
  1615. - {fileID: 4434780910591760}
  1616. - {fileID: 4953600853326284}
  1617. - {fileID: 4324502088704734}
  1618. - {fileID: 4338119686699736}
  1619. - {fileID: 4966098716922840}
  1620. - {fileID: 4731909609222216}
  1621. - {fileID: 4111035495765318}
  1622. m_Father: {fileID: 4900857244640378}
  1623. m_RootOrder: 0
  1624. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1625. --- !u!4 &4720197992379418
  1626. Transform:
  1627. m_ObjectHideFlags: 1
  1628. m_PrefabParentObject: {fileID: 0}
  1629. m_PrefabInternal: {fileID: 100100000}
  1630. m_GameObject: {fileID: 1294521219064336}
  1631. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1632. m_LocalPosition: {x: 0, y: 0, z: 0}
  1633. m_LocalScale: {x: 1, y: 1, z: 1}
  1634. m_Children:
  1635. - {fileID: 4937183475884164}
  1636. - {fileID: 4876801941165726}
  1637. m_Father: {fileID: 0}
  1638. m_RootOrder: 0
  1639. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1640. --- !u!4 &4725474468302338
  1641. Transform:
  1642. m_ObjectHideFlags: 1
  1643. m_PrefabParentObject: {fileID: 0}
  1644. m_PrefabInternal: {fileID: 100100000}
  1645. m_GameObject: {fileID: 1532928450161934}
  1646. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1647. m_LocalPosition: {x: 0, y: 0, z: 0}
  1648. m_LocalScale: {x: 1, y: 1, z: 1}
  1649. m_Children:
  1650. - {fileID: 4281915471310360}
  1651. m_Father: {fileID: 4809379182671494}
  1652. m_RootOrder: 0
  1653. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1654. --- !u!4 &4731533429021426
  1655. Transform:
  1656. m_ObjectHideFlags: 1
  1657. m_PrefabParentObject: {fileID: 0}
  1658. m_PrefabInternal: {fileID: 100100000}
  1659. m_GameObject: {fileID: 1921842542114302}
  1660. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1661. m_LocalPosition: {x: 0, y: 0, z: 0}
  1662. m_LocalScale: {x: 1, y: 1, z: 1}
  1663. m_Children: []
  1664. m_Father: {fileID: 4809379182671494}
  1665. m_RootOrder: 6
  1666. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1667. --- !u!4 &4731909609222216
  1668. Transform:
  1669. m_ObjectHideFlags: 1
  1670. m_PrefabParentObject: {fileID: 0}
  1671. m_PrefabInternal: {fileID: 100100000}
  1672. m_GameObject: {fileID: 1910693291792744}
  1673. m_LocalRotation: {x: 0.000000021855694, y: 0, z: -0, w: 1}
  1674. m_LocalPosition: {x: 0.020450644, y: -0.00016317877, z: 0.017985802}
  1675. m_LocalScale: {x: 1, y: 1, z: 1}
  1676. m_Children: []
  1677. m_Father: {fileID: 4693725420361670}
  1678. m_RootOrder: 5
  1679. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1680. --- !u!4 &4739814862370592
  1681. Transform:
  1682. m_ObjectHideFlags: 1
  1683. m_PrefabParentObject: {fileID: 0}
  1684. m_PrefabInternal: {fileID: 100100000}
  1685. m_GameObject: {fileID: 1208700578151218}
  1686. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1687. m_LocalPosition: {x: 0, y: 0, z: 0}
  1688. m_LocalScale: {x: 1, y: 1, z: 1}
  1689. m_Children: []
  1690. m_Father: {fileID: 4220876299151102}
  1691. m_RootOrder: 0
  1692. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1693. --- !u!4 &4759464816587836
  1694. Transform:
  1695. m_ObjectHideFlags: 1
  1696. m_PrefabParentObject: {fileID: 0}
  1697. m_PrefabInternal: {fileID: 100100000}
  1698. m_GameObject: {fileID: 1503711807111756}
  1699. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1700. m_LocalPosition: {x: 0, y: 0, z: 0}
  1701. m_LocalScale: {x: 1, y: 1, z: 1}
  1702. m_Children: []
  1703. m_Father: {fileID: 4809379182671494}
  1704. m_RootOrder: 7
  1705. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1706. --- !u!4 &4765291579440340
  1707. Transform:
  1708. m_ObjectHideFlags: 1
  1709. m_PrefabParentObject: {fileID: 0}
  1710. m_PrefabInternal: {fileID: 100100000}
  1711. m_GameObject: {fileID: 1921623912379650}
  1712. m_LocalRotation: {x: -0, y: -0, z: -0.6845471, w: 0.7289686}
  1713. m_LocalPosition: {x: 0, y: 0, z: 0}
  1714. m_LocalScale: {x: 1, y: 1, z: 1}
  1715. m_Children: []
  1716. m_Father: {fileID: 4220876299151102}
  1717. m_RootOrder: 6
  1718. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -86.4}
  1719. --- !u!4 &4774461529905366
  1720. Transform:
  1721. m_ObjectHideFlags: 1
  1722. m_PrefabParentObject: {fileID: 0}
  1723. m_PrefabInternal: {fileID: 100100000}
  1724. m_GameObject: {fileID: 1302699185281578}
  1725. m_LocalRotation: {x: -0, y: -0, z: -0.95105654, w: 0.30901697}
  1726. m_LocalPosition: {x: 0, y: 0, z: 0}
  1727. m_LocalScale: {x: 1, y: 1, z: 1}
  1728. m_Children: []
  1729. m_Father: {fileID: 4220876299151102}
  1730. m_RootOrder: 10
  1731. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -144}
  1732. --- !u!4 &4809379182671494
  1733. Transform:
  1734. m_ObjectHideFlags: 1
  1735. m_PrefabParentObject: {fileID: 0}
  1736. m_PrefabInternal: {fileID: 100100000}
  1737. m_GameObject: {fileID: 1555137522558926}
  1738. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1739. m_LocalPosition: {x: 0, y: 0, z: 0}
  1740. m_LocalScale: {x: 1, y: 1, z: 1}
  1741. m_Children:
  1742. - {fileID: 4725474468302338}
  1743. - {fileID: 4044038758367058}
  1744. - {fileID: 4218817719632920}
  1745. - {fileID: 4369060881649884}
  1746. - {fileID: 4270230676025686}
  1747. - {fileID: 4369963675030112}
  1748. - {fileID: 4731533429021426}
  1749. - {fileID: 4759464816587836}
  1750. - {fileID: 4833222198800830}
  1751. m_Father: {fileID: 4876801941165726}
  1752. m_RootOrder: 0
  1753. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1754. --- !u!4 &4832913842568894
  1755. Transform:
  1756. m_ObjectHideFlags: 1
  1757. m_PrefabParentObject: {fileID: 0}
  1758. m_PrefabInternal: {fileID: 100100000}
  1759. m_GameObject: {fileID: 1146501631072402}
  1760. m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: 0.7071067}
  1761. m_LocalPosition: {x: 0, y: 0, z: 0}
  1762. m_LocalScale: {x: 1, y: 1, z: 1}
  1763. m_Children: []
  1764. m_Father: {fileID: 4406299724247258}
  1765. m_RootOrder: 0
  1766. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1767. --- !u!4 &4833222198800830
  1768. Transform:
  1769. m_ObjectHideFlags: 1
  1770. m_PrefabParentObject: {fileID: 0}
  1771. m_PrefabInternal: {fileID: 100100000}
  1772. m_GameObject: {fileID: 1843897232960780}
  1773. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1774. m_LocalPosition: {x: 0, y: 0, z: 0}
  1775. m_LocalScale: {x: 1, y: 1, z: 1}
  1776. m_Children: []
  1777. m_Father: {fileID: 4809379182671494}
  1778. m_RootOrder: 8
  1779. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1780. --- !u!4 &4843171714060610
  1781. Transform:
  1782. m_ObjectHideFlags: 1
  1783. m_PrefabParentObject: {fileID: 0}
  1784. m_PrefabInternal: {fileID: 100100000}
  1785. m_GameObject: {fileID: 1321107910127838}
  1786. m_LocalRotation: {x: -0, y: -0, z: -0.58778536, w: -0.80901694}
  1787. m_LocalPosition: {x: 0, y: 0, z: 0}
  1788. m_LocalScale: {x: 1, y: 1, z: 1}
  1789. m_Children: []
  1790. m_Father: {fileID: 4220876299151102}
  1791. m_RootOrder: 20
  1792. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -288}
  1793. --- !u!4 &4849891999306508
  1794. Transform:
  1795. m_ObjectHideFlags: 1
  1796. m_PrefabParentObject: {fileID: 0}
  1797. m_PrefabInternal: {fileID: 100100000}
  1798. m_GameObject: {fileID: 1324525766445254}
  1799. m_LocalRotation: {x: -0, y: -0, z: -0.77051324, w: 0.63742405}
  1800. m_LocalPosition: {x: 0, y: 0, z: 0}
  1801. m_LocalScale: {x: 1, y: 1, z: 1}
  1802. m_Children: []
  1803. m_Father: {fileID: 4220876299151102}
  1804. m_RootOrder: 7
  1805. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -100.8}
  1806. --- !u!4 &4850728206387594
  1807. Transform:
  1808. m_ObjectHideFlags: 1
  1809. m_PrefabParentObject: {fileID: 0}
  1810. m_PrefabInternal: {fileID: 100100000}
  1811. m_GameObject: {fileID: 1680978486835952}
  1812. m_LocalRotation: {x: -0, y: -0, z: -0.9822872, w: 0.1873814}
  1813. m_LocalPosition: {x: 0, y: 0, z: 0}
  1814. m_LocalScale: {x: 1, y: 1, z: 1}
  1815. m_Children: []
  1816. m_Father: {fileID: 4220876299151102}
  1817. m_RootOrder: 11
  1818. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -158.4}
  1819. --- !u!4 &4860302598176436
  1820. Transform:
  1821. m_ObjectHideFlags: 1
  1822. m_PrefabParentObject: {fileID: 0}
  1823. m_PrefabInternal: {fileID: 100100000}
  1824. m_GameObject: {fileID: 1350586147218432}
  1825. m_LocalRotation: {x: -0, y: -0, z: -0.1253331, w: -0.9921147}
  1826. m_LocalPosition: {x: 0, y: 0, z: 0}
  1827. m_LocalScale: {x: 1, y: 1, z: 1}
  1828. m_Children: []
  1829. m_Father: {fileID: 4220876299151102}
  1830. m_RootOrder: 24
  1831. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -345.6}
  1832. --- !u!4 &4865815721467250
  1833. Transform:
  1834. m_ObjectHideFlags: 1
  1835. m_PrefabParentObject: {fileID: 0}
  1836. m_PrefabInternal: {fileID: 100100000}
  1837. m_GameObject: {fileID: 1174541670427696}
  1838. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1839. m_LocalPosition: {x: 0, y: 0, z: 0}
  1840. m_LocalScale: {x: 1, y: 1, z: 1}
  1841. m_Children:
  1842. - {fileID: 4993095893070850}
  1843. m_Father: {fileID: 4281915471310360}
  1844. m_RootOrder: 1
  1845. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1846. --- !u!4 &4876801941165726
  1847. Transform:
  1848. m_ObjectHideFlags: 1
  1849. m_PrefabParentObject: {fileID: 0}
  1850. m_PrefabInternal: {fileID: 100100000}
  1851. m_GameObject: {fileID: 1082353721071874}
  1852. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1853. m_LocalPosition: {x: 0, y: 0, z: 0}
  1854. m_LocalScale: {x: 1, y: 1, z: 1}
  1855. m_Children:
  1856. - {fileID: 4809379182671494}
  1857. m_Father: {fileID: 4720197992379418}
  1858. m_RootOrder: 1
  1859. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1860. --- !u!4 &4876869257575508
  1861. Transform:
  1862. m_ObjectHideFlags: 1
  1863. m_PrefabParentObject: {fileID: 0}
  1864. m_PrefabInternal: {fileID: 100100000}
  1865. m_GameObject: {fileID: 1021210004538364}
  1866. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1867. m_LocalPosition: {x: 0, y: 0.001, z: 0}
  1868. m_LocalScale: {x: 0.15, y: 0.2, z: 0.15}
  1869. m_Children: []
  1870. m_Father: {fileID: 4324502088704734}
  1871. m_RootOrder: 0
  1872. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1873. --- !u!4 &4878016747271834
  1874. Transform:
  1875. m_ObjectHideFlags: 1
  1876. m_PrefabParentObject: {fileID: 0}
  1877. m_PrefabInternal: {fileID: 100100000}
  1878. m_GameObject: {fileID: 1328790797853220}
  1879. m_LocalRotation: {x: -0, y: -0, z: -0.7705132, w: -0.63742405}
  1880. m_LocalPosition: {x: 0, y: 0, z: 0}
  1881. m_LocalScale: {x: 1, y: 1, z: 1}
  1882. m_Children: []
  1883. m_Father: {fileID: 4220876299151102}
  1884. m_RootOrder: 18
  1885. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -259.2}
  1886. --- !u!4 &4890447366637020
  1887. Transform:
  1888. m_ObjectHideFlags: 1
  1889. m_PrefabParentObject: {fileID: 0}
  1890. m_PrefabInternal: {fileID: 100100000}
  1891. m_GameObject: {fileID: 1096901707509138}
  1892. m_LocalRotation: {x: -0, y: -0, z: -0.4817539, w: -0.87630653}
  1893. m_LocalPosition: {x: 0, y: 0, z: 0}
  1894. m_LocalScale: {x: 1, y: 1, z: 1}
  1895. m_Children: []
  1896. m_Father: {fileID: 4220876299151102}
  1897. m_RootOrder: 21
  1898. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -302.4}
  1899. --- !u!4 &4896094492956928
  1900. Transform:
  1901. m_ObjectHideFlags: 1
  1902. m_PrefabParentObject: {fileID: 0}
  1903. m_PrefabInternal: {fileID: 100100000}
  1904. m_GameObject: {fileID: 1496381286723346}
  1905. m_LocalRotation: {x: -0, y: -0, z: -0.48175356, w: 0.8763068}
  1906. m_LocalPosition: {x: 0, y: 0, z: 0}
  1907. m_LocalScale: {x: 1, y: 1, z: 1}
  1908. m_Children: []
  1909. m_Father: {fileID: 4220876299151102}
  1910. m_RootOrder: 4
  1911. m_LocalEulerAnglesHint: {x: 0, y: 0, z: -57.6}
  1912. --- !u!4 &4900857244640378
  1913. Transform:
  1914. m_ObjectHideFlags: 1
  1915. m_PrefabParentObject: {fileID: 0}
  1916. m_PrefabInternal: {fileID: 100100000}
  1917. m_GameObject: {fileID: 1397213865582930}
  1918. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1919. m_LocalPosition: {x: 0, y: 0, z: 0}
  1920. m_LocalScale: {x: 1, y: 1, z: 1}
  1921. m_Children:
  1922. - {fileID: 4693725420361670}
  1923. m_Father: {fileID: 4937183475884164}
  1924. m_RootOrder: 1
  1925. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1926. --- !u!4 &4937183475884164
  1927. Transform:
  1928. m_ObjectHideFlags: 1
  1929. m_PrefabParentObject: {fileID: 0}
  1930. m_PrefabInternal: {fileID: 100100000}
  1931. m_GameObject: {fileID: 1668480619314178}
  1932. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1933. m_LocalPosition: {x: 0, y: -0.4, z: 0.15}
  1934. m_LocalScale: {x: 1, y: 1, z: 1}
  1935. m_Children:
  1936. - {fileID: 4214516727652216}
  1937. - {fileID: 4900857244640378}
  1938. - {fileID: 4521949715071706}
  1939. - {fileID: 4007200649572484}
  1940. m_Father: {fileID: 4720197992379418}
  1941. m_RootOrder: 0
  1942. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1943. --- !u!4 &4953600853326284
  1944. Transform:
  1945. m_ObjectHideFlags: 1
  1946. m_PrefabParentObject: {fileID: 0}
  1947. m_PrefabInternal: {fileID: 100100000}
  1948. m_GameObject: {fileID: 1043270915479188}
  1949. m_LocalRotation: {x: 0.000000021855694, y: 0, z: -0, w: 1}
  1950. m_LocalPosition: {x: 0.00018529904, y: 0.008636003, z: -0.02085798}
  1951. m_LocalScale: {x: 1, y: 1, z: 1}
  1952. m_Children: []
  1953. m_Father: {fileID: 4693725420361670}
  1954. m_RootOrder: 1
  1955. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1956. --- !u!4 &4966098716922840
  1957. Transform:
  1958. m_ObjectHideFlags: 1
  1959. m_PrefabParentObject: {fileID: 0}
  1960. m_PrefabInternal: {fileID: 100100000}
  1961. m_GameObject: {fileID: 1880338652899262}
  1962. m_LocalRotation: {x: 0.000000021855694, y: 0.00000008742278, z: -1.9106855e-15,
  1963. w: 1}
  1964. m_LocalPosition: {x: -0.020713493, y: -0.00016317848, z: 0.017985823}
  1965. m_LocalScale: {x: 1, y: 1, z: 1}
  1966. m_Children: []
  1967. m_Father: {fileID: 4693725420361670}
  1968. m_RootOrder: 4
  1969. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1970. --- !u!4 &4993095893070850
  1971. Transform:
  1972. m_ObjectHideFlags: 1
  1973. m_PrefabParentObject: {fileID: 0}
  1974. m_PrefabInternal: {fileID: 100100000}
  1975. m_GameObject: {fileID: 1857813620353714}
  1976. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1977. m_LocalPosition: {x: -0, y: 0, z: 0}
  1978. m_LocalScale: {x: 1, y: 1, z: 1}
  1979. m_Children: []
  1980. m_Father: {fileID: 4865815721467250}
  1981. m_RootOrder: 0
  1982. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1983. --- !u!20 &20320088114743364
  1984. Camera:
  1985. m_ObjectHideFlags: 1
  1986. m_PrefabParentObject: {fileID: 0}
  1987. m_PrefabInternal: {fileID: 100100000}
  1988. m_GameObject: {fileID: 1687990807718132}
  1989. m_Enabled: 0
  1990. serializedVersion: 2
  1991. m_ClearFlags: 2
  1992. m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1}
  1993. m_NormalizedViewPortRect:
  1994. serializedVersion: 2
  1995. x: 0
  1996. y: 0
  1997. width: 1
  1998. height: 1
  1999. near clip plane: 0.01
  2000. far clip plane: 1000
  2001. field of view: 27.4
  2002. orthographic: 0
  2003. orthographic size: 5
  2004. m_Depth: 0
  2005. m_CullingMask:
  2006. serializedVersion: 2
  2007. m_Bits: 4294967295
  2008. m_RenderingPath: -1
  2009. m_TargetTexture: {fileID: 0}
  2010. m_TargetDisplay: 0
  2011. m_TargetEye: 3
  2012. m_HDR: 0
  2013. m_AllowMSAA: 1
  2014. m_AllowDynamicResolution: 0
  2015. m_ForceIntoRT: 0
  2016. m_OcclusionCulling: 1
  2017. m_StereoConvergence: 10
  2018. m_StereoSeparation: 0.022
  2019. --- !u!20 &20454870205990702
  2020. Camera:
  2021. m_ObjectHideFlags: 1
  2022. m_PrefabParentObject: {fileID: 0}
  2023. m_PrefabInternal: {fileID: 100100000}
  2024. m_GameObject: {fileID: 1274723906782620}
  2025. m_Enabled: 0
  2026. serializedVersion: 2
  2027. m_ClearFlags: 2
  2028. m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
  2029. m_NormalizedViewPortRect:
  2030. serializedVersion: 2
  2031. x: 0
  2032. y: 0
  2033. width: 1
  2034. height: 1
  2035. near clip plane: 0.03
  2036. far clip plane: 100
  2037. field of view: 90
  2038. orthographic: 0
  2039. orthographic size: 5
  2040. m_Depth: 0
  2041. m_CullingMask:
  2042. serializedVersion: 2
  2043. m_Bits: 32
  2044. m_RenderingPath: -1
  2045. m_TargetTexture: {fileID: 0}
  2046. m_TargetDisplay: 0
  2047. m_TargetEye: 3
  2048. m_HDR: 0
  2049. m_AllowMSAA: 1
  2050. m_AllowDynamicResolution: 0
  2051. m_ForceIntoRT: 0
  2052. m_OcclusionCulling: 1
  2053. m_StereoConvergence: 10
  2054. m_StereoSeparation: 0.022
  2055. --- !u!20 &20461493053110492
  2056. Camera:
  2057. m_ObjectHideFlags: 1
  2058. m_PrefabParentObject: {fileID: 0}
  2059. m_PrefabInternal: {fileID: 100100000}
  2060. m_GameObject: {fileID: 1503711807111756}
  2061. m_Enabled: 0
  2062. serializedVersion: 2
  2063. m_ClearFlags: 2
  2064. m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
  2065. m_NormalizedViewPortRect:
  2066. serializedVersion: 2
  2067. x: 0
  2068. y: 0
  2069. width: 1
  2070. height: 1
  2071. near clip plane: 0.03
  2072. far clip plane: 100
  2073. field of view: 90
  2074. orthographic: 0
  2075. orthographic size: 5
  2076. m_Depth: 0
  2077. m_CullingMask:
  2078. serializedVersion: 2
  2079. m_Bits: 32
  2080. m_RenderingPath: -1
  2081. m_TargetTexture: {fileID: 0}
  2082. m_TargetDisplay: 0
  2083. m_TargetEye: 3
  2084. m_HDR: 0
  2085. m_AllowMSAA: 1
  2086. m_AllowDynamicResolution: 0
  2087. m_ForceIntoRT: 0
  2088. m_OcclusionCulling: 1
  2089. m_StereoConvergence: 10
  2090. m_StereoSeparation: 0.022
  2091. --- !u!20 &20899961603007150
  2092. Camera:
  2093. m_ObjectHideFlags: 1
  2094. m_PrefabParentObject: {fileID: 0}
  2095. m_PrefabInternal: {fileID: 100100000}
  2096. m_GameObject: {fileID: 1364410240662954}
  2097. m_Enabled: 0
  2098. serializedVersion: 2
  2099. m_ClearFlags: 2
  2100. m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1}
  2101. m_NormalizedViewPortRect:
  2102. serializedVersion: 2
  2103. x: 0
  2104. y: 0
  2105. width: 1
  2106. height: 1
  2107. near clip plane: 0.01
  2108. far clip plane: 1000
  2109. field of view: 27.4
  2110. orthographic: 0
  2111. orthographic size: 5
  2112. m_Depth: 0
  2113. m_CullingMask:
  2114. serializedVersion: 2
  2115. m_Bits: 4294967295
  2116. m_RenderingPath: -1
  2117. m_TargetTexture: {fileID: 0}
  2118. m_TargetDisplay: 0
  2119. m_TargetEye: 3
  2120. m_HDR: 0
  2121. m_AllowMSAA: 1
  2122. m_AllowDynamicResolution: 0
  2123. m_ForceIntoRT: 0
  2124. m_OcclusionCulling: 1
  2125. m_StereoConvergence: 10
  2126. m_StereoSeparation: 0.022
  2127. --- !u!20 &20913649207440992
  2128. Camera:
  2129. m_ObjectHideFlags: 1
  2130. m_PrefabParentObject: {fileID: 0}
  2131. m_PrefabInternal: {fileID: 100100000}
  2132. m_GameObject: {fileID: 1921842542114302}
  2133. m_Enabled: 0
  2134. serializedVersion: 2
  2135. m_ClearFlags: 2
  2136. m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
  2137. m_NormalizedViewPortRect:
  2138. serializedVersion: 2
  2139. x: 0
  2140. y: 0
  2141. width: 1
  2142. height: 1
  2143. near clip plane: 0.03
  2144. far clip plane: 100
  2145. field of view: 90
  2146. orthographic: 0
  2147. orthographic size: 5
  2148. m_Depth: 0
  2149. m_CullingMask:
  2150. serializedVersion: 2
  2151. m_Bits: 32
  2152. m_RenderingPath: -1
  2153. m_TargetTexture: {fileID: 0}
  2154. m_TargetDisplay: 0
  2155. m_TargetEye: 3
  2156. m_HDR: 0
  2157. m_AllowMSAA: 1
  2158. m_AllowDynamicResolution: 0
  2159. m_ForceIntoRT: 0
  2160. m_OcclusionCulling: 1
  2161. m_StereoConvergence: 10
  2162. m_StereoSeparation: 0.022
  2163. --- !u!20 &20958118981660222
  2164. Camera:
  2165. m_ObjectHideFlags: 1
  2166. m_PrefabParentObject: {fileID: 0}
  2167. m_PrefabInternal: {fileID: 100100000}
  2168. m_GameObject: {fileID: 1015205079863316}
  2169. m_Enabled: 0
  2170. serializedVersion: 2
  2171. m_ClearFlags: 1
  2172. m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1}
  2173. m_NormalizedViewPortRect:
  2174. serializedVersion: 2
  2175. x: 0
  2176. y: 0
  2177. width: 1
  2178. height: 1
  2179. near clip plane: 0.3
  2180. far clip plane: 1000
  2181. field of view: 90
  2182. orthographic: 0
  2183. orthographic size: 5
  2184. m_Depth: 0
  2185. m_CullingMask:
  2186. serializedVersion: 2
  2187. m_Bits: 4294967295
  2188. m_RenderingPath: -1
  2189. m_TargetTexture: {fileID: 0}
  2190. m_TargetDisplay: 0
  2191. m_TargetEye: 3
  2192. m_HDR: 0
  2193. m_AllowMSAA: 1
  2194. m_AllowDynamicResolution: 0
  2195. m_ForceIntoRT: 0
  2196. m_OcclusionCulling: 1
  2197. m_StereoConvergence: 10
  2198. m_StereoSeparation: 0.022
  2199. --- !u!23 &23118716930643858
  2200. MeshRenderer:
  2201. m_ObjectHideFlags: 1
  2202. m_PrefabParentObject: {fileID: 0}
  2203. m_PrefabInternal: {fileID: 100100000}
  2204. m_GameObject: {fileID: 1857813620353714}
  2205. m_Enabled: 1
  2206. m_CastShadows: 1
  2207. m_ReceiveShadows: 1
  2208. m_DynamicOccludee: 1
  2209. m_MotionVectors: 1
  2210. m_LightProbeUsage: 1
  2211. m_ReflectionProbeUsage: 1
  2212. m_Materials:
  2213. - {fileID: 2100000, guid: c40ba7125c20b6147a3ee697fe09cc67, type: 2}
  2214. m_StaticBatchInfo:
  2215. firstSubMesh: 0
  2216. subMeshCount: 0
  2217. m_StaticBatchRoot: {fileID: 0}
  2218. m_ProbeAnchor: {fileID: 0}
  2219. m_LightProbeVolumeOverride: {fileID: 0}
  2220. m_ScaleInLightmap: 1
  2221. m_PreserveUVs: 0
  2222. m_IgnoreNormalsForChartDetection: 0
  2223. m_ImportantGI: 0
  2224. m_StitchLightmapSeams: 0
  2225. m_SelectedEditorRenderState: 3
  2226. m_MinimumChartSize: 4
  2227. m_AutoUVMaxDistance: 0.5
  2228. m_AutoUVMaxAngle: 89
  2229. m_LightmapParameters: {fileID: 0}
  2230. m_SortingLayerID: 0
  2231. m_SortingLayer: 0
  2232. m_SortingOrder: 0
  2233. --- !u!23 &23153429131756018
  2234. MeshRenderer:
  2235. m_ObjectHideFlags: 1
  2236. m_PrefabParentObject: {fileID: 0}
  2237. m_PrefabInternal: {fileID: 100100000}
  2238. m_GameObject: {fileID: 1989273577072080}
  2239. m_Enabled: 1
  2240. m_CastShadows: 1
  2241. m_ReceiveShadows: 1
  2242. m_DynamicOccludee: 1
  2243. m_MotionVectors: 1
  2244. m_LightProbeUsage: 1
  2245. m_ReflectionProbeUsage: 1
  2246. m_Materials:
  2247. - {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  2248. m_StaticBatchInfo:
  2249. firstSubMesh: 0
  2250. subMeshCount: 0
  2251. m_StaticBatchRoot: {fileID: 0}
  2252. m_ProbeAnchor: {fileID: 0}
  2253. m_LightProbeVolumeOverride: {fileID: 0}
  2254. m_ScaleInLightmap: 1
  2255. m_PreserveUVs: 0
  2256. m_IgnoreNormalsForChartDetection: 0
  2257. m_ImportantGI: 0
  2258. m_StitchLightmapSeams: 0
  2259. m_SelectedEditorRenderState: 3
  2260. m_MinimumChartSize: 4
  2261. m_AutoUVMaxDistance: 0.5
  2262. m_AutoUVMaxAngle: 89
  2263. m_LightmapParameters: {fileID: 0}
  2264. m_SortingLayerID: 0
  2265. m_SortingLayer: 0
  2266. m_SortingOrder: 0
  2267. --- !u!23 &23173827596008832
  2268. MeshRenderer:
  2269. m_ObjectHideFlags: 1
  2270. m_PrefabParentObject: {fileID: 0}
  2271. m_PrefabInternal: {fileID: 100100000}
  2272. m_GameObject: {fileID: 1379767780872134}
  2273. m_Enabled: 1
  2274. m_CastShadows: 1
  2275. m_ReceiveShadows: 1
  2276. m_DynamicOccludee: 1
  2277. m_MotionVectors: 1
  2278. m_LightProbeUsage: 1
  2279. m_ReflectionProbeUsage: 1
  2280. m_Materials:
  2281. - {fileID: 2100000, guid: 2c6a70d72b198034c943c314b2adcf04, type: 2}
  2282. m_StaticBatchInfo:
  2283. firstSubMesh: 0
  2284. subMeshCount: 0
  2285. m_StaticBatchRoot: {fileID: 0}
  2286. m_ProbeAnchor: {fileID: 0}
  2287. m_LightProbeVolumeOverride: {fileID: 0}
  2288. m_ScaleInLightmap: 1
  2289. m_PreserveUVs: 0
  2290. m_IgnoreNormalsForChartDetection: 0
  2291. m_ImportantGI: 0
  2292. m_StitchLightmapSeams: 0
  2293. m_SelectedEditorRenderState: 3
  2294. m_MinimumChartSize: 4
  2295. m_AutoUVMaxDistance: 0.5
  2296. m_AutoUVMaxAngle: 89
  2297. m_LightmapParameters: {fileID: 0}
  2298. m_SortingLayerID: 0
  2299. m_SortingLayer: 0
  2300. m_SortingOrder: 0
  2301. --- !u!23 &23183123319105950
  2302. MeshRenderer:
  2303. m_ObjectHideFlags: 1
  2304. m_PrefabParentObject: {fileID: 0}
  2305. m_PrefabInternal: {fileID: 100100000}
  2306. m_GameObject: {fileID: 1880338652899262}
  2307. m_Enabled: 1
  2308. m_CastShadows: 1
  2309. m_ReceiveShadows: 1
  2310. m_DynamicOccludee: 1
  2311. m_MotionVectors: 1
  2312. m_LightProbeUsage: 1
  2313. m_ReflectionProbeUsage: 1
  2314. m_Materials:
  2315. - {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  2316. m_StaticBatchInfo:
  2317. firstSubMesh: 0
  2318. subMeshCount: 0
  2319. m_StaticBatchRoot: {fileID: 0}
  2320. m_ProbeAnchor: {fileID: 0}
  2321. m_LightProbeVolumeOverride: {fileID: 0}
  2322. m_ScaleInLightmap: 1
  2323. m_PreserveUVs: 0
  2324. m_IgnoreNormalsForChartDetection: 0
  2325. m_ImportantGI: 0
  2326. m_StitchLightmapSeams: 0
  2327. m_SelectedEditorRenderState: 3
  2328. m_MinimumChartSize: 4
  2329. m_AutoUVMaxDistance: 0.5
  2330. m_AutoUVMaxAngle: 89
  2331. m_LightmapParameters: {fileID: 0}
  2332. m_SortingLayerID: 0
  2333. m_SortingLayer: 0
  2334. m_SortingOrder: 0
  2335. --- !u!23 &23255151372307716
  2336. MeshRenderer:
  2337. m_ObjectHideFlags: 1
  2338. m_PrefabParentObject: {fileID: 0}
  2339. m_PrefabInternal: {fileID: 100100000}
  2340. m_GameObject: {fileID: 1679942072902480}
  2341. m_Enabled: 1
  2342. m_CastShadows: 1
  2343. m_ReceiveShadows: 1
  2344. m_DynamicOccludee: 1
  2345. m_MotionVectors: 1
  2346. m_LightProbeUsage: 1
  2347. m_ReflectionProbeUsage: 1
  2348. m_Materials:
  2349. - {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  2350. m_StaticBatchInfo:
  2351. firstSubMesh: 0
  2352. subMeshCount: 0
  2353. m_StaticBatchRoot: {fileID: 0}
  2354. m_ProbeAnchor: {fileID: 0}
  2355. m_LightProbeVolumeOverride: {fileID: 0}
  2356. m_ScaleInLightmap: 1
  2357. m_PreserveUVs: 0
  2358. m_IgnoreNormalsForChartDetection: 0
  2359. m_ImportantGI: 0
  2360. m_StitchLightmapSeams: 0
  2361. m_SelectedEditorRenderState: 3
  2362. m_MinimumChartSize: 4
  2363. m_AutoUVMaxDistance: 0.5
  2364. m_AutoUVMaxAngle: 89
  2365. m_LightmapParameters: {fileID: 0}
  2366. m_SortingLayerID: 0
  2367. m_SortingLayer: 0
  2368. m_SortingOrder: 0
  2369. --- !u!23 &23389030766378156
  2370. MeshRenderer:
  2371. m_ObjectHideFlags: 1
  2372. m_PrefabParentObject: {fileID: 0}
  2373. m_PrefabInternal: {fileID: 100100000}
  2374. m_GameObject: {fileID: 1844231281819750}
  2375. m_Enabled: 1
  2376. m_CastShadows: 1
  2377. m_ReceiveShadows: 1
  2378. m_DynamicOccludee: 1
  2379. m_MotionVectors: 1
  2380. m_LightProbeUsage: 1
  2381. m_ReflectionProbeUsage: 1
  2382. m_Materials:
  2383. - {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  2384. m_StaticBatchInfo:
  2385. firstSubMesh: 0
  2386. subMeshCount: 0
  2387. m_StaticBatchRoot: {fileID: 0}
  2388. m_ProbeAnchor: {fileID: 0}
  2389. m_LightProbeVolumeOverride: {fileID: 0}
  2390. m_ScaleInLightmap: 1
  2391. m_PreserveUVs: 0
  2392. m_IgnoreNormalsForChartDetection: 0
  2393. m_ImportantGI: 0
  2394. m_StitchLightmapSeams: 0
  2395. m_SelectedEditorRenderState: 3
  2396. m_MinimumChartSize: 4
  2397. m_AutoUVMaxDistance: 0.5
  2398. m_AutoUVMaxAngle: 89
  2399. m_LightmapParameters: {fileID: 0}
  2400. m_SortingLayerID: 0
  2401. m_SortingLayer: 0
  2402. m_SortingOrder: 0
  2403. --- !u!23 &23430685652239280
  2404. MeshRenderer:
  2405. m_ObjectHideFlags: 1
  2406. m_PrefabParentObject: {fileID: 0}
  2407. m_PrefabInternal: {fileID: 100100000}
  2408. m_GameObject: {fileID: 1407198949309676}
  2409. m_Enabled: 1
  2410. m_CastShadows: 1
  2411. m_ReceiveShadows: 1
  2412. m_DynamicOccludee: 1
  2413. m_MotionVectors: 1
  2414. m_LightProbeUsage: 1
  2415. m_ReflectionProbeUsage: 1
  2416. m_Materials:
  2417. - {fileID: 2100000, guid: 1b4eb42734d00664983d289ea2d27fc3, type: 2}
  2418. m_StaticBatchInfo:
  2419. firstSubMesh: 0
  2420. subMeshCount: 0
  2421. m_StaticBatchRoot: {fileID: 0}
  2422. m_ProbeAnchor: {fileID: 0}
  2423. m_LightProbeVolumeOverride: {fileID: 0}
  2424. m_ScaleInLightmap: 1
  2425. m_PreserveUVs: 0
  2426. m_IgnoreNormalsForChartDetection: 0
  2427. m_ImportantGI: 0
  2428. m_StitchLightmapSeams: 0
  2429. m_SelectedEditorRenderState: 3
  2430. m_MinimumChartSize: 4
  2431. m_AutoUVMaxDistance: 0.5
  2432. m_AutoUVMaxAngle: 89
  2433. m_LightmapParameters: {fileID: 0}
  2434. m_SortingLayerID: 0
  2435. m_SortingLayer: 0
  2436. m_SortingOrder: 0
  2437. --- !u!23 &23489904839521972
  2438. MeshRenderer:
  2439. m_ObjectHideFlags: 1
  2440. m_PrefabParentObject: {fileID: 0}
  2441. m_PrefabInternal: {fileID: 100100000}
  2442. m_GameObject: {fileID: 1910693291792744}
  2443. m_Enabled: 1
  2444. m_CastShadows: 1
  2445. m_ReceiveShadows: 1
  2446. m_DynamicOccludee: 1
  2447. m_MotionVectors: 1
  2448. m_LightProbeUsage: 1
  2449. m_ReflectionProbeUsage: 1
  2450. m_Materials:
  2451. - {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  2452. m_StaticBatchInfo:
  2453. firstSubMesh: 0
  2454. subMeshCount: 0
  2455. m_StaticBatchRoot: {fileID: 0}
  2456. m_ProbeAnchor: {fileID: 0}
  2457. m_LightProbeVolumeOverride: {fileID: 0}
  2458. m_ScaleInLightmap: 1
  2459. m_PreserveUVs: 0
  2460. m_IgnoreNormalsForChartDetection: 0
  2461. m_ImportantGI: 0
  2462. m_StitchLightmapSeams: 0
  2463. m_SelectedEditorRenderState: 3
  2464. m_MinimumChartSize: 4
  2465. m_AutoUVMaxDistance: 0.5
  2466. m_AutoUVMaxAngle: 89
  2467. m_LightmapParameters: {fileID: 0}
  2468. m_SortingLayerID: 0
  2469. m_SortingLayer: 0
  2470. m_SortingOrder: 0
  2471. --- !u!23 &23525455966816958
  2472. MeshRenderer:
  2473. m_ObjectHideFlags: 1
  2474. m_PrefabParentObject: {fileID: 0}
  2475. m_PrefabInternal: {fileID: 100100000}
  2476. m_GameObject: {fileID: 1385807594792148}
  2477. m_Enabled: 1
  2478. m_CastShadows: 1
  2479. m_ReceiveShadows: 1
  2480. m_DynamicOccludee: 1
  2481. m_MotionVectors: 1
  2482. m_LightProbeUsage: 1
  2483. m_ReflectionProbeUsage: 1
  2484. m_Materials:
  2485. - {fileID: 2100000, guid: 1b4eb42734d00664983d289ea2d27fc3, type: 2}
  2486. m_StaticBatchInfo:
  2487. firstSubMesh: 0
  2488. subMeshCount: 0
  2489. m_StaticBatchRoot: {fileID: 0}
  2490. m_ProbeAnchor: {fileID: 0}
  2491. m_LightProbeVolumeOverride: {fileID: 0}
  2492. m_ScaleInLightmap: 1
  2493. m_PreserveUVs: 0
  2494. m_IgnoreNormalsForChartDetection: 0
  2495. m_ImportantGI: 0
  2496. m_StitchLightmapSeams: 0
  2497. m_SelectedEditorRenderState: 3
  2498. m_MinimumChartSize: 4
  2499. m_AutoUVMaxDistance: 0.5
  2500. m_AutoUVMaxAngle: 89
  2501. m_LightmapParameters: {fileID: 0}
  2502. m_SortingLayerID: 0
  2503. m_SortingLayer: 0
  2504. m_SortingOrder: 0
  2505. --- !u!23 &23576315961231554
  2506. MeshRenderer:
  2507. m_ObjectHideFlags: 1
  2508. m_PrefabParentObject: {fileID: 0}
  2509. m_PrefabInternal: {fileID: 100100000}
  2510. m_GameObject: {fileID: 1597115745663624}
  2511. m_Enabled: 1
  2512. m_CastShadows: 1
  2513. m_ReceiveShadows: 1
  2514. m_DynamicOccludee: 1
  2515. m_MotionVectors: 1
  2516. m_LightProbeUsage: 1
  2517. m_ReflectionProbeUsage: 1
  2518. m_Materials:
  2519. - {fileID: 2100000, guid: 1b4eb42734d00664983d289ea2d27fc3, type: 2}
  2520. m_StaticBatchInfo:
  2521. firstSubMesh: 0
  2522. subMeshCount: 0
  2523. m_StaticBatchRoot: {fileID: 0}
  2524. m_ProbeAnchor: {fileID: 0}
  2525. m_LightProbeVolumeOverride: {fileID: 0}
  2526. m_ScaleInLightmap: 1
  2527. m_PreserveUVs: 0
  2528. m_IgnoreNormalsForChartDetection: 0
  2529. m_ImportantGI: 0
  2530. m_StitchLightmapSeams: 0
  2531. m_SelectedEditorRenderState: 3
  2532. m_MinimumChartSize: 4
  2533. m_AutoUVMaxDistance: 0.5
  2534. m_AutoUVMaxAngle: 89
  2535. m_LightmapParameters: {fileID: 0}
  2536. m_SortingLayerID: 0
  2537. m_SortingLayer: 0
  2538. m_SortingOrder: 0
  2539. --- !u!23 &23698246664400606
  2540. MeshRenderer:
  2541. m_ObjectHideFlags: 1
  2542. m_PrefabParentObject: {fileID: 0}
  2543. m_PrefabInternal: {fileID: 100100000}
  2544. m_GameObject: {fileID: 1021210004538364}
  2545. m_Enabled: 1
  2546. m_CastShadows: 1
  2547. m_ReceiveShadows: 1
  2548. m_DynamicOccludee: 1
  2549. m_MotionVectors: 1
  2550. m_LightProbeUsage: 1
  2551. m_ReflectionProbeUsage: 1
  2552. m_Materials:
  2553. - {fileID: 2100000, guid: 2c6a70d72b198034c943c314b2adcf04, type: 2}
  2554. m_StaticBatchInfo:
  2555. firstSubMesh: 0
  2556. subMeshCount: 0
  2557. m_StaticBatchRoot: {fileID: 0}
  2558. m_ProbeAnchor: {fileID: 0}
  2559. m_LightProbeVolumeOverride: {fileID: 0}
  2560. m_ScaleInLightmap: 1
  2561. m_PreserveUVs: 0
  2562. m_IgnoreNormalsForChartDetection: 0
  2563. m_ImportantGI: 0
  2564. m_StitchLightmapSeams: 0
  2565. m_SelectedEditorRenderState: 3
  2566. m_MinimumChartSize: 4
  2567. m_AutoUVMaxDistance: 0.5
  2568. m_AutoUVMaxAngle: 89
  2569. m_LightmapParameters: {fileID: 0}
  2570. m_SortingLayerID: 0
  2571. m_SortingLayer: 0
  2572. m_SortingOrder: 0
  2573. --- !u!23 &23747600240659170
  2574. MeshRenderer:
  2575. m_ObjectHideFlags: 1
  2576. m_PrefabParentObject: {fileID: 0}
  2577. m_PrefabInternal: {fileID: 100100000}
  2578. m_GameObject: {fileID: 1847767592272548}
  2579. m_Enabled: 1
  2580. m_CastShadows: 1
  2581. m_ReceiveShadows: 1
  2582. m_DynamicOccludee: 1
  2583. m_MotionVectors: 1
  2584. m_LightProbeUsage: 1
  2585. m_ReflectionProbeUsage: 1
  2586. m_Materials:
  2587. - {fileID: 2100000, guid: c40ba7125c20b6147a3ee697fe09cc67, type: 2}
  2588. m_StaticBatchInfo:
  2589. firstSubMesh: 0
  2590. subMeshCount: 0
  2591. m_StaticBatchRoot: {fileID: 0}
  2592. m_ProbeAnchor: {fileID: 0}
  2593. m_LightProbeVolumeOverride: {fileID: 0}
  2594. m_ScaleInLightmap: 1
  2595. m_PreserveUVs: 0
  2596. m_IgnoreNormalsForChartDetection: 0
  2597. m_ImportantGI: 0
  2598. m_StitchLightmapSeams: 0
  2599. m_SelectedEditorRenderState: 3
  2600. m_MinimumChartSize: 4
  2601. m_AutoUVMaxDistance: 0.5
  2602. m_AutoUVMaxAngle: 89
  2603. m_LightmapParameters: {fileID: 0}
  2604. m_SortingLayerID: 0
  2605. m_SortingLayer: 0
  2606. m_SortingOrder: 0
  2607. --- !u!23 &23833625919228672
  2608. MeshRenderer:
  2609. m_ObjectHideFlags: 1
  2610. m_PrefabParentObject: {fileID: 0}
  2611. m_PrefabInternal: {fileID: 100100000}
  2612. m_GameObject: {fileID: 1778847862384098}
  2613. m_Enabled: 1
  2614. m_CastShadows: 1
  2615. m_ReceiveShadows: 1
  2616. m_DynamicOccludee: 1
  2617. m_MotionVectors: 1
  2618. m_LightProbeUsage: 1
  2619. m_ReflectionProbeUsage: 1
  2620. m_Materials:
  2621. - {fileID: 2100000, guid: 1b4eb42734d00664983d289ea2d27fc3, type: 2}
  2622. m_StaticBatchInfo:
  2623. firstSubMesh: 0
  2624. subMeshCount: 0
  2625. m_StaticBatchRoot: {fileID: 0}
  2626. m_ProbeAnchor: {fileID: 0}
  2627. m_LightProbeVolumeOverride: {fileID: 0}
  2628. m_ScaleInLightmap: 1
  2629. m_PreserveUVs: 0
  2630. m_IgnoreNormalsForChartDetection: 0
  2631. m_ImportantGI: 0
  2632. m_StitchLightmapSeams: 0
  2633. m_SelectedEditorRenderState: 3
  2634. m_MinimumChartSize: 4
  2635. m_AutoUVMaxDistance: 0.5
  2636. m_AutoUVMaxAngle: 89
  2637. m_LightmapParameters: {fileID: 0}
  2638. m_SortingLayerID: 0
  2639. m_SortingLayer: 0
  2640. m_SortingOrder: 0
  2641. --- !u!23 &23932059663633580
  2642. MeshRenderer:
  2643. m_ObjectHideFlags: 1
  2644. m_PrefabParentObject: {fileID: 0}
  2645. m_PrefabInternal: {fileID: 100100000}
  2646. m_GameObject: {fileID: 1146501631072402}
  2647. m_Enabled: 1
  2648. m_CastShadows: 1
  2649. m_ReceiveShadows: 1
  2650. m_DynamicOccludee: 1
  2651. m_MotionVectors: 1
  2652. m_LightProbeUsage: 1
  2653. m_ReflectionProbeUsage: 1
  2654. m_Materials:
  2655. - {fileID: 2100000, guid: c40ba7125c20b6147a3ee697fe09cc67, type: 2}
  2656. m_StaticBatchInfo:
  2657. firstSubMesh: 0
  2658. subMeshCount: 0
  2659. m_StaticBatchRoot: {fileID: 0}
  2660. m_ProbeAnchor: {fileID: 0}
  2661. m_LightProbeVolumeOverride: {fileID: 0}
  2662. m_ScaleInLightmap: 1
  2663. m_PreserveUVs: 0
  2664. m_IgnoreNormalsForChartDetection: 0
  2665. m_ImportantGI: 0
  2666. m_StitchLightmapSeams: 0
  2667. m_SelectedEditorRenderState: 3
  2668. m_MinimumChartSize: 4
  2669. m_AutoUVMaxDistance: 0.5
  2670. m_AutoUVMaxAngle: 89
  2671. m_LightmapParameters: {fileID: 0}
  2672. m_SortingLayerID: 0
  2673. m_SortingLayer: 0
  2674. m_SortingOrder: 0
  2675. --- !u!23 &23963143730638740
  2676. MeshRenderer:
  2677. m_ObjectHideFlags: 1
  2678. m_PrefabParentObject: {fileID: 0}
  2679. m_PrefabInternal: {fileID: 100100000}
  2680. m_GameObject: {fileID: 1761176673634732}
  2681. m_Enabled: 1
  2682. m_CastShadows: 1
  2683. m_ReceiveShadows: 1
  2684. m_DynamicOccludee: 1
  2685. m_MotionVectors: 1
  2686. m_LightProbeUsage: 1
  2687. m_ReflectionProbeUsage: 1
  2688. m_Materials:
  2689. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  2690. m_StaticBatchInfo:
  2691. firstSubMesh: 0
  2692. subMeshCount: 0
  2693. m_StaticBatchRoot: {fileID: 0}
  2694. m_ProbeAnchor: {fileID: 0}
  2695. m_LightProbeVolumeOverride: {fileID: 0}
  2696. m_ScaleInLightmap: 1
  2697. m_PreserveUVs: 1
  2698. m_IgnoreNormalsForChartDetection: 0
  2699. m_ImportantGI: 0
  2700. m_StitchLightmapSeams: 0
  2701. m_SelectedEditorRenderState: 3
  2702. m_MinimumChartSize: 4
  2703. m_AutoUVMaxDistance: 0.5
  2704. m_AutoUVMaxAngle: 89
  2705. m_LightmapParameters: {fileID: 0}
  2706. m_SortingLayerID: 0
  2707. m_SortingLayer: 0
  2708. m_SortingOrder: 0
  2709. --- !u!23 &23991992014464340
  2710. MeshRenderer:
  2711. m_ObjectHideFlags: 1
  2712. m_PrefabParentObject: {fileID: 0}
  2713. m_PrefabInternal: {fileID: 100100000}
  2714. m_GameObject: {fileID: 1043270915479188}
  2715. m_Enabled: 1
  2716. m_CastShadows: 1
  2717. m_ReceiveShadows: 1
  2718. m_DynamicOccludee: 1
  2719. m_MotionVectors: 1
  2720. m_LightProbeUsage: 1
  2721. m_ReflectionProbeUsage: 1
  2722. m_Materials:
  2723. - {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  2724. m_StaticBatchInfo:
  2725. firstSubMesh: 0
  2726. subMeshCount: 0
  2727. m_StaticBatchRoot: {fileID: 0}
  2728. m_ProbeAnchor: {fileID: 0}
  2729. m_LightProbeVolumeOverride: {fileID: 0}
  2730. m_ScaleInLightmap: 1
  2731. m_PreserveUVs: 0
  2732. m_IgnoreNormalsForChartDetection: 0
  2733. m_ImportantGI: 0
  2734. m_StitchLightmapSeams: 0
  2735. m_SelectedEditorRenderState: 3
  2736. m_MinimumChartSize: 4
  2737. m_AutoUVMaxDistance: 0.5
  2738. m_AutoUVMaxAngle: 89
  2739. m_LightmapParameters: {fileID: 0}
  2740. m_SortingLayerID: 0
  2741. m_SortingLayer: 0
  2742. m_SortingOrder: 0
  2743. --- !u!23 &23992908614689102
  2744. MeshRenderer:
  2745. m_ObjectHideFlags: 1
  2746. m_PrefabParentObject: {fileID: 0}
  2747. m_PrefabInternal: {fileID: 100100000}
  2748. m_GameObject: {fileID: 1460681799994562}
  2749. m_Enabled: 1
  2750. m_CastShadows: 1
  2751. m_ReceiveShadows: 1
  2752. m_DynamicOccludee: 1
  2753. m_MotionVectors: 1
  2754. m_LightProbeUsage: 1
  2755. m_ReflectionProbeUsage: 1
  2756. m_Materials:
  2757. - {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  2758. m_StaticBatchInfo:
  2759. firstSubMesh: 0
  2760. subMeshCount: 0
  2761. m_StaticBatchRoot: {fileID: 0}
  2762. m_ProbeAnchor: {fileID: 0}
  2763. m_LightProbeVolumeOverride: {fileID: 0}
  2764. m_ScaleInLightmap: 1
  2765. m_PreserveUVs: 0
  2766. m_IgnoreNormalsForChartDetection: 0
  2767. m_ImportantGI: 0
  2768. m_StitchLightmapSeams: 0
  2769. m_SelectedEditorRenderState: 3
  2770. m_MinimumChartSize: 4
  2771. m_AutoUVMaxDistance: 0.5
  2772. m_AutoUVMaxAngle: 89
  2773. m_LightmapParameters: {fileID: 0}
  2774. m_SortingLayerID: 0
  2775. m_SortingLayer: 0
  2776. m_SortingOrder: 0
  2777. --- !u!33 &33054991263583400
  2778. MeshFilter:
  2779. m_ObjectHideFlags: 1
  2780. m_PrefabParentObject: {fileID: 0}
  2781. m_PrefabInternal: {fileID: 100100000}
  2782. m_GameObject: {fileID: 1847767592272548}
  2783. m_Mesh: {fileID: 4300000, guid: 59cc4de29b19776419fd2e7bc78d0d20, type: 3}
  2784. --- !u!33 &33148998424294172
  2785. MeshFilter:
  2786. m_ObjectHideFlags: 1
  2787. m_PrefabParentObject: {fileID: 0}
  2788. m_PrefabInternal: {fileID: 100100000}
  2789. m_GameObject: {fileID: 1880338652899262}
  2790. m_Mesh: {fileID: 4300008, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2791. --- !u!33 &33290694085283334
  2792. MeshFilter:
  2793. m_ObjectHideFlags: 1
  2794. m_PrefabParentObject: {fileID: 0}
  2795. m_PrefabInternal: {fileID: 100100000}
  2796. m_GameObject: {fileID: 1379767780872134}
  2797. m_Mesh: {fileID: 4300006, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2798. --- !u!33 &33301587952549738
  2799. MeshFilter:
  2800. m_ObjectHideFlags: 1
  2801. m_PrefabParentObject: {fileID: 0}
  2802. m_PrefabInternal: {fileID: 100100000}
  2803. m_GameObject: {fileID: 1043270915479188}
  2804. m_Mesh: {fileID: 4300002, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2805. --- !u!33 &33381082273219440
  2806. MeshFilter:
  2807. m_ObjectHideFlags: 1
  2808. m_PrefabParentObject: {fileID: 0}
  2809. m_PrefabInternal: {fileID: 100100000}
  2810. m_GameObject: {fileID: 1910693291792744}
  2811. m_Mesh: {fileID: 4300012, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2812. --- !u!33 &33449208629184662
  2813. MeshFilter:
  2814. m_ObjectHideFlags: 1
  2815. m_PrefabParentObject: {fileID: 0}
  2816. m_PrefabInternal: {fileID: 100100000}
  2817. m_GameObject: {fileID: 1021210004538364}
  2818. m_Mesh: {fileID: 4300006, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2819. --- !u!33 &33466522464460754
  2820. MeshFilter:
  2821. m_ObjectHideFlags: 1
  2822. m_PrefabParentObject: {fileID: 0}
  2823. m_PrefabInternal: {fileID: 100100000}
  2824. m_GameObject: {fileID: 1597115745663624}
  2825. m_Mesh: {fileID: 4300000, guid: 2584456d15f3c854293fe388364d2675, type: 3}
  2826. --- !u!33 &33488830674401898
  2827. MeshFilter:
  2828. m_ObjectHideFlags: 1
  2829. m_PrefabParentObject: {fileID: 0}
  2830. m_PrefabInternal: {fileID: 100100000}
  2831. m_GameObject: {fileID: 1761176673634732}
  2832. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  2833. --- !u!33 &33489282040249316
  2834. MeshFilter:
  2835. m_ObjectHideFlags: 1
  2836. m_PrefabParentObject: {fileID: 0}
  2837. m_PrefabInternal: {fileID: 100100000}
  2838. m_GameObject: {fileID: 1989273577072080}
  2839. m_Mesh: {fileID: 4300004, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2840. --- !u!33 &33589183027348256
  2841. MeshFilter:
  2842. m_ObjectHideFlags: 1
  2843. m_PrefabParentObject: {fileID: 0}
  2844. m_PrefabInternal: {fileID: 100100000}
  2845. m_GameObject: {fileID: 1679942072902480}
  2846. m_Mesh: {fileID: 4300000, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2847. --- !u!33 &33604472307167456
  2848. MeshFilter:
  2849. m_ObjectHideFlags: 1
  2850. m_PrefabParentObject: {fileID: 0}
  2851. m_PrefabInternal: {fileID: 100100000}
  2852. m_GameObject: {fileID: 1844231281819750}
  2853. m_Mesh: {fileID: 4300010, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2854. --- !u!33 &33691966190885564
  2855. MeshFilter:
  2856. m_ObjectHideFlags: 1
  2857. m_PrefabParentObject: {fileID: 0}
  2858. m_PrefabInternal: {fileID: 100100000}
  2859. m_GameObject: {fileID: 1460681799994562}
  2860. m_Mesh: {fileID: 4300006, guid: c29cebe02595fe84da547e3f17a8ba81, type: 3}
  2861. --- !u!33 &33703261319938940
  2862. MeshFilter:
  2863. m_ObjectHideFlags: 1
  2864. m_PrefabParentObject: {fileID: 0}
  2865. m_PrefabInternal: {fileID: 100100000}
  2866. m_GameObject: {fileID: 1857813620353714}
  2867. m_Mesh: {fileID: 4300000, guid: 3d0474a897504584e8d8fef361b818ac, type: 3}
  2868. --- !u!33 &33838245989137428
  2869. MeshFilter:
  2870. m_ObjectHideFlags: 1
  2871. m_PrefabParentObject: {fileID: 0}
  2872. m_PrefabInternal: {fileID: 100100000}
  2873. m_GameObject: {fileID: 1407198949309676}
  2874. m_Mesh: {fileID: 4300006, guid: 2584456d15f3c854293fe388364d2675, type: 3}
  2875. --- !u!33 &33908665617237894
  2876. MeshFilter:
  2877. m_ObjectHideFlags: 1
  2878. m_PrefabParentObject: {fileID: 0}
  2879. m_PrefabInternal: {fileID: 100100000}
  2880. m_GameObject: {fileID: 1146501631072402}
  2881. m_Mesh: {fileID: 4300000, guid: 274fc108e2bac844f9a81cd380c570d0, type: 3}
  2882. --- !u!33 &33936683324148390
  2883. MeshFilter:
  2884. m_ObjectHideFlags: 1
  2885. m_PrefabParentObject: {fileID: 0}
  2886. m_PrefabInternal: {fileID: 100100000}
  2887. m_GameObject: {fileID: 1778847862384098}
  2888. m_Mesh: {fileID: 4300002, guid: 2584456d15f3c854293fe388364d2675, type: 3}
  2889. --- !u!33 &33944952337942220
  2890. MeshFilter:
  2891. m_ObjectHideFlags: 1
  2892. m_PrefabParentObject: {fileID: 0}
  2893. m_PrefabInternal: {fileID: 100100000}
  2894. m_GameObject: {fileID: 1385807594792148}
  2895. m_Mesh: {fileID: 4300004, guid: 2584456d15f3c854293fe388364d2675, type: 3}
  2896. --- !u!65 &65439044559410754
  2897. BoxCollider:
  2898. m_ObjectHideFlags: 1
  2899. m_PrefabParentObject: {fileID: 0}
  2900. m_PrefabInternal: {fileID: 100100000}
  2901. m_GameObject: {fileID: 1761176673634732}
  2902. m_Material: {fileID: 0}
  2903. m_IsTrigger: 0
  2904. m_Enabled: 1
  2905. serializedVersion: 2
  2906. m_Size: {x: 1, y: 1, z: 1}
  2907. m_Center: {x: 0, y: 0, z: 0}
  2908. --- !u!81 &81270192313429134
  2909. AudioListener:
  2910. m_ObjectHideFlags: 1
  2911. m_PrefabParentObject: {fileID: 0}
  2912. m_PrefabInternal: {fileID: 100100000}
  2913. m_GameObject: {fileID: 1687990807718132}
  2914. m_Enabled: 1
  2915. --- !u!95 &95461007655097332
  2916. Animator:
  2917. serializedVersion: 3
  2918. m_ObjectHideFlags: 1
  2919. m_PrefabParentObject: {fileID: 0}
  2920. m_PrefabInternal: {fileID: 100100000}
  2921. m_GameObject: {fileID: 1300326281954026}
  2922. m_Enabled: 1
  2923. m_Avatar: {fileID: 9000000, guid: 2584456d15f3c854293fe388364d2675, type: 3}
  2924. m_Controller: {fileID: 0}
  2925. m_CullingMode: 0
  2926. m_UpdateMode: 0
  2927. m_ApplyRootMotion: 0
  2928. m_LinearVelocityBlending: 0
  2929. m_WarningMessage:
  2930. m_HasTransformHierarchy: 1
  2931. m_AllowConstantClipSamplingOptimization: 1
  2932. --- !u!95 &95624088995505412
  2933. Animator:
  2934. serializedVersion: 3
  2935. m_ObjectHideFlags: 1
  2936. m_PrefabParentObject: {fileID: 0}
  2937. m_PrefabInternal: {fileID: 100100000}
  2938. m_GameObject: {fileID: 1847767592272548}
  2939. m_Enabled: 1
  2940. m_Avatar: {fileID: 9000000, guid: 59cc4de29b19776419fd2e7bc78d0d20, type: 3}
  2941. m_Controller: {fileID: 0}
  2942. m_CullingMode: 0
  2943. m_UpdateMode: 0
  2944. m_ApplyRootMotion: 0
  2945. m_LinearVelocityBlending: 0
  2946. m_WarningMessage:
  2947. m_HasTransformHierarchy: 1
  2948. m_AllowConstantClipSamplingOptimization: 1
  2949. --- !u!95 &95719277355437428
  2950. Animator:
  2951. serializedVersion: 3
  2952. m_ObjectHideFlags: 1
  2953. m_PrefabParentObject: {fileID: 0}
  2954. m_PrefabInternal: {fileID: 100100000}
  2955. m_GameObject: {fileID: 1501734189842776}
  2956. m_Enabled: 1
  2957. m_Avatar: {fileID: 0}
  2958. m_Controller: {fileID: 9100000, guid: f938cd1dafe7d0a4b9d71028b1a891eb, type: 2}
  2959. m_CullingMode: 0
  2960. m_UpdateMode: 0
  2961. m_ApplyRootMotion: 0
  2962. m_LinearVelocityBlending: 0
  2963. m_WarningMessage:
  2964. m_HasTransformHierarchy: 1
  2965. m_AllowConstantClipSamplingOptimization: 1
  2966. --- !u!95 &95847449239833238
  2967. Animator:
  2968. serializedVersion: 3
  2969. m_ObjectHideFlags: 1
  2970. m_PrefabParentObject: {fileID: 0}
  2971. m_PrefabInternal: {fileID: 100100000}
  2972. m_GameObject: {fileID: 1146501631072402}
  2973. m_Enabled: 1
  2974. m_Avatar: {fileID: 9000000, guid: 274fc108e2bac844f9a81cd380c570d0, type: 3}
  2975. m_Controller: {fileID: 0}
  2976. m_CullingMode: 0
  2977. m_UpdateMode: 0
  2978. m_ApplyRootMotion: 0
  2979. m_LinearVelocityBlending: 0
  2980. m_WarningMessage:
  2981. m_HasTransformHierarchy: 1
  2982. m_AllowConstantClipSamplingOptimization: 1
  2983. --- !u!95 &95893954905429186
  2984. Animator:
  2985. serializedVersion: 3
  2986. m_ObjectHideFlags: 1
  2987. m_PrefabParentObject: {fileID: 0}
  2988. m_PrefabInternal: {fileID: 100100000}
  2989. m_GameObject: {fileID: 1857813620353714}
  2990. m_Enabled: 1
  2991. m_Avatar: {fileID: 9000000, guid: 3d0474a897504584e8d8fef361b818ac, type: 3}
  2992. m_Controller: {fileID: 0}
  2993. m_CullingMode: 0
  2994. m_UpdateMode: 0
  2995. m_ApplyRootMotion: 0
  2996. m_LinearVelocityBlending: 0
  2997. m_WarningMessage:
  2998. m_HasTransformHierarchy: 1
  2999. m_AllowConstantClipSamplingOptimization: 1
  3000. --- !u!108 &108422988541680640
  3001. Light:
  3002. m_ObjectHideFlags: 1
  3003. m_PrefabParentObject: {fileID: 0}
  3004. m_PrefabInternal: {fileID: 100100000}
  3005. m_GameObject: {fileID: 1754261937116598}
  3006. m_Enabled: 1
  3007. serializedVersion: 8
  3008. m_Type: 2
  3009. m_Color: {r: 0.6043469, g: 0.7260395, b: 1, a: 1}
  3010. m_Intensity: 0.8
  3011. m_Range: 0.5
  3012. m_SpotAngle: 35
  3013. m_CookieSize: 10
  3014. m_Shadows:
  3015. m_Type: 0
  3016. m_Resolution: -1
  3017. m_CustomResolution: -1
  3018. m_Strength: 1
  3019. m_Bias: 0.05
  3020. m_NormalBias: 0.4
  3021. m_NearPlane: 0.2
  3022. m_Cookie: {fileID: 0}
  3023. m_DrawHalo: 0
  3024. m_Flare: {fileID: 0}
  3025. m_RenderMode: 0
  3026. m_CullingMask:
  3027. serializedVersion: 2
  3028. m_Bits: 4294967295
  3029. m_Lightmapping: 4
  3030. m_AreaSize: {x: 1, y: 1}
  3031. m_BounceIntensity: 1
  3032. m_ColorTemperature: 6570
  3033. m_UseColorTemperature: 0
  3034. m_ShadowRadius: 0
  3035. m_ShadowAngle: 0
  3036. --- !u!114 &114053476190485178
  3037. MonoBehaviour:
  3038. m_ObjectHideFlags: 1
  3039. m_PrefabParentObject: {fileID: 0}
  3040. m_PrefabInternal: {fileID: 100100000}
  3041. m_GameObject: {fileID: 1843897232960780}
  3042. m_Enabled: 0
  3043. m_EditorHideFlags: 0
  3044. m_Script: {fileID: 11500000, guid: 6700842966f339543b3fa5894759621c, type: 3}
  3045. m_Name:
  3046. m_EditorClassIdentifier:
  3047. layerDepth: 9
  3048. imageCamera: {fileID: 20454870205990702}
  3049. imageType: 1
  3050. imageTexture: {fileID: 2800000, guid: 85fe2eca73b81524c833be7b0a56e1b3, type: 3}
  3051. imageTransform: {fileID: 0}
  3052. clipLowerLeft: {x: -1, y: -1, z: 0, w: 1}
  3053. clipUpperLeft: {x: -1, y: 1, z: 0, w: 1}
  3054. clipUpperRight: {x: 1, y: 1, z: 0, w: 1}
  3055. clipLowerRight: {x: 1, y: -1, z: 0, w: 1}
  3056. uvLowerLeft: {x: 0, y: 0}
  3057. uvUpperLeft: {x: 0, y: 1}
  3058. uvUpperRight: {x: 1, y: 1}
  3059. uvLowerRight: {x: 1, y: 0}
  3060. resolutionScaleFactor: 1
  3061. side: 3
  3062. --- !u!114 &114098219620512812
  3063. MonoBehaviour:
  3064. m_ObjectHideFlags: 1
  3065. m_PrefabParentObject: {fileID: 0}
  3066. m_PrefabInternal: {fileID: 100100000}
  3067. m_GameObject: {fileID: 1082353721071874}
  3068. m_Enabled: 1
  3069. m_EditorHideFlags: 0
  3070. m_Script: {fileID: 11500000, guid: d4c8fd758961a6749a83c747ea6a98b6, type: 3}
  3071. m_Name:
  3072. m_EditorClassIdentifier:
  3073. settings:
  3074. poseStatusFade: 1
  3075. trackPosition: 1
  3076. trackPositionScale: 1
  3077. headHeight: 0.075
  3078. headDepth: 0.0805
  3079. interPupilDistance: 0.064
  3080. stereoConvergence: 0
  3081. horizonElevation: 0
  3082. eyeFovMargin: 0
  3083. eyeResolutionScaleFactor: 1
  3084. eyeDepth: 24
  3085. eyeAntiAliasing: 2
  3086. overlayResolutionScaleFactor: 1
  3087. overlayDepth: 16
  3088. overlayAntiAliasing: 1
  3089. vSyncCount: 1
  3090. chromaticAberationCorrection: 1
  3091. masterTextureLimit: 0
  3092. cpuPerfLevel: 3
  3093. gpuPerfLevel: 3
  3094. foveationGain: {x: 0, y: 0}
  3095. foveationArea: 0
  3096. frustumType: 1
  3097. displayType: 1
  3098. status:
  3099. initialized: 0
  3100. running: 0
  3101. pose: 0
  3102. poseModify: 0
  3103. head: {fileID: 4809379182671494}
  3104. monoCamera: {fileID: 20958118981660222}
  3105. leftCamera: {fileID: 20320088114743364}
  3106. rightCamera: {fileID: 20899961603007150}
  3107. leftOverlay: {fileID: 20913649207440992}
  3108. rightOverlay: {fileID: 20461493053110492}
  3109. monoOverlay: {fileID: 20454870205990702}
  3110. fadeOverlay: {fileID: 114053476190485178}
  3111. leftCameraOffsetPostion: {x: 0, y: 0, z: 0}
  3112. leftCameraOffsetAngles: {x: 0, y: 0, z: 0}
  3113. rightCameraOffsetPostion: {x: 0, y: 0, z: 0}
  3114. rightCameraOffsetAngles: {x: 0, y: 0, z: 0}
  3115. headPosition: {x: 0, y: 0, z: 0}
  3116. headOrientation: {x: 0, y: 0, z: 0, w: 1}
  3117. modifyPosition: {x: 0, y: 0, z: 0}
  3118. modifyOrientation: {x: 0, y: 0, z: 0, w: 1}
  3119. --- !u!114 &114300070390400506
  3120. MonoBehaviour:
  3121. m_ObjectHideFlags: 1
  3122. m_PrefabParentObject: {fileID: 0}
  3123. m_PrefabInternal: {fileID: 100100000}
  3124. m_GameObject: {fileID: 1300326281954026}
  3125. m_Enabled: 1
  3126. m_EditorHideFlags: 0
  3127. m_Script: {fileID: 11500000, guid: a8091c5f6fdddc743a4ef3237161a1ff, type: 3}
  3128. m_Name:
  3129. m_EditorClassIdentifier:
  3130. backKey: {fileID: 23576315961231554}
  3131. powerKey: {fileID: 23430685652239280}
  3132. tpKey: {fileID: 0}
  3133. triggerKey: {fileID: 23833625919228672}
  3134. volumeDown: {fileID: 0}
  3135. volumeUp: {fileID: 0}
  3136. tpPosition: {fileID: 4064886234197702}
  3137. releaseMaterial: {fileID: 2100000, guid: 1b4eb42734d00664983d289ea2d27fc3, type: 2}
  3138. pressMaterial: {fileID: 2100000, guid: 970552b06019b694494b80c14bc28d12, type: 2}
  3139. --- !u!114 &114411551736270582
  3140. MonoBehaviour:
  3141. m_ObjectHideFlags: 1
  3142. m_PrefabParentObject: {fileID: 0}
  3143. m_PrefabInternal: {fileID: 100100000}
  3144. m_GameObject: {fileID: 1397213865582930}
  3145. m_Enabled: 1
  3146. m_EditorHideFlags: 0
  3147. m_Script: {fileID: 11500000, guid: a8091c5f6fdddc743a4ef3237161a1ff, type: 3}
  3148. m_Name:
  3149. m_EditorClassIdentifier:
  3150. backKey: {fileID: 23153429131756018}
  3151. powerKey: {fileID: 23991992014464340}
  3152. tpKey: {fileID: 23992908614689102}
  3153. triggerKey: {fileID: 23389030766378156}
  3154. volumeDown: {fileID: 23183123319105950}
  3155. volumeUp: {fileID: 23489904839521972}
  3156. tpPosition: {fileID: 4876869257575508}
  3157. releaseMaterial: {fileID: 2100000, guid: f157973606c137f4fa4ce0f8a7aa8b86, type: 2}
  3158. pressMaterial: {fileID: 2100000, guid: 73a749fc17e907344870a3e96f1f5594, type: 2}
  3159. --- !u!114 &114608496240376138
  3160. MonoBehaviour:
  3161. m_ObjectHideFlags: 1
  3162. m_PrefabParentObject: {fileID: 0}
  3163. m_PrefabInternal: {fileID: 100100000}
  3164. m_GameObject: {fileID: 1668480619314178}
  3165. m_Enabled: 1
  3166. m_EditorHideFlags: 0
  3167. m_Script: {fileID: 11500000, guid: 015d74e528b71f64eb60988fe63f4780, type: 3}
  3168. m_Name:
  3169. m_EditorClassIdentifier:
  3170. deviceId: 0
  3171. K02Model: {fileID: 1300326281954026}
  3172. K07Model: {fileID: 1397213865582930}
  3173. line: {fileID: 120549355705370898}
  3174. --- !u!114 &114780193328442540
  3175. MonoBehaviour:
  3176. m_ObjectHideFlags: 1
  3177. m_PrefabParentObject: {fileID: 0}
  3178. m_PrefabInternal: {fileID: 100100000}
  3179. m_GameObject: {fileID: 1532928450161934}
  3180. m_Enabled: 1
  3181. m_EditorHideFlags: 0
  3182. m_Script: {fileID: 11500000, guid: e4c93b9a1e2aede42b65ebc56a31d417, type: 3}
  3183. m_Name:
  3184. m_EditorClassIdentifier:
  3185. _gazeLoading: {fileID: 95719277355437428}
  3186. _gesturePoint: {fileID: 1174541670427696}
  3187. _clickPoint: {fileID: 1618772780716692}
  3188. _item: {fileID: 1708315818472814}
  3189. --- !u!114 &114918812589586918
  3190. MonoBehaviour:
  3191. m_ObjectHideFlags: 1
  3192. m_PrefabParentObject: {fileID: 0}
  3193. m_PrefabInternal: {fileID: 100100000}
  3194. m_GameObject: {fileID: 1576927553798042}
  3195. m_Enabled: 1
  3196. m_EditorHideFlags: 0
  3197. m_Script: {fileID: 11500000, guid: b45e9fdf7c9fc4d4bb47d59c52b18a14, type: 3}
  3198. m_Name:
  3199. m_EditorClassIdentifier:
  3200. _light: {fileID: 1754261937116598}
  3201. --- !u!114 &114970540200081164
  3202. MonoBehaviour:
  3203. m_ObjectHideFlags: 1
  3204. m_PrefabParentObject: {fileID: 0}
  3205. m_PrefabInternal: {fileID: 100100000}
  3206. m_GameObject: {fileID: 1294521219064336}
  3207. m_Enabled: 1
  3208. m_EditorHideFlags: 0
  3209. m_Script: {fileID: 11500000, guid: be7c42887bd45884bb3b8fa0b6bec1fe, type: 3}
  3210. m_Name:
  3211. m_EditorClassIdentifier:
  3212. Head: {fileID: 1555137522558926}
  3213. BluetoothHandle: {fileID: 1668480619314178}
  3214. Camera: {fileID: 20320088114743364}
  3215. Focus: {fileID: 1532928450161934}
  3216. useBluetoothGaze: 1
  3217. --- !u!120 &120549355705370898
  3218. LineRenderer:
  3219. m_ObjectHideFlags: 1
  3220. m_PrefabParentObject: {fileID: 0}
  3221. m_PrefabInternal: {fileID: 100100000}
  3222. m_GameObject: {fileID: 1931012866338252}
  3223. m_Enabled: 1
  3224. m_CastShadows: 1
  3225. m_ReceiveShadows: 1
  3226. m_DynamicOccludee: 1
  3227. m_MotionVectors: 0
  3228. m_LightProbeUsage: 0
  3229. m_ReflectionProbeUsage: 0
  3230. m_Materials:
  3231. - {fileID: 0}
  3232. - {fileID: 2100000, guid: 29fefef0e98b8d5458fe687c80757a67, type: 2}
  3233. m_StaticBatchInfo:
  3234. firstSubMesh: 0
  3235. subMeshCount: 0
  3236. m_StaticBatchRoot: {fileID: 0}
  3237. m_ProbeAnchor: {fileID: 0}
  3238. m_LightProbeVolumeOverride: {fileID: 0}
  3239. m_ScaleInLightmap: 1
  3240. m_PreserveUVs: 0
  3241. m_IgnoreNormalsForChartDetection: 0
  3242. m_ImportantGI: 0
  3243. m_StitchLightmapSeams: 0
  3244. m_SelectedEditorRenderState: 3
  3245. m_MinimumChartSize: 4
  3246. m_AutoUVMaxDistance: 0.5
  3247. m_AutoUVMaxAngle: 89
  3248. m_LightmapParameters: {fileID: 0}
  3249. m_SortingLayerID: 0
  3250. m_SortingLayer: 0
  3251. m_SortingOrder: 0
  3252. m_Positions:
  3253. - {x: 0, y: -0.3, z: 0}
  3254. - {x: 0, y: -0.3, z: 10}
  3255. m_Parameters:
  3256. serializedVersion: 2
  3257. widthMultiplier: 0.003
  3258. widthCurve:
  3259. serializedVersion: 2
  3260. m_Curve:
  3261. - serializedVersion: 2
  3262. time: 0.015151978
  3263. value: 1
  3264. inSlope: 0
  3265. outSlope: 0
  3266. tangentMode: 0
  3267. m_PreInfinity: 2
  3268. m_PostInfinity: 2
  3269. m_RotationOrder: 0
  3270. colorGradient:
  3271. serializedVersion: 2
  3272. key0: {r: 1, g: 1, b: 1, a: 1}
  3273. key1: {r: 1, g: 1, b: 1, a: 1}
  3274. key2: {r: 0, g: 0, b: 0, a: 0}
  3275. key3: {r: 0, g: 0, b: 0, a: 0}
  3276. key4: {r: 0, g: 0, b: 0, a: 0}
  3277. key5: {r: 0, g: 0, b: 0, a: 0}
  3278. key6: {r: 0, g: 0, b: 0, a: 0}
  3279. key7: {r: 0, g: 0, b: 0, a: 0}
  3280. ctime0: 0
  3281. ctime1: 65535
  3282. ctime2: 0
  3283. ctime3: 0
  3284. ctime4: 0
  3285. ctime5: 0
  3286. ctime6: 0
  3287. ctime7: 0
  3288. atime0: 0
  3289. atime1: 65535
  3290. atime2: 0
  3291. atime3: 0
  3292. atime4: 0
  3293. atime5: 0
  3294. atime6: 0
  3295. atime7: 0
  3296. m_Mode: 0
  3297. m_NumColorKeys: 2
  3298. m_NumAlphaKeys: 2
  3299. numCornerVertices: 0
  3300. numCapVertices: 0
  3301. alignment: 0
  3302. textureMode: 0
  3303. generateLightingData: 0
  3304. m_UseWorldSpace: 1
  3305. m_Loop: 0
  3306. --- !u!212 &212021385287634724
  3307. SpriteRenderer:
  3308. m_ObjectHideFlags: 1
  3309. m_PrefabParentObject: {fileID: 0}
  3310. m_PrefabInternal: {fileID: 100100000}
  3311. m_GameObject: {fileID: 1680978486835952}
  3312. m_Enabled: 1
  3313. m_CastShadows: 0
  3314. m_ReceiveShadows: 0
  3315. m_DynamicOccludee: 1
  3316. m_MotionVectors: 1
  3317. m_LightProbeUsage: 1
  3318. m_ReflectionProbeUsage: 1
  3319. m_Materials:
  3320. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3321. m_StaticBatchInfo:
  3322. firstSubMesh: 0
  3323. subMeshCount: 0
  3324. m_StaticBatchRoot: {fileID: 0}
  3325. m_ProbeAnchor: {fileID: 0}
  3326. m_LightProbeVolumeOverride: {fileID: 0}
  3327. m_ScaleInLightmap: 1
  3328. m_PreserveUVs: 0
  3329. m_IgnoreNormalsForChartDetection: 0
  3330. m_ImportantGI: 0
  3331. m_StitchLightmapSeams: 0
  3332. m_SelectedEditorRenderState: 0
  3333. m_MinimumChartSize: 4
  3334. m_AutoUVMaxDistance: 0.5
  3335. m_AutoUVMaxAngle: 89
  3336. m_LightmapParameters: {fileID: 0}
  3337. m_SortingLayerID: 0
  3338. m_SortingLayer: 0
  3339. m_SortingOrder: 0
  3340. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3341. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3342. m_FlipX: 0
  3343. m_FlipY: 0
  3344. m_DrawMode: 0
  3345. m_Size: {x: 0.87, y: 0.87}
  3346. m_AdaptiveModeThreshold: 0.5
  3347. m_SpriteTileMode: 0
  3348. m_WasSpriteAssigned: 1
  3349. m_MaskInteraction: 0
  3350. --- !u!212 &212062884374788998
  3351. SpriteRenderer:
  3352. m_ObjectHideFlags: 1
  3353. m_PrefabParentObject: {fileID: 0}
  3354. m_PrefabInternal: {fileID: 100100000}
  3355. m_GameObject: {fileID: 1784551452574438}
  3356. m_Enabled: 1
  3357. m_CastShadows: 0
  3358. m_ReceiveShadows: 0
  3359. m_DynamicOccludee: 1
  3360. m_MotionVectors: 1
  3361. m_LightProbeUsage: 1
  3362. m_ReflectionProbeUsage: 1
  3363. m_Materials:
  3364. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3365. m_StaticBatchInfo:
  3366. firstSubMesh: 0
  3367. subMeshCount: 0
  3368. m_StaticBatchRoot: {fileID: 0}
  3369. m_ProbeAnchor: {fileID: 0}
  3370. m_LightProbeVolumeOverride: {fileID: 0}
  3371. m_ScaleInLightmap: 1
  3372. m_PreserveUVs: 0
  3373. m_IgnoreNormalsForChartDetection: 0
  3374. m_ImportantGI: 0
  3375. m_StitchLightmapSeams: 0
  3376. m_SelectedEditorRenderState: 0
  3377. m_MinimumChartSize: 4
  3378. m_AutoUVMaxDistance: 0.5
  3379. m_AutoUVMaxAngle: 89
  3380. m_LightmapParameters: {fileID: 0}
  3381. m_SortingLayerID: 0
  3382. m_SortingLayer: 0
  3383. m_SortingOrder: 0
  3384. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3385. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3386. m_FlipX: 0
  3387. m_FlipY: 0
  3388. m_DrawMode: 0
  3389. m_Size: {x: 0.87, y: 0.87}
  3390. m_AdaptiveModeThreshold: 0.5
  3391. m_SpriteTileMode: 0
  3392. m_WasSpriteAssigned: 1
  3393. m_MaskInteraction: 0
  3394. --- !u!212 &212119702698572300
  3395. SpriteRenderer:
  3396. m_ObjectHideFlags: 1
  3397. m_PrefabParentObject: {fileID: 0}
  3398. m_PrefabInternal: {fileID: 100100000}
  3399. m_GameObject: {fileID: 1100665268516136}
  3400. m_Enabled: 1
  3401. m_CastShadows: 0
  3402. m_ReceiveShadows: 0
  3403. m_DynamicOccludee: 1
  3404. m_MotionVectors: 1
  3405. m_LightProbeUsage: 1
  3406. m_ReflectionProbeUsage: 1
  3407. m_Materials:
  3408. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3409. m_StaticBatchInfo:
  3410. firstSubMesh: 0
  3411. subMeshCount: 0
  3412. m_StaticBatchRoot: {fileID: 0}
  3413. m_ProbeAnchor: {fileID: 0}
  3414. m_LightProbeVolumeOverride: {fileID: 0}
  3415. m_ScaleInLightmap: 1
  3416. m_PreserveUVs: 0
  3417. m_IgnoreNormalsForChartDetection: 0
  3418. m_ImportantGI: 0
  3419. m_StitchLightmapSeams: 0
  3420. m_SelectedEditorRenderState: 0
  3421. m_MinimumChartSize: 4
  3422. m_AutoUVMaxDistance: 0.5
  3423. m_AutoUVMaxAngle: 89
  3424. m_LightmapParameters: {fileID: 0}
  3425. m_SortingLayerID: 0
  3426. m_SortingLayer: 0
  3427. m_SortingOrder: 0
  3428. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3429. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3430. m_FlipX: 0
  3431. m_FlipY: 0
  3432. m_DrawMode: 0
  3433. m_Size: {x: 0.87, y: 0.87}
  3434. m_AdaptiveModeThreshold: 0.5
  3435. m_SpriteTileMode: 0
  3436. m_WasSpriteAssigned: 1
  3437. m_MaskInteraction: 0
  3438. --- !u!212 &212166773954083466
  3439. SpriteRenderer:
  3440. m_ObjectHideFlags: 1
  3441. m_PrefabParentObject: {fileID: 0}
  3442. m_PrefabInternal: {fileID: 100100000}
  3443. m_GameObject: {fileID: 1689971289014064}
  3444. m_Enabled: 1
  3445. m_CastShadows: 0
  3446. m_ReceiveShadows: 0
  3447. m_DynamicOccludee: 1
  3448. m_MotionVectors: 1
  3449. m_LightProbeUsage: 1
  3450. m_ReflectionProbeUsage: 1
  3451. m_Materials:
  3452. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3453. m_StaticBatchInfo:
  3454. firstSubMesh: 0
  3455. subMeshCount: 0
  3456. m_StaticBatchRoot: {fileID: 0}
  3457. m_ProbeAnchor: {fileID: 0}
  3458. m_LightProbeVolumeOverride: {fileID: 0}
  3459. m_ScaleInLightmap: 1
  3460. m_PreserveUVs: 0
  3461. m_IgnoreNormalsForChartDetection: 0
  3462. m_ImportantGI: 0
  3463. m_StitchLightmapSeams: 0
  3464. m_SelectedEditorRenderState: 0
  3465. m_MinimumChartSize: 4
  3466. m_AutoUVMaxDistance: 0.5
  3467. m_AutoUVMaxAngle: 89
  3468. m_LightmapParameters: {fileID: 0}
  3469. m_SortingLayerID: 0
  3470. m_SortingLayer: 0
  3471. m_SortingOrder: 0
  3472. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3473. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3474. m_FlipX: 0
  3475. m_FlipY: 0
  3476. m_DrawMode: 0
  3477. m_Size: {x: 0.87, y: 0.87}
  3478. m_AdaptiveModeThreshold: 0.5
  3479. m_SpriteTileMode: 0
  3480. m_WasSpriteAssigned: 1
  3481. m_MaskInteraction: 0
  3482. --- !u!212 &212229318468736566
  3483. SpriteRenderer:
  3484. m_ObjectHideFlags: 1
  3485. m_PrefabParentObject: {fileID: 0}
  3486. m_PrefabInternal: {fileID: 100100000}
  3487. m_GameObject: {fileID: 1302699185281578}
  3488. m_Enabled: 1
  3489. m_CastShadows: 0
  3490. m_ReceiveShadows: 0
  3491. m_DynamicOccludee: 1
  3492. m_MotionVectors: 1
  3493. m_LightProbeUsage: 1
  3494. m_ReflectionProbeUsage: 1
  3495. m_Materials:
  3496. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3497. m_StaticBatchInfo:
  3498. firstSubMesh: 0
  3499. subMeshCount: 0
  3500. m_StaticBatchRoot: {fileID: 0}
  3501. m_ProbeAnchor: {fileID: 0}
  3502. m_LightProbeVolumeOverride: {fileID: 0}
  3503. m_ScaleInLightmap: 1
  3504. m_PreserveUVs: 0
  3505. m_IgnoreNormalsForChartDetection: 0
  3506. m_ImportantGI: 0
  3507. m_StitchLightmapSeams: 0
  3508. m_SelectedEditorRenderState: 0
  3509. m_MinimumChartSize: 4
  3510. m_AutoUVMaxDistance: 0.5
  3511. m_AutoUVMaxAngle: 89
  3512. m_LightmapParameters: {fileID: 0}
  3513. m_SortingLayerID: 0
  3514. m_SortingLayer: 0
  3515. m_SortingOrder: 0
  3516. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3517. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3518. m_FlipX: 0
  3519. m_FlipY: 0
  3520. m_DrawMode: 0
  3521. m_Size: {x: 0.87, y: 0.87}
  3522. m_AdaptiveModeThreshold: 0.5
  3523. m_SpriteTileMode: 0
  3524. m_WasSpriteAssigned: 1
  3525. m_MaskInteraction: 0
  3526. --- !u!212 &212244956586271678
  3527. SpriteRenderer:
  3528. m_ObjectHideFlags: 1
  3529. m_PrefabParentObject: {fileID: 0}
  3530. m_PrefabInternal: {fileID: 100100000}
  3531. m_GameObject: {fileID: 1238134577842654}
  3532. m_Enabled: 1
  3533. m_CastShadows: 0
  3534. m_ReceiveShadows: 0
  3535. m_DynamicOccludee: 1
  3536. m_MotionVectors: 1
  3537. m_LightProbeUsage: 1
  3538. m_ReflectionProbeUsage: 1
  3539. m_Materials:
  3540. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3541. m_StaticBatchInfo:
  3542. firstSubMesh: 0
  3543. subMeshCount: 0
  3544. m_StaticBatchRoot: {fileID: 0}
  3545. m_ProbeAnchor: {fileID: 0}
  3546. m_LightProbeVolumeOverride: {fileID: 0}
  3547. m_ScaleInLightmap: 1
  3548. m_PreserveUVs: 0
  3549. m_IgnoreNormalsForChartDetection: 0
  3550. m_ImportantGI: 0
  3551. m_StitchLightmapSeams: 0
  3552. m_SelectedEditorRenderState: 0
  3553. m_MinimumChartSize: 4
  3554. m_AutoUVMaxDistance: 0.5
  3555. m_AutoUVMaxAngle: 89
  3556. m_LightmapParameters: {fileID: 0}
  3557. m_SortingLayerID: 0
  3558. m_SortingLayer: 0
  3559. m_SortingOrder: 0
  3560. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3561. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3562. m_FlipX: 0
  3563. m_FlipY: 0
  3564. m_DrawMode: 0
  3565. m_Size: {x: 0.87, y: 0.87}
  3566. m_AdaptiveModeThreshold: 0.5
  3567. m_SpriteTileMode: 0
  3568. m_WasSpriteAssigned: 1
  3569. m_MaskInteraction: 0
  3570. --- !u!212 &212317236645125964
  3571. SpriteRenderer:
  3572. m_ObjectHideFlags: 1
  3573. m_PrefabParentObject: {fileID: 0}
  3574. m_PrefabInternal: {fileID: 100100000}
  3575. m_GameObject: {fileID: 1096901707509138}
  3576. m_Enabled: 1
  3577. m_CastShadows: 0
  3578. m_ReceiveShadows: 0
  3579. m_DynamicOccludee: 1
  3580. m_MotionVectors: 1
  3581. m_LightProbeUsage: 1
  3582. m_ReflectionProbeUsage: 1
  3583. m_Materials:
  3584. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3585. m_StaticBatchInfo:
  3586. firstSubMesh: 0
  3587. subMeshCount: 0
  3588. m_StaticBatchRoot: {fileID: 0}
  3589. m_ProbeAnchor: {fileID: 0}
  3590. m_LightProbeVolumeOverride: {fileID: 0}
  3591. m_ScaleInLightmap: 1
  3592. m_PreserveUVs: 0
  3593. m_IgnoreNormalsForChartDetection: 0
  3594. m_ImportantGI: 0
  3595. m_StitchLightmapSeams: 0
  3596. m_SelectedEditorRenderState: 0
  3597. m_MinimumChartSize: 4
  3598. m_AutoUVMaxDistance: 0.5
  3599. m_AutoUVMaxAngle: 89
  3600. m_LightmapParameters: {fileID: 0}
  3601. m_SortingLayerID: 0
  3602. m_SortingLayer: 0
  3603. m_SortingOrder: 0
  3604. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3605. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3606. m_FlipX: 0
  3607. m_FlipY: 0
  3608. m_DrawMode: 0
  3609. m_Size: {x: 0.87, y: 0.87}
  3610. m_AdaptiveModeThreshold: 0.5
  3611. m_SpriteTileMode: 0
  3612. m_WasSpriteAssigned: 1
  3613. m_MaskInteraction: 0
  3614. --- !u!212 &212323680589164910
  3615. SpriteRenderer:
  3616. m_ObjectHideFlags: 1
  3617. m_PrefabParentObject: {fileID: 0}
  3618. m_PrefabInternal: {fileID: 100100000}
  3619. m_GameObject: {fileID: 1921623912379650}
  3620. m_Enabled: 1
  3621. m_CastShadows: 0
  3622. m_ReceiveShadows: 0
  3623. m_DynamicOccludee: 1
  3624. m_MotionVectors: 1
  3625. m_LightProbeUsage: 1
  3626. m_ReflectionProbeUsage: 1
  3627. m_Materials:
  3628. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3629. m_StaticBatchInfo:
  3630. firstSubMesh: 0
  3631. subMeshCount: 0
  3632. m_StaticBatchRoot: {fileID: 0}
  3633. m_ProbeAnchor: {fileID: 0}
  3634. m_LightProbeVolumeOverride: {fileID: 0}
  3635. m_ScaleInLightmap: 1
  3636. m_PreserveUVs: 0
  3637. m_IgnoreNormalsForChartDetection: 0
  3638. m_ImportantGI: 0
  3639. m_StitchLightmapSeams: 0
  3640. m_SelectedEditorRenderState: 0
  3641. m_MinimumChartSize: 4
  3642. m_AutoUVMaxDistance: 0.5
  3643. m_AutoUVMaxAngle: 89
  3644. m_LightmapParameters: {fileID: 0}
  3645. m_SortingLayerID: 0
  3646. m_SortingLayer: 0
  3647. m_SortingOrder: 0
  3648. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3649. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3650. m_FlipX: 0
  3651. m_FlipY: 0
  3652. m_DrawMode: 0
  3653. m_Size: {x: 0.87, y: 0.87}
  3654. m_AdaptiveModeThreshold: 0.5
  3655. m_SpriteTileMode: 0
  3656. m_WasSpriteAssigned: 1
  3657. m_MaskInteraction: 0
  3658. --- !u!212 &212328168738625734
  3659. SpriteRenderer:
  3660. m_ObjectHideFlags: 1
  3661. m_PrefabParentObject: {fileID: 0}
  3662. m_PrefabInternal: {fileID: 100100000}
  3663. m_GameObject: {fileID: 1321107910127838}
  3664. m_Enabled: 1
  3665. m_CastShadows: 0
  3666. m_ReceiveShadows: 0
  3667. m_DynamicOccludee: 1
  3668. m_MotionVectors: 1
  3669. m_LightProbeUsage: 1
  3670. m_ReflectionProbeUsage: 1
  3671. m_Materials:
  3672. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3673. m_StaticBatchInfo:
  3674. firstSubMesh: 0
  3675. subMeshCount: 0
  3676. m_StaticBatchRoot: {fileID: 0}
  3677. m_ProbeAnchor: {fileID: 0}
  3678. m_LightProbeVolumeOverride: {fileID: 0}
  3679. m_ScaleInLightmap: 1
  3680. m_PreserveUVs: 0
  3681. m_IgnoreNormalsForChartDetection: 0
  3682. m_ImportantGI: 0
  3683. m_StitchLightmapSeams: 0
  3684. m_SelectedEditorRenderState: 0
  3685. m_MinimumChartSize: 4
  3686. m_AutoUVMaxDistance: 0.5
  3687. m_AutoUVMaxAngle: 89
  3688. m_LightmapParameters: {fileID: 0}
  3689. m_SortingLayerID: 0
  3690. m_SortingLayer: 0
  3691. m_SortingOrder: 0
  3692. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3693. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3694. m_FlipX: 0
  3695. m_FlipY: 0
  3696. m_DrawMode: 0
  3697. m_Size: {x: 0.87, y: 0.87}
  3698. m_AdaptiveModeThreshold: 0.5
  3699. m_SpriteTileMode: 0
  3700. m_WasSpriteAssigned: 1
  3701. m_MaskInteraction: 0
  3702. --- !u!212 &212332543266847098
  3703. SpriteRenderer:
  3704. m_ObjectHideFlags: 1
  3705. m_PrefabParentObject: {fileID: 0}
  3706. m_PrefabInternal: {fileID: 100100000}
  3707. m_GameObject: {fileID: 1496381286723346}
  3708. m_Enabled: 1
  3709. m_CastShadows: 0
  3710. m_ReceiveShadows: 0
  3711. m_DynamicOccludee: 1
  3712. m_MotionVectors: 1
  3713. m_LightProbeUsage: 1
  3714. m_ReflectionProbeUsage: 1
  3715. m_Materials:
  3716. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3717. m_StaticBatchInfo:
  3718. firstSubMesh: 0
  3719. subMeshCount: 0
  3720. m_StaticBatchRoot: {fileID: 0}
  3721. m_ProbeAnchor: {fileID: 0}
  3722. m_LightProbeVolumeOverride: {fileID: 0}
  3723. m_ScaleInLightmap: 1
  3724. m_PreserveUVs: 0
  3725. m_IgnoreNormalsForChartDetection: 0
  3726. m_ImportantGI: 0
  3727. m_StitchLightmapSeams: 0
  3728. m_SelectedEditorRenderState: 0
  3729. m_MinimumChartSize: 4
  3730. m_AutoUVMaxDistance: 0.5
  3731. m_AutoUVMaxAngle: 89
  3732. m_LightmapParameters: {fileID: 0}
  3733. m_SortingLayerID: 0
  3734. m_SortingLayer: 0
  3735. m_SortingOrder: 0
  3736. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3737. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3738. m_FlipX: 0
  3739. m_FlipY: 0
  3740. m_DrawMode: 0
  3741. m_Size: {x: 0.87, y: 0.87}
  3742. m_AdaptiveModeThreshold: 0.5
  3743. m_SpriteTileMode: 0
  3744. m_WasSpriteAssigned: 1
  3745. m_MaskInteraction: 0
  3746. --- !u!212 &212393918723628180
  3747. SpriteRenderer:
  3748. m_ObjectHideFlags: 1
  3749. m_PrefabParentObject: {fileID: 0}
  3750. m_PrefabInternal: {fileID: 100100000}
  3751. m_GameObject: {fileID: 1328790797853220}
  3752. m_Enabled: 1
  3753. m_CastShadows: 0
  3754. m_ReceiveShadows: 0
  3755. m_DynamicOccludee: 1
  3756. m_MotionVectors: 1
  3757. m_LightProbeUsage: 1
  3758. m_ReflectionProbeUsage: 1
  3759. m_Materials:
  3760. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3761. m_StaticBatchInfo:
  3762. firstSubMesh: 0
  3763. subMeshCount: 0
  3764. m_StaticBatchRoot: {fileID: 0}
  3765. m_ProbeAnchor: {fileID: 0}
  3766. m_LightProbeVolumeOverride: {fileID: 0}
  3767. m_ScaleInLightmap: 1
  3768. m_PreserveUVs: 0
  3769. m_IgnoreNormalsForChartDetection: 0
  3770. m_ImportantGI: 0
  3771. m_StitchLightmapSeams: 0
  3772. m_SelectedEditorRenderState: 0
  3773. m_MinimumChartSize: 4
  3774. m_AutoUVMaxDistance: 0.5
  3775. m_AutoUVMaxAngle: 89
  3776. m_LightmapParameters: {fileID: 0}
  3777. m_SortingLayerID: 0
  3778. m_SortingLayer: 0
  3779. m_SortingOrder: 0
  3780. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3781. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3782. m_FlipX: 0
  3783. m_FlipY: 0
  3784. m_DrawMode: 0
  3785. m_Size: {x: 0.87, y: 0.87}
  3786. m_AdaptiveModeThreshold: 0.5
  3787. m_SpriteTileMode: 0
  3788. m_WasSpriteAssigned: 1
  3789. m_MaskInteraction: 0
  3790. --- !u!212 &212412964775961736
  3791. SpriteRenderer:
  3792. m_ObjectHideFlags: 1
  3793. m_PrefabParentObject: {fileID: 0}
  3794. m_PrefabInternal: {fileID: 100100000}
  3795. m_GameObject: {fileID: 1379326223157830}
  3796. m_Enabled: 1
  3797. m_CastShadows: 0
  3798. m_ReceiveShadows: 0
  3799. m_DynamicOccludee: 1
  3800. m_MotionVectors: 1
  3801. m_LightProbeUsage: 1
  3802. m_ReflectionProbeUsage: 1
  3803. m_Materials:
  3804. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3805. m_StaticBatchInfo:
  3806. firstSubMesh: 0
  3807. subMeshCount: 0
  3808. m_StaticBatchRoot: {fileID: 0}
  3809. m_ProbeAnchor: {fileID: 0}
  3810. m_LightProbeVolumeOverride: {fileID: 0}
  3811. m_ScaleInLightmap: 1
  3812. m_PreserveUVs: 0
  3813. m_IgnoreNormalsForChartDetection: 0
  3814. m_ImportantGI: 0
  3815. m_StitchLightmapSeams: 0
  3816. m_SelectedEditorRenderState: 0
  3817. m_MinimumChartSize: 4
  3818. m_AutoUVMaxDistance: 0.5
  3819. m_AutoUVMaxAngle: 89
  3820. m_LightmapParameters: {fileID: 0}
  3821. m_SortingLayerID: 0
  3822. m_SortingLayer: 0
  3823. m_SortingOrder: 0
  3824. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3825. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3826. m_FlipX: 0
  3827. m_FlipY: 0
  3828. m_DrawMode: 0
  3829. m_Size: {x: 0.87, y: 0.87}
  3830. m_AdaptiveModeThreshold: 0.5
  3831. m_SpriteTileMode: 0
  3832. m_WasSpriteAssigned: 1
  3833. m_MaskInteraction: 0
  3834. --- !u!212 &212429853278362596
  3835. SpriteRenderer:
  3836. m_ObjectHideFlags: 1
  3837. m_PrefabParentObject: {fileID: 0}
  3838. m_PrefabInternal: {fileID: 100100000}
  3839. m_GameObject: {fileID: 1324525766445254}
  3840. m_Enabled: 1
  3841. m_CastShadows: 0
  3842. m_ReceiveShadows: 0
  3843. m_DynamicOccludee: 1
  3844. m_MotionVectors: 1
  3845. m_LightProbeUsage: 1
  3846. m_ReflectionProbeUsage: 1
  3847. m_Materials:
  3848. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3849. m_StaticBatchInfo:
  3850. firstSubMesh: 0
  3851. subMeshCount: 0
  3852. m_StaticBatchRoot: {fileID: 0}
  3853. m_ProbeAnchor: {fileID: 0}
  3854. m_LightProbeVolumeOverride: {fileID: 0}
  3855. m_ScaleInLightmap: 1
  3856. m_PreserveUVs: 0
  3857. m_IgnoreNormalsForChartDetection: 0
  3858. m_ImportantGI: 0
  3859. m_StitchLightmapSeams: 0
  3860. m_SelectedEditorRenderState: 0
  3861. m_MinimumChartSize: 4
  3862. m_AutoUVMaxDistance: 0.5
  3863. m_AutoUVMaxAngle: 89
  3864. m_LightmapParameters: {fileID: 0}
  3865. m_SortingLayerID: 0
  3866. m_SortingLayer: 0
  3867. m_SortingOrder: 0
  3868. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3869. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3870. m_FlipX: 0
  3871. m_FlipY: 0
  3872. m_DrawMode: 0
  3873. m_Size: {x: 0.87, y: 0.87}
  3874. m_AdaptiveModeThreshold: 0.5
  3875. m_SpriteTileMode: 0
  3876. m_WasSpriteAssigned: 1
  3877. m_MaskInteraction: 0
  3878. --- !u!212 &212471072377590064
  3879. SpriteRenderer:
  3880. m_ObjectHideFlags: 1
  3881. m_PrefabParentObject: {fileID: 0}
  3882. m_PrefabInternal: {fileID: 100100000}
  3883. m_GameObject: {fileID: 1501734189842776}
  3884. m_Enabled: 1
  3885. m_CastShadows: 0
  3886. m_ReceiveShadows: 0
  3887. m_DynamicOccludee: 1
  3888. m_MotionVectors: 1
  3889. m_LightProbeUsage: 1
  3890. m_ReflectionProbeUsage: 1
  3891. m_Materials:
  3892. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3893. m_StaticBatchInfo:
  3894. firstSubMesh: 0
  3895. subMeshCount: 0
  3896. m_StaticBatchRoot: {fileID: 0}
  3897. m_ProbeAnchor: {fileID: 0}
  3898. m_LightProbeVolumeOverride: {fileID: 0}
  3899. m_ScaleInLightmap: 1
  3900. m_PreserveUVs: 0
  3901. m_IgnoreNormalsForChartDetection: 0
  3902. m_ImportantGI: 0
  3903. m_StitchLightmapSeams: 0
  3904. m_SelectedEditorRenderState: 0
  3905. m_MinimumChartSize: 4
  3906. m_AutoUVMaxDistance: 0.5
  3907. m_AutoUVMaxAngle: 89
  3908. m_LightmapParameters: {fileID: 0}
  3909. m_SortingLayerID: 0
  3910. m_SortingLayer: 0
  3911. m_SortingOrder: 0
  3912. m_Sprite: {fileID: 0}
  3913. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3914. m_FlipX: 0
  3915. m_FlipY: 0
  3916. m_DrawMode: 0
  3917. m_Size: {x: 0.87, y: 0.87}
  3918. m_AdaptiveModeThreshold: 0.5
  3919. m_SpriteTileMode: 0
  3920. m_WasSpriteAssigned: 0
  3921. m_MaskInteraction: 0
  3922. --- !u!212 &212491090591271266
  3923. SpriteRenderer:
  3924. m_ObjectHideFlags: 1
  3925. m_PrefabParentObject: {fileID: 0}
  3926. m_PrefabInternal: {fileID: 100100000}
  3927. m_GameObject: {fileID: 1467161394575342}
  3928. m_Enabled: 1
  3929. m_CastShadows: 0
  3930. m_ReceiveShadows: 0
  3931. m_DynamicOccludee: 1
  3932. m_MotionVectors: 1
  3933. m_LightProbeUsage: 1
  3934. m_ReflectionProbeUsage: 1
  3935. m_Materials:
  3936. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3937. m_StaticBatchInfo:
  3938. firstSubMesh: 0
  3939. subMeshCount: 0
  3940. m_StaticBatchRoot: {fileID: 0}
  3941. m_ProbeAnchor: {fileID: 0}
  3942. m_LightProbeVolumeOverride: {fileID: 0}
  3943. m_ScaleInLightmap: 1
  3944. m_PreserveUVs: 0
  3945. m_IgnoreNormalsForChartDetection: 0
  3946. m_ImportantGI: 0
  3947. m_StitchLightmapSeams: 0
  3948. m_SelectedEditorRenderState: 0
  3949. m_MinimumChartSize: 4
  3950. m_AutoUVMaxDistance: 0.5
  3951. m_AutoUVMaxAngle: 89
  3952. m_LightmapParameters: {fileID: 0}
  3953. m_SortingLayerID: 0
  3954. m_SortingLayer: 0
  3955. m_SortingOrder: 0
  3956. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  3957. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3958. m_FlipX: 0
  3959. m_FlipY: 0
  3960. m_DrawMode: 0
  3961. m_Size: {x: 0.87, y: 0.87}
  3962. m_AdaptiveModeThreshold: 0.5
  3963. m_SpriteTileMode: 0
  3964. m_WasSpriteAssigned: 1
  3965. m_MaskInteraction: 0
  3966. --- !u!212 &212546426076160250
  3967. SpriteRenderer:
  3968. m_ObjectHideFlags: 1
  3969. m_PrefabParentObject: {fileID: 0}
  3970. m_PrefabInternal: {fileID: 100100000}
  3971. m_GameObject: {fileID: 1354915284334524}
  3972. m_Enabled: 1
  3973. m_CastShadows: 0
  3974. m_ReceiveShadows: 0
  3975. m_DynamicOccludee: 1
  3976. m_MotionVectors: 1
  3977. m_LightProbeUsage: 1
  3978. m_ReflectionProbeUsage: 1
  3979. m_Materials:
  3980. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  3981. m_StaticBatchInfo:
  3982. firstSubMesh: 0
  3983. subMeshCount: 0
  3984. m_StaticBatchRoot: {fileID: 0}
  3985. m_ProbeAnchor: {fileID: 0}
  3986. m_LightProbeVolumeOverride: {fileID: 0}
  3987. m_ScaleInLightmap: 1
  3988. m_PreserveUVs: 0
  3989. m_IgnoreNormalsForChartDetection: 0
  3990. m_ImportantGI: 0
  3991. m_StitchLightmapSeams: 0
  3992. m_SelectedEditorRenderState: 0
  3993. m_MinimumChartSize: 4
  3994. m_AutoUVMaxDistance: 0.5
  3995. m_AutoUVMaxAngle: 89
  3996. m_LightmapParameters: {fileID: 0}
  3997. m_SortingLayerID: 0
  3998. m_SortingLayer: 0
  3999. m_SortingOrder: 0
  4000. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4001. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4002. m_FlipX: 0
  4003. m_FlipY: 0
  4004. m_DrawMode: 0
  4005. m_Size: {x: 0.87, y: 0.87}
  4006. m_AdaptiveModeThreshold: 0.5
  4007. m_SpriteTileMode: 0
  4008. m_WasSpriteAssigned: 1
  4009. m_MaskInteraction: 0
  4010. --- !u!212 &212575539292227668
  4011. SpriteRenderer:
  4012. m_ObjectHideFlags: 1
  4013. m_PrefabParentObject: {fileID: 0}
  4014. m_PrefabInternal: {fileID: 100100000}
  4015. m_GameObject: {fileID: 1821209654602778}
  4016. m_Enabled: 1
  4017. m_CastShadows: 0
  4018. m_ReceiveShadows: 0
  4019. m_DynamicOccludee: 1
  4020. m_MotionVectors: 1
  4021. m_LightProbeUsage: 1
  4022. m_ReflectionProbeUsage: 1
  4023. m_Materials:
  4024. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4025. m_StaticBatchInfo:
  4026. firstSubMesh: 0
  4027. subMeshCount: 0
  4028. m_StaticBatchRoot: {fileID: 0}
  4029. m_ProbeAnchor: {fileID: 0}
  4030. m_LightProbeVolumeOverride: {fileID: 0}
  4031. m_ScaleInLightmap: 1
  4032. m_PreserveUVs: 0
  4033. m_IgnoreNormalsForChartDetection: 0
  4034. m_ImportantGI: 0
  4035. m_StitchLightmapSeams: 0
  4036. m_SelectedEditorRenderState: 0
  4037. m_MinimumChartSize: 4
  4038. m_AutoUVMaxDistance: 0.5
  4039. m_AutoUVMaxAngle: 89
  4040. m_LightmapParameters: {fileID: 0}
  4041. m_SortingLayerID: 0
  4042. m_SortingLayer: 0
  4043. m_SortingOrder: 0
  4044. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4045. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4046. m_FlipX: 0
  4047. m_FlipY: 0
  4048. m_DrawMode: 0
  4049. m_Size: {x: 0.87, y: 0.87}
  4050. m_AdaptiveModeThreshold: 0.5
  4051. m_SpriteTileMode: 0
  4052. m_WasSpriteAssigned: 1
  4053. m_MaskInteraction: 0
  4054. --- !u!212 &212580965120450408
  4055. SpriteRenderer:
  4056. m_ObjectHideFlags: 1
  4057. m_PrefabParentObject: {fileID: 0}
  4058. m_PrefabInternal: {fileID: 100100000}
  4059. m_GameObject: {fileID: 1698489500805430}
  4060. m_Enabled: 1
  4061. m_CastShadows: 0
  4062. m_ReceiveShadows: 0
  4063. m_DynamicOccludee: 1
  4064. m_MotionVectors: 1
  4065. m_LightProbeUsage: 1
  4066. m_ReflectionProbeUsage: 1
  4067. m_Materials:
  4068. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4069. m_StaticBatchInfo:
  4070. firstSubMesh: 0
  4071. subMeshCount: 0
  4072. m_StaticBatchRoot: {fileID: 0}
  4073. m_ProbeAnchor: {fileID: 0}
  4074. m_LightProbeVolumeOverride: {fileID: 0}
  4075. m_ScaleInLightmap: 1
  4076. m_PreserveUVs: 0
  4077. m_IgnoreNormalsForChartDetection: 0
  4078. m_ImportantGI: 0
  4079. m_StitchLightmapSeams: 0
  4080. m_SelectedEditorRenderState: 0
  4081. m_MinimumChartSize: 4
  4082. m_AutoUVMaxDistance: 0.5
  4083. m_AutoUVMaxAngle: 89
  4084. m_LightmapParameters: {fileID: 0}
  4085. m_SortingLayerID: 0
  4086. m_SortingLayer: 0
  4087. m_SortingOrder: 0
  4088. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4089. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4090. m_FlipX: 0
  4091. m_FlipY: 0
  4092. m_DrawMode: 0
  4093. m_Size: {x: 0.87, y: 0.87}
  4094. m_AdaptiveModeThreshold: 0.5
  4095. m_SpriteTileMode: 0
  4096. m_WasSpriteAssigned: 1
  4097. m_MaskInteraction: 0
  4098. --- !u!212 &212692484945669948
  4099. SpriteRenderer:
  4100. m_ObjectHideFlags: 1
  4101. m_PrefabParentObject: {fileID: 0}
  4102. m_PrefabInternal: {fileID: 100100000}
  4103. m_GameObject: {fileID: 1350586147218432}
  4104. m_Enabled: 1
  4105. m_CastShadows: 0
  4106. m_ReceiveShadows: 0
  4107. m_DynamicOccludee: 1
  4108. m_MotionVectors: 1
  4109. m_LightProbeUsage: 1
  4110. m_ReflectionProbeUsage: 1
  4111. m_Materials:
  4112. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4113. m_StaticBatchInfo:
  4114. firstSubMesh: 0
  4115. subMeshCount: 0
  4116. m_StaticBatchRoot: {fileID: 0}
  4117. m_ProbeAnchor: {fileID: 0}
  4118. m_LightProbeVolumeOverride: {fileID: 0}
  4119. m_ScaleInLightmap: 1
  4120. m_PreserveUVs: 0
  4121. m_IgnoreNormalsForChartDetection: 0
  4122. m_ImportantGI: 0
  4123. m_StitchLightmapSeams: 0
  4124. m_SelectedEditorRenderState: 0
  4125. m_MinimumChartSize: 4
  4126. m_AutoUVMaxDistance: 0.5
  4127. m_AutoUVMaxAngle: 89
  4128. m_LightmapParameters: {fileID: 0}
  4129. m_SortingLayerID: 0
  4130. m_SortingLayer: 0
  4131. m_SortingOrder: 0
  4132. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4133. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4134. m_FlipX: 0
  4135. m_FlipY: 0
  4136. m_DrawMode: 0
  4137. m_Size: {x: 0.87, y: 0.87}
  4138. m_AdaptiveModeThreshold: 0.5
  4139. m_SpriteTileMode: 0
  4140. m_WasSpriteAssigned: 1
  4141. m_MaskInteraction: 0
  4142. --- !u!212 &212715513589843310
  4143. SpriteRenderer:
  4144. m_ObjectHideFlags: 1
  4145. m_PrefabParentObject: {fileID: 0}
  4146. m_PrefabInternal: {fileID: 100100000}
  4147. m_GameObject: {fileID: 1527641087798164}
  4148. m_Enabled: 1
  4149. m_CastShadows: 0
  4150. m_ReceiveShadows: 0
  4151. m_DynamicOccludee: 1
  4152. m_MotionVectors: 1
  4153. m_LightProbeUsage: 1
  4154. m_ReflectionProbeUsage: 1
  4155. m_Materials:
  4156. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4157. m_StaticBatchInfo:
  4158. firstSubMesh: 0
  4159. subMeshCount: 0
  4160. m_StaticBatchRoot: {fileID: 0}
  4161. m_ProbeAnchor: {fileID: 0}
  4162. m_LightProbeVolumeOverride: {fileID: 0}
  4163. m_ScaleInLightmap: 1
  4164. m_PreserveUVs: 0
  4165. m_IgnoreNormalsForChartDetection: 0
  4166. m_ImportantGI: 0
  4167. m_StitchLightmapSeams: 0
  4168. m_SelectedEditorRenderState: 0
  4169. m_MinimumChartSize: 4
  4170. m_AutoUVMaxDistance: 0.5
  4171. m_AutoUVMaxAngle: 89
  4172. m_LightmapParameters: {fileID: 0}
  4173. m_SortingLayerID: 0
  4174. m_SortingLayer: 0
  4175. m_SortingOrder: 0
  4176. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4177. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4178. m_FlipX: 0
  4179. m_FlipY: 0
  4180. m_DrawMode: 0
  4181. m_Size: {x: 0.87, y: 0.87}
  4182. m_AdaptiveModeThreshold: 0.5
  4183. m_SpriteTileMode: 0
  4184. m_WasSpriteAssigned: 1
  4185. m_MaskInteraction: 0
  4186. --- !u!212 &212781700749731272
  4187. SpriteRenderer:
  4188. m_ObjectHideFlags: 1
  4189. m_PrefabParentObject: {fileID: 0}
  4190. m_PrefabInternal: {fileID: 100100000}
  4191. m_GameObject: {fileID: 1374156469221360}
  4192. m_Enabled: 1
  4193. m_CastShadows: 0
  4194. m_ReceiveShadows: 0
  4195. m_DynamicOccludee: 1
  4196. m_MotionVectors: 1
  4197. m_LightProbeUsage: 1
  4198. m_ReflectionProbeUsage: 1
  4199. m_Materials:
  4200. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4201. m_StaticBatchInfo:
  4202. firstSubMesh: 0
  4203. subMeshCount: 0
  4204. m_StaticBatchRoot: {fileID: 0}
  4205. m_ProbeAnchor: {fileID: 0}
  4206. m_LightProbeVolumeOverride: {fileID: 0}
  4207. m_ScaleInLightmap: 1
  4208. m_PreserveUVs: 0
  4209. m_IgnoreNormalsForChartDetection: 0
  4210. m_ImportantGI: 0
  4211. m_StitchLightmapSeams: 0
  4212. m_SelectedEditorRenderState: 0
  4213. m_MinimumChartSize: 4
  4214. m_AutoUVMaxDistance: 0.5
  4215. m_AutoUVMaxAngle: 89
  4216. m_LightmapParameters: {fileID: 0}
  4217. m_SortingLayerID: 0
  4218. m_SortingLayer: 0
  4219. m_SortingOrder: 0
  4220. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4221. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4222. m_FlipX: 0
  4223. m_FlipY: 0
  4224. m_DrawMode: 0
  4225. m_Size: {x: 0.87, y: 0.87}
  4226. m_AdaptiveModeThreshold: 0.5
  4227. m_SpriteTileMode: 0
  4228. m_WasSpriteAssigned: 1
  4229. m_MaskInteraction: 0
  4230. --- !u!212 &212795174595214126
  4231. SpriteRenderer:
  4232. m_ObjectHideFlags: 1
  4233. m_PrefabParentObject: {fileID: 0}
  4234. m_PrefabInternal: {fileID: 100100000}
  4235. m_GameObject: {fileID: 1208700578151218}
  4236. m_Enabled: 1
  4237. m_CastShadows: 0
  4238. m_ReceiveShadows: 0
  4239. m_DynamicOccludee: 1
  4240. m_MotionVectors: 1
  4241. m_LightProbeUsage: 1
  4242. m_ReflectionProbeUsage: 1
  4243. m_Materials:
  4244. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4245. m_StaticBatchInfo:
  4246. firstSubMesh: 0
  4247. subMeshCount: 0
  4248. m_StaticBatchRoot: {fileID: 0}
  4249. m_ProbeAnchor: {fileID: 0}
  4250. m_LightProbeVolumeOverride: {fileID: 0}
  4251. m_ScaleInLightmap: 1
  4252. m_PreserveUVs: 0
  4253. m_IgnoreNormalsForChartDetection: 0
  4254. m_ImportantGI: 0
  4255. m_StitchLightmapSeams: 0
  4256. m_SelectedEditorRenderState: 0
  4257. m_MinimumChartSize: 4
  4258. m_AutoUVMaxDistance: 0.5
  4259. m_AutoUVMaxAngle: 89
  4260. m_LightmapParameters: {fileID: 0}
  4261. m_SortingLayerID: 0
  4262. m_SortingLayer: 0
  4263. m_SortingOrder: 0
  4264. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4265. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4266. m_FlipX: 0
  4267. m_FlipY: 0
  4268. m_DrawMode: 0
  4269. m_Size: {x: 0.87, y: 0.87}
  4270. m_AdaptiveModeThreshold: 0.5
  4271. m_SpriteTileMode: 0
  4272. m_WasSpriteAssigned: 1
  4273. m_MaskInteraction: 0
  4274. --- !u!212 &212857852735331454
  4275. SpriteRenderer:
  4276. m_ObjectHideFlags: 1
  4277. m_PrefabParentObject: {fileID: 0}
  4278. m_PrefabInternal: {fileID: 100100000}
  4279. m_GameObject: {fileID: 1268970512877320}
  4280. m_Enabled: 1
  4281. m_CastShadows: 0
  4282. m_ReceiveShadows: 0
  4283. m_DynamicOccludee: 1
  4284. m_MotionVectors: 1
  4285. m_LightProbeUsage: 1
  4286. m_ReflectionProbeUsage: 1
  4287. m_Materials:
  4288. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4289. m_StaticBatchInfo:
  4290. firstSubMesh: 0
  4291. subMeshCount: 0
  4292. m_StaticBatchRoot: {fileID: 0}
  4293. m_ProbeAnchor: {fileID: 0}
  4294. m_LightProbeVolumeOverride: {fileID: 0}
  4295. m_ScaleInLightmap: 1
  4296. m_PreserveUVs: 0
  4297. m_IgnoreNormalsForChartDetection: 0
  4298. m_ImportantGI: 0
  4299. m_StitchLightmapSeams: 0
  4300. m_SelectedEditorRenderState: 0
  4301. m_MinimumChartSize: 4
  4302. m_AutoUVMaxDistance: 0.5
  4303. m_AutoUVMaxAngle: 89
  4304. m_LightmapParameters: {fileID: 0}
  4305. m_SortingLayerID: 0
  4306. m_SortingLayer: 0
  4307. m_SortingOrder: 0
  4308. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4309. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4310. m_FlipX: 0
  4311. m_FlipY: 0
  4312. m_DrawMode: 0
  4313. m_Size: {x: 0.87, y: 0.87}
  4314. m_AdaptiveModeThreshold: 0.5
  4315. m_SpriteTileMode: 0
  4316. m_WasSpriteAssigned: 1
  4317. m_MaskInteraction: 0
  4318. --- !u!212 &212891644315396748
  4319. SpriteRenderer:
  4320. m_ObjectHideFlags: 1
  4321. m_PrefabParentObject: {fileID: 0}
  4322. m_PrefabInternal: {fileID: 100100000}
  4323. m_GameObject: {fileID: 1075656691178396}
  4324. m_Enabled: 1
  4325. m_CastShadows: 0
  4326. m_ReceiveShadows: 0
  4327. m_DynamicOccludee: 1
  4328. m_MotionVectors: 1
  4329. m_LightProbeUsage: 1
  4330. m_ReflectionProbeUsage: 1
  4331. m_Materials:
  4332. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4333. m_StaticBatchInfo:
  4334. firstSubMesh: 0
  4335. subMeshCount: 0
  4336. m_StaticBatchRoot: {fileID: 0}
  4337. m_ProbeAnchor: {fileID: 0}
  4338. m_LightProbeVolumeOverride: {fileID: 0}
  4339. m_ScaleInLightmap: 1
  4340. m_PreserveUVs: 0
  4341. m_IgnoreNormalsForChartDetection: 0
  4342. m_ImportantGI: 0
  4343. m_StitchLightmapSeams: 0
  4344. m_SelectedEditorRenderState: 0
  4345. m_MinimumChartSize: 4
  4346. m_AutoUVMaxDistance: 0.5
  4347. m_AutoUVMaxAngle: 89
  4348. m_LightmapParameters: {fileID: 0}
  4349. m_SortingLayerID: 0
  4350. m_SortingLayer: 0
  4351. m_SortingOrder: 0
  4352. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4353. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4354. m_FlipX: 0
  4355. m_FlipY: 0
  4356. m_DrawMode: 0
  4357. m_Size: {x: 0.87, y: 0.87}
  4358. m_AdaptiveModeThreshold: 0.5
  4359. m_SpriteTileMode: 0
  4360. m_WasSpriteAssigned: 1
  4361. m_MaskInteraction: 0
  4362. --- !u!212 &212931073896023434
  4363. SpriteRenderer:
  4364. m_ObjectHideFlags: 1
  4365. m_PrefabParentObject: {fileID: 0}
  4366. m_PrefabInternal: {fileID: 100100000}
  4367. m_GameObject: {fileID: 1955285811994900}
  4368. m_Enabled: 1
  4369. m_CastShadows: 0
  4370. m_ReceiveShadows: 0
  4371. m_DynamicOccludee: 1
  4372. m_MotionVectors: 1
  4373. m_LightProbeUsage: 1
  4374. m_ReflectionProbeUsage: 1
  4375. m_Materials:
  4376. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4377. m_StaticBatchInfo:
  4378. firstSubMesh: 0
  4379. subMeshCount: 0
  4380. m_StaticBatchRoot: {fileID: 0}
  4381. m_ProbeAnchor: {fileID: 0}
  4382. m_LightProbeVolumeOverride: {fileID: 0}
  4383. m_ScaleInLightmap: 1
  4384. m_PreserveUVs: 0
  4385. m_IgnoreNormalsForChartDetection: 0
  4386. m_ImportantGI: 0
  4387. m_StitchLightmapSeams: 0
  4388. m_SelectedEditorRenderState: 0
  4389. m_MinimumChartSize: 4
  4390. m_AutoUVMaxDistance: 0.5
  4391. m_AutoUVMaxAngle: 89
  4392. m_LightmapParameters: {fileID: 0}
  4393. m_SortingLayerID: 0
  4394. m_SortingLayer: 0
  4395. m_SortingOrder: 0
  4396. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4397. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4398. m_FlipX: 0
  4399. m_FlipY: 0
  4400. m_DrawMode: 0
  4401. m_Size: {x: 0.87, y: 0.87}
  4402. m_AdaptiveModeThreshold: 0.5
  4403. m_SpriteTileMode: 0
  4404. m_WasSpriteAssigned: 1
  4405. m_MaskInteraction: 0
  4406. --- !u!212 &212975815470547082
  4407. SpriteRenderer:
  4408. m_ObjectHideFlags: 1
  4409. m_PrefabParentObject: {fileID: 0}
  4410. m_PrefabInternal: {fileID: 100100000}
  4411. m_GameObject: {fileID: 1560323261863206}
  4412. m_Enabled: 1
  4413. m_CastShadows: 0
  4414. m_ReceiveShadows: 0
  4415. m_DynamicOccludee: 1
  4416. m_MotionVectors: 1
  4417. m_LightProbeUsage: 1
  4418. m_ReflectionProbeUsage: 1
  4419. m_Materials:
  4420. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  4421. m_StaticBatchInfo:
  4422. firstSubMesh: 0
  4423. subMeshCount: 0
  4424. m_StaticBatchRoot: {fileID: 0}
  4425. m_ProbeAnchor: {fileID: 0}
  4426. m_LightProbeVolumeOverride: {fileID: 0}
  4427. m_ScaleInLightmap: 1
  4428. m_PreserveUVs: 0
  4429. m_IgnoreNormalsForChartDetection: 0
  4430. m_ImportantGI: 0
  4431. m_StitchLightmapSeams: 0
  4432. m_SelectedEditorRenderState: 0
  4433. m_MinimumChartSize: 4
  4434. m_AutoUVMaxDistance: 0.5
  4435. m_AutoUVMaxAngle: 89
  4436. m_LightmapParameters: {fileID: 0}
  4437. m_SortingLayerID: 0
  4438. m_SortingLayer: 0
  4439. m_SortingOrder: 0
  4440. m_Sprite: {fileID: 21300000, guid: 65e20907bca634340bf1c2d30b263c07, type: 3}
  4441. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4442. m_FlipX: 0
  4443. m_FlipY: 0
  4444. m_DrawMode: 0
  4445. m_Size: {x: 0.87, y: 0.87}
  4446. m_AdaptiveModeThreshold: 0.5
  4447. m_SpriteTileMode: 0
  4448. m_WasSpriteAssigned: 1
  4449. m_MaskInteraction: 0