yingzi.prefab 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1 &2517208660002039798
  4. GameObject:
  5. m_ObjectHideFlags: 0
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. serializedVersion: 6
  10. m_Component:
  11. - component: {fileID: 2517208660001881046}
  12. - component: {fileID: 2517208659998981110}
  13. - component: {fileID: 2517208660000110902}
  14. m_Layer: 0
  15. m_Name: Table01 (7)
  16. m_TagString: Untagged
  17. m_Icon: {fileID: 0}
  18. m_NavMeshLayer: 0
  19. m_StaticEditorFlags: 1
  20. m_IsActive: 1
  21. --- !u!4 &2517208660001881046
  22. Transform:
  23. m_ObjectHideFlags: 0
  24. m_CorrespondingSourceObject: {fileID: 0}
  25. m_PrefabInstance: {fileID: 0}
  26. m_PrefabAsset: {fileID: 0}
  27. m_GameObject: {fileID: 2517208660002039798}
  28. m_LocalRotation: {x: -0.5000007, y: -0.4999993, z: -0.4999993, w: 0.5000007}
  29. m_LocalPosition: {x: 26.7, y: -4.7573, z: -9}
  30. m_LocalScale: {x: 38.73817, y: 10.234207, z: 10.234207}
  31. m_Children: []
  32. m_Father: {fileID: 2517208660254528753}
  33. m_RootOrder: 4
  34. m_LocalEulerAnglesHint: {x: -90.00001, y: 0, z: -90.00001}
  35. --- !u!33 &2517208659998981110
  36. MeshFilter:
  37. m_ObjectHideFlags: 0
  38. m_CorrespondingSourceObject: {fileID: 0}
  39. m_PrefabInstance: {fileID: 0}
  40. m_PrefabAsset: {fileID: 0}
  41. m_GameObject: {fileID: 2517208660002039798}
  42. m_Mesh: {fileID: 4300000, guid: 6899cbad3e8009846ad4b6704b12f877, type: 3}
  43. --- !u!23 &2517208660000110902
  44. MeshRenderer:
  45. m_ObjectHideFlags: 0
  46. m_CorrespondingSourceObject: {fileID: 0}
  47. m_PrefabInstance: {fileID: 0}
  48. m_PrefabAsset: {fileID: 0}
  49. m_GameObject: {fileID: 2517208660002039798}
  50. m_Enabled: 1
  51. m_CastShadows: 1
  52. m_ReceiveShadows: 1
  53. m_DynamicOccludee: 1
  54. m_MotionVectors: 1
  55. m_LightProbeUsage: 1
  56. m_ReflectionProbeUsage: 1
  57. m_RenderingLayerMask: 1
  58. m_RendererPriority: 0
  59. m_Materials:
  60. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  61. m_StaticBatchInfo:
  62. firstSubMesh: 0
  63. subMeshCount: 0
  64. m_StaticBatchRoot: {fileID: 0}
  65. m_ProbeAnchor: {fileID: 0}
  66. m_LightProbeVolumeOverride: {fileID: 0}
  67. m_ScaleInLightmap: 0.0001
  68. m_PreserveUVs: 0
  69. m_IgnoreNormalsForChartDetection: 0
  70. m_ImportantGI: 0
  71. m_StitchLightmapSeams: 0
  72. m_SelectedEditorRenderState: 3
  73. m_MinimumChartSize: 4
  74. m_AutoUVMaxDistance: 0.5
  75. m_AutoUVMaxAngle: 89
  76. m_LightmapParameters: {fileID: 0}
  77. m_SortingLayerID: 0
  78. m_SortingLayer: 0
  79. m_SortingOrder: 0
  80. --- !u!1 &2517208660123201974
  81. GameObject:
  82. m_ObjectHideFlags: 0
  83. m_CorrespondingSourceObject: {fileID: 0}
  84. m_PrefabInstance: {fileID: 0}
  85. m_PrefabAsset: {fileID: 0}
  86. serializedVersion: 6
  87. m_Component:
  88. - component: {fileID: 2517208660122906006}
  89. - component: {fileID: 2517208660122135990}
  90. - component: {fileID: 2517208660121005942}
  91. m_Layer: 0
  92. m_Name: Table01 (4)
  93. m_TagString: Untagged
  94. m_Icon: {fileID: 0}
  95. m_NavMeshLayer: 0
  96. m_StaticEditorFlags: 1
  97. m_IsActive: 1
  98. --- !u!4 &2517208660122906006
  99. Transform:
  100. m_ObjectHideFlags: 0
  101. m_CorrespondingSourceObject: {fileID: 0}
  102. m_PrefabInstance: {fileID: 0}
  103. m_PrefabAsset: {fileID: 0}
  104. m_GameObject: {fileID: 2517208660123201974}
  105. m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071068}
  106. m_LocalPosition: {x: 18.6, y: -4.7573, z: -28.37}
  107. m_LocalScale: {x: 10.234203, y: 6.777911, z: 10.234207}
  108. m_Children: []
  109. m_Father: {fileID: 2517208660254528753}
  110. m_RootOrder: 1
  111. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  112. --- !u!33 &2517208660122135990
  113. MeshFilter:
  114. m_ObjectHideFlags: 0
  115. m_CorrespondingSourceObject: {fileID: 0}
  116. m_PrefabInstance: {fileID: 0}
  117. m_PrefabAsset: {fileID: 0}
  118. m_GameObject: {fileID: 2517208660123201974}
  119. m_Mesh: {fileID: 4300000, guid: 6899cbad3e8009846ad4b6704b12f877, type: 3}
  120. --- !u!23 &2517208660121005942
  121. MeshRenderer:
  122. m_ObjectHideFlags: 0
  123. m_CorrespondingSourceObject: {fileID: 0}
  124. m_PrefabInstance: {fileID: 0}
  125. m_PrefabAsset: {fileID: 0}
  126. m_GameObject: {fileID: 2517208660123201974}
  127. m_Enabled: 1
  128. m_CastShadows: 1
  129. m_ReceiveShadows: 1
  130. m_DynamicOccludee: 1
  131. m_MotionVectors: 1
  132. m_LightProbeUsage: 1
  133. m_ReflectionProbeUsage: 1
  134. m_RenderingLayerMask: 1
  135. m_RendererPriority: 0
  136. m_Materials:
  137. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  138. m_StaticBatchInfo:
  139. firstSubMesh: 0
  140. subMeshCount: 0
  141. m_StaticBatchRoot: {fileID: 0}
  142. m_ProbeAnchor: {fileID: 0}
  143. m_LightProbeVolumeOverride: {fileID: 0}
  144. m_ScaleInLightmap: 0.0001
  145. m_PreserveUVs: 0
  146. m_IgnoreNormalsForChartDetection: 0
  147. m_ImportantGI: 0
  148. m_StitchLightmapSeams: 0
  149. m_SelectedEditorRenderState: 3
  150. m_MinimumChartSize: 4
  151. m_AutoUVMaxDistance: 0.5
  152. m_AutoUVMaxAngle: 89
  153. m_LightmapParameters: {fileID: 0}
  154. m_SortingLayerID: 0
  155. m_SortingLayer: 0
  156. m_SortingOrder: 0
  157. --- !u!1 &2517208660254528758
  158. GameObject:
  159. m_ObjectHideFlags: 0
  160. m_CorrespondingSourceObject: {fileID: 0}
  161. m_PrefabInstance: {fileID: 0}
  162. m_PrefabAsset: {fileID: 0}
  163. serializedVersion: 6
  164. m_Component:
  165. - component: {fileID: 2517208660254528753}
  166. m_Layer: 0
  167. m_Name: yingzi
  168. m_TagString: Untagged
  169. m_Icon: {fileID: 0}
  170. m_NavMeshLayer: 0
  171. m_StaticEditorFlags: 0
  172. m_IsActive: 1
  173. --- !u!4 &2517208660254528753
  174. Transform:
  175. m_ObjectHideFlags: 0
  176. m_CorrespondingSourceObject: {fileID: 0}
  177. m_PrefabInstance: {fileID: 0}
  178. m_PrefabAsset: {fileID: 0}
  179. m_GameObject: {fileID: 2517208660254528758}
  180. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  181. m_LocalPosition: {x: 1.88, y: 0, z: -4.16}
  182. m_LocalScale: {x: 1, y: 1, z: 1}
  183. m_Children:
  184. - {fileID: 2517208661105018025}
  185. - {fileID: 2517208660122906006}
  186. - {fileID: 2517208661231113558}
  187. - {fileID: 2517208661342620630}
  188. - {fileID: 2517208660001881046}
  189. - {fileID: 2517208661618895809}
  190. - {fileID: 2517208660283125134}
  191. - {fileID: 3532591104730208932}
  192. - {fileID: 3532591106002193649}
  193. - {fileID: 3532591105358910233}
  194. - {fileID: 3532591105249707363}
  195. - {fileID: 3532591104439988045}
  196. - {fileID: 3532591105427794234}
  197. - {fileID: 3532591104141151906}
  198. - {fileID: 3532591105730090372}
  199. - {fileID: 3532591105588848684}
  200. - {fileID: 3532591104428406069}
  201. - {fileID: 3532591104044938692}
  202. - {fileID: 3532591105314208002}
  203. - {fileID: 3532591105244707774}
  204. - {fileID: 3532591105074083034}
  205. - {fileID: 3532591105924649115}
  206. - {fileID: 3532591105733505225}
  207. - {fileID: 3532591104874060908}
  208. - {fileID: 3532591104658411147}
  209. - {fileID: 3532591106059537763}
  210. - {fileID: 3532591104226905139}
  211. - {fileID: 3532591105657892719}
  212. - {fileID: 832643507}
  213. - {fileID: 1908615160}
  214. m_Father: {fileID: 0}
  215. m_RootOrder: 0
  216. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  217. --- !u!1 &2517208660282831278
  218. GameObject:
  219. m_ObjectHideFlags: 0
  220. m_CorrespondingSourceObject: {fileID: 0}
  221. m_PrefabInstance: {fileID: 0}
  222. m_PrefabAsset: {fileID: 0}
  223. serializedVersion: 6
  224. m_Component:
  225. - component: {fileID: 2517208660283125134}
  226. - component: {fileID: 2517208660279700910}
  227. - component: {fileID: 2517208660280831854}
  228. m_Layer: 0
  229. m_Name: Table01 (5)
  230. m_TagString: Untagged
  231. m_Icon: {fileID: 0}
  232. m_NavMeshLayer: 0
  233. m_StaticEditorFlags: 1
  234. m_IsActive: 1
  235. --- !u!4 &2517208660283125134
  236. Transform:
  237. m_ObjectHideFlags: 0
  238. m_CorrespondingSourceObject: {fileID: 0}
  239. m_PrefabInstance: {fileID: 0}
  240. m_PrefabAsset: {fileID: 0}
  241. m_GameObject: {fileID: 2517208660282831278}
  242. m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071068}
  243. m_LocalPosition: {x: 18.600004, y: -4.7573, z: 39.95}
  244. m_LocalScale: {x: 10.234203, y: 10.234207, z: 10.234207}
  245. m_Children: []
  246. m_Father: {fileID: 2517208660254528753}
  247. m_RootOrder: 6
  248. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  249. --- !u!33 &2517208660279700910
  250. MeshFilter:
  251. m_ObjectHideFlags: 0
  252. m_CorrespondingSourceObject: {fileID: 0}
  253. m_PrefabInstance: {fileID: 0}
  254. m_PrefabAsset: {fileID: 0}
  255. m_GameObject: {fileID: 2517208660282831278}
  256. m_Mesh: {fileID: 4300000, guid: 6899cbad3e8009846ad4b6704b12f877, type: 3}
  257. --- !u!23 &2517208660280831854
  258. MeshRenderer:
  259. m_ObjectHideFlags: 0
  260. m_CorrespondingSourceObject: {fileID: 0}
  261. m_PrefabInstance: {fileID: 0}
  262. m_PrefabAsset: {fileID: 0}
  263. m_GameObject: {fileID: 2517208660282831278}
  264. m_Enabled: 1
  265. m_CastShadows: 1
  266. m_ReceiveShadows: 1
  267. m_DynamicOccludee: 1
  268. m_MotionVectors: 1
  269. m_LightProbeUsage: 1
  270. m_ReflectionProbeUsage: 1
  271. m_RenderingLayerMask: 1
  272. m_RendererPriority: 0
  273. m_Materials:
  274. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  275. m_StaticBatchInfo:
  276. firstSubMesh: 0
  277. subMeshCount: 0
  278. m_StaticBatchRoot: {fileID: 0}
  279. m_ProbeAnchor: {fileID: 0}
  280. m_LightProbeVolumeOverride: {fileID: 0}
  281. m_ScaleInLightmap: 0.0001
  282. m_PreserveUVs: 0
  283. m_IgnoreNormalsForChartDetection: 0
  284. m_ImportantGI: 0
  285. m_StitchLightmapSeams: 0
  286. m_SelectedEditorRenderState: 3
  287. m_MinimumChartSize: 4
  288. m_AutoUVMaxDistance: 0.5
  289. m_AutoUVMaxAngle: 89
  290. m_LightmapParameters: {fileID: 0}
  291. m_SortingLayerID: 0
  292. m_SortingLayer: 0
  293. m_SortingOrder: 0
  294. --- !u!1 &2517208661105055881
  295. GameObject:
  296. m_ObjectHideFlags: 0
  297. m_CorrespondingSourceObject: {fileID: 0}
  298. m_PrefabInstance: {fileID: 0}
  299. m_PrefabAsset: {fileID: 0}
  300. serializedVersion: 6
  301. m_Component:
  302. - component: {fileID: 2517208661105018025}
  303. - component: {fileID: 2517208661102150793}
  304. - component: {fileID: 2517208661103117897}
  305. m_Layer: 0
  306. m_Name: Table01 (3)
  307. m_TagString: Untagged
  308. m_Icon: {fileID: 0}
  309. m_NavMeshLayer: 0
  310. m_StaticEditorFlags: 1
  311. m_IsActive: 1
  312. --- !u!4 &2517208661105018025
  313. Transform:
  314. m_ObjectHideFlags: 0
  315. m_CorrespondingSourceObject: {fileID: 0}
  316. m_PrefabInstance: {fileID: 0}
  317. m_PrefabAsset: {fileID: 0}
  318. m_GameObject: {fileID: 2517208661105055881}
  319. m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071068}
  320. m_LocalPosition: {x: 18.600004, y: -4.7573, z: -11.3}
  321. m_LocalScale: {x: 10.234203, y: 8.696927, z: 10.234207}
  322. m_Children: []
  323. m_Father: {fileID: 2517208660254528753}
  324. m_RootOrder: 0
  325. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  326. --- !u!33 &2517208661102150793
  327. MeshFilter:
  328. m_ObjectHideFlags: 0
  329. m_CorrespondingSourceObject: {fileID: 0}
  330. m_PrefabInstance: {fileID: 0}
  331. m_PrefabAsset: {fileID: 0}
  332. m_GameObject: {fileID: 2517208661105055881}
  333. m_Mesh: {fileID: 4300000, guid: 6899cbad3e8009846ad4b6704b12f877, type: 3}
  334. --- !u!23 &2517208661103117897
  335. MeshRenderer:
  336. m_ObjectHideFlags: 0
  337. m_CorrespondingSourceObject: {fileID: 0}
  338. m_PrefabInstance: {fileID: 0}
  339. m_PrefabAsset: {fileID: 0}
  340. m_GameObject: {fileID: 2517208661105055881}
  341. m_Enabled: 1
  342. m_CastShadows: 1
  343. m_ReceiveShadows: 1
  344. m_DynamicOccludee: 1
  345. m_MotionVectors: 1
  346. m_LightProbeUsage: 1
  347. m_ReflectionProbeUsage: 1
  348. m_RenderingLayerMask: 1
  349. m_RendererPriority: 0
  350. m_Materials:
  351. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  352. m_StaticBatchInfo:
  353. firstSubMesh: 0
  354. subMeshCount: 0
  355. m_StaticBatchRoot: {fileID: 0}
  356. m_ProbeAnchor: {fileID: 0}
  357. m_LightProbeVolumeOverride: {fileID: 0}
  358. m_ScaleInLightmap: 0.0001
  359. m_PreserveUVs: 0
  360. m_IgnoreNormalsForChartDetection: 0
  361. m_ImportantGI: 0
  362. m_StitchLightmapSeams: 0
  363. m_SelectedEditorRenderState: 3
  364. m_MinimumChartSize: 4
  365. m_AutoUVMaxDistance: 0.5
  366. m_AutoUVMaxAngle: 89
  367. m_LightmapParameters: {fileID: 0}
  368. m_SortingLayerID: 0
  369. m_SortingLayer: 0
  370. m_SortingOrder: 0
  371. --- !u!1 &2517208661230618998
  372. GameObject:
  373. m_ObjectHideFlags: 0
  374. m_CorrespondingSourceObject: {fileID: 0}
  375. m_PrefabInstance: {fileID: 0}
  376. m_PrefabAsset: {fileID: 0}
  377. serializedVersion: 6
  378. m_Component:
  379. - component: {fileID: 2517208661231113558}
  380. - component: {fileID: 2517208661227722102}
  381. - component: {fileID: 2517208661228689334}
  382. m_Layer: 0
  383. m_Name: Table01 (5)
  384. m_TagString: Untagged
  385. m_Icon: {fileID: 0}
  386. m_NavMeshLayer: 0
  387. m_StaticEditorFlags: 1
  388. m_IsActive: 1
  389. --- !u!4 &2517208661231113558
  390. Transform:
  391. m_ObjectHideFlags: 0
  392. m_CorrespondingSourceObject: {fileID: 0}
  393. m_PrefabInstance: {fileID: 0}
  394. m_PrefabAsset: {fileID: 0}
  395. m_GameObject: {fileID: 2517208661230618998}
  396. m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071068}
  397. m_LocalPosition: {x: 18.600004, y: -4.7573, z: 5.32}
  398. m_LocalScale: {x: 10.234203, y: 5.616021, z: 10.234207}
  399. m_Children: []
  400. m_Father: {fileID: 2517208660254528753}
  401. m_RootOrder: 2
  402. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  403. --- !u!33 &2517208661227722102
  404. MeshFilter:
  405. m_ObjectHideFlags: 0
  406. m_CorrespondingSourceObject: {fileID: 0}
  407. m_PrefabInstance: {fileID: 0}
  408. m_PrefabAsset: {fileID: 0}
  409. m_GameObject: {fileID: 2517208661230618998}
  410. m_Mesh: {fileID: 4300000, guid: 6899cbad3e8009846ad4b6704b12f877, type: 3}
  411. --- !u!23 &2517208661228689334
  412. MeshRenderer:
  413. m_ObjectHideFlags: 0
  414. m_CorrespondingSourceObject: {fileID: 0}
  415. m_PrefabInstance: {fileID: 0}
  416. m_PrefabAsset: {fileID: 0}
  417. m_GameObject: {fileID: 2517208661230618998}
  418. m_Enabled: 1
  419. m_CastShadows: 1
  420. m_ReceiveShadows: 1
  421. m_DynamicOccludee: 1
  422. m_MotionVectors: 1
  423. m_LightProbeUsage: 1
  424. m_ReflectionProbeUsage: 1
  425. m_RenderingLayerMask: 1
  426. m_RendererPriority: 0
  427. m_Materials:
  428. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  429. m_StaticBatchInfo:
  430. firstSubMesh: 0
  431. subMeshCount: 0
  432. m_StaticBatchRoot: {fileID: 0}
  433. m_ProbeAnchor: {fileID: 0}
  434. m_LightProbeVolumeOverride: {fileID: 0}
  435. m_ScaleInLightmap: 0.0001
  436. m_PreserveUVs: 0
  437. m_IgnoreNormalsForChartDetection: 0
  438. m_ImportantGI: 0
  439. m_StitchLightmapSeams: 0
  440. m_SelectedEditorRenderState: 3
  441. m_MinimumChartSize: 4
  442. m_AutoUVMaxDistance: 0.5
  443. m_AutoUVMaxAngle: 89
  444. m_LightmapParameters: {fileID: 0}
  445. m_SortingLayerID: 0
  446. m_SortingLayer: 0
  447. m_SortingOrder: 0
  448. --- !u!1 &2517208661342459894
  449. GameObject:
  450. m_ObjectHideFlags: 0
  451. m_CorrespondingSourceObject: {fileID: 0}
  452. m_PrefabInstance: {fileID: 0}
  453. m_PrefabAsset: {fileID: 0}
  454. serializedVersion: 6
  455. m_Component:
  456. - component: {fileID: 2517208661342620630}
  457. - component: {fileID: 2517208661343423478}
  458. - component: {fileID: 2517208661344389430}
  459. m_Layer: 0
  460. m_Name: Table01 (6)
  461. m_TagString: Untagged
  462. m_Icon: {fileID: 0}
  463. m_NavMeshLayer: 0
  464. m_StaticEditorFlags: 1
  465. m_IsActive: 1
  466. --- !u!4 &2517208661342620630
  467. Transform:
  468. m_ObjectHideFlags: 0
  469. m_CorrespondingSourceObject: {fileID: 0}
  470. m_PrefabInstance: {fileID: 0}
  471. m_PrefabAsset: {fileID: 0}
  472. m_GameObject: {fileID: 2517208661342459894}
  473. m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071068}
  474. m_LocalPosition: {x: 18.6, y: -4.7573, z: -47.16}
  475. m_LocalScale: {x: 10.234203, y: 10.234207, z: 10.234207}
  476. m_Children: []
  477. m_Father: {fileID: 2517208660254528753}
  478. m_RootOrder: 3
  479. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  480. --- !u!33 &2517208661343423478
  481. MeshFilter:
  482. m_ObjectHideFlags: 0
  483. m_CorrespondingSourceObject: {fileID: 0}
  484. m_PrefabInstance: {fileID: 0}
  485. m_PrefabAsset: {fileID: 0}
  486. m_GameObject: {fileID: 2517208661342459894}
  487. m_Mesh: {fileID: 4300000, guid: 6899cbad3e8009846ad4b6704b12f877, type: 3}
  488. --- !u!23 &2517208661344389430
  489. MeshRenderer:
  490. m_ObjectHideFlags: 0
  491. m_CorrespondingSourceObject: {fileID: 0}
  492. m_PrefabInstance: {fileID: 0}
  493. m_PrefabAsset: {fileID: 0}
  494. m_GameObject: {fileID: 2517208661342459894}
  495. m_Enabled: 1
  496. m_CastShadows: 1
  497. m_ReceiveShadows: 1
  498. m_DynamicOccludee: 1
  499. m_MotionVectors: 1
  500. m_LightProbeUsage: 1
  501. m_ReflectionProbeUsage: 1
  502. m_RenderingLayerMask: 1
  503. m_RendererPriority: 0
  504. m_Materials:
  505. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  506. m_StaticBatchInfo:
  507. firstSubMesh: 0
  508. subMeshCount: 0
  509. m_StaticBatchRoot: {fileID: 0}
  510. m_ProbeAnchor: {fileID: 0}
  511. m_LightProbeVolumeOverride: {fileID: 0}
  512. m_ScaleInLightmap: 0.0001
  513. m_PreserveUVs: 0
  514. m_IgnoreNormalsForChartDetection: 0
  515. m_ImportantGI: 0
  516. m_StitchLightmapSeams: 0
  517. m_SelectedEditorRenderState: 3
  518. m_MinimumChartSize: 4
  519. m_AutoUVMaxDistance: 0.5
  520. m_AutoUVMaxAngle: 89
  521. m_LightmapParameters: {fileID: 0}
  522. m_SortingLayerID: 0
  523. m_SortingLayer: 0
  524. m_SortingOrder: 0
  525. --- !u!1 &2517208661618800609
  526. GameObject:
  527. m_ObjectHideFlags: 0
  528. m_CorrespondingSourceObject: {fileID: 0}
  529. m_PrefabInstance: {fileID: 0}
  530. m_PrefabAsset: {fileID: 0}
  531. serializedVersion: 6
  532. m_Component:
  533. - component: {fileID: 2517208661618895809}
  534. - component: {fileID: 2517208661619698657}
  535. - component: {fileID: 2517208661620795681}
  536. m_Layer: 0
  537. m_Name: Table01 (3)
  538. m_TagString: Untagged
  539. m_Icon: {fileID: 0}
  540. m_NavMeshLayer: 0
  541. m_StaticEditorFlags: 1
  542. m_IsActive: 1
  543. --- !u!4 &2517208661618895809
  544. Transform:
  545. m_ObjectHideFlags: 0
  546. m_CorrespondingSourceObject: {fileID: 0}
  547. m_PrefabInstance: {fileID: 0}
  548. m_PrefabAsset: {fileID: 0}
  549. m_GameObject: {fileID: 2517208661618800609}
  550. m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071068}
  551. m_LocalPosition: {x: 18.600004, y: -4.7573, z: 21.83}
  552. m_LocalScale: {x: 10.234203, y: 6.787019, z: 10.234207}
  553. m_Children: []
  554. m_Father: {fileID: 2517208660254528753}
  555. m_RootOrder: 5
  556. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  557. --- !u!33 &2517208661619698657
  558. MeshFilter:
  559. m_ObjectHideFlags: 0
  560. m_CorrespondingSourceObject: {fileID: 0}
  561. m_PrefabInstance: {fileID: 0}
  562. m_PrefabAsset: {fileID: 0}
  563. m_GameObject: {fileID: 2517208661618800609}
  564. m_Mesh: {fileID: 4300000, guid: 6899cbad3e8009846ad4b6704b12f877, type: 3}
  565. --- !u!23 &2517208661620795681
  566. MeshRenderer:
  567. m_ObjectHideFlags: 0
  568. m_CorrespondingSourceObject: {fileID: 0}
  569. m_PrefabInstance: {fileID: 0}
  570. m_PrefabAsset: {fileID: 0}
  571. m_GameObject: {fileID: 2517208661618800609}
  572. m_Enabled: 1
  573. m_CastShadows: 1
  574. m_ReceiveShadows: 1
  575. m_DynamicOccludee: 1
  576. m_MotionVectors: 1
  577. m_LightProbeUsage: 1
  578. m_ReflectionProbeUsage: 1
  579. m_RenderingLayerMask: 1
  580. m_RendererPriority: 0
  581. m_Materials:
  582. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  583. m_StaticBatchInfo:
  584. firstSubMesh: 0
  585. subMeshCount: 0
  586. m_StaticBatchRoot: {fileID: 0}
  587. m_ProbeAnchor: {fileID: 0}
  588. m_LightProbeVolumeOverride: {fileID: 0}
  589. m_ScaleInLightmap: 0.0001
  590. m_PreserveUVs: 0
  591. m_IgnoreNormalsForChartDetection: 0
  592. m_ImportantGI: 0
  593. m_StitchLightmapSeams: 0
  594. m_SelectedEditorRenderState: 3
  595. m_MinimumChartSize: 4
  596. m_AutoUVMaxDistance: 0.5
  597. m_AutoUVMaxAngle: 89
  598. m_LightmapParameters: {fileID: 0}
  599. m_SortingLayerID: 0
  600. m_SortingLayer: 0
  601. m_SortingOrder: 0
  602. --- !u!1 &3532591104730208933
  603. GameObject:
  604. m_ObjectHideFlags: 0
  605. m_CorrespondingSourceObject: {fileID: 0}
  606. m_PrefabInstance: {fileID: 0}
  607. m_PrefabAsset: {fileID: 0}
  608. serializedVersion: 6
  609. m_Component:
  610. - component: {fileID: 3532591104730208932}
  611. - component: {fileID: 3532591104730208953}
  612. - component: {fileID: 3532591104730208954}
  613. - component: {fileID: 3532591104730208955}
  614. m_Layer: 0
  615. m_Name: Cube (6)
  616. m_TagString: Untagged
  617. m_Icon: {fileID: 0}
  618. m_NavMeshLayer: 0
  619. m_StaticEditorFlags: 1
  620. m_IsActive: 1
  621. --- !u!4 &3532591104730208932
  622. Transform:
  623. m_ObjectHideFlags: 0
  624. m_CorrespondingSourceObject: {fileID: 0}
  625. m_PrefabInstance: {fileID: 0}
  626. m_PrefabAsset: {fileID: 0}
  627. m_GameObject: {fileID: 3532591104730208933}
  628. m_LocalRotation: {x: 0.49999997, y: -0.50000006, z: 0.49999854, w: 0.50000155}
  629. m_LocalPosition: {x: 23.72, y: 17.58, z: -15.39}
  630. m_LocalScale: {x: 100.97616, y: 2.5379, z: 5.736009}
  631. m_Children: []
  632. m_Father: {fileID: 2517208660254528753}
  633. m_RootOrder: 7
  634. m_LocalEulerAnglesHint: {x: 90.00001, y: 0, z: 90.00001}
  635. --- !u!33 &3532591104730208953
  636. MeshFilter:
  637. m_ObjectHideFlags: 0
  638. m_CorrespondingSourceObject: {fileID: 0}
  639. m_PrefabInstance: {fileID: 0}
  640. m_PrefabAsset: {fileID: 0}
  641. m_GameObject: {fileID: 3532591104730208933}
  642. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  643. --- !u!23 &3532591104730208954
  644. MeshRenderer:
  645. m_ObjectHideFlags: 0
  646. m_CorrespondingSourceObject: {fileID: 0}
  647. m_PrefabInstance: {fileID: 0}
  648. m_PrefabAsset: {fileID: 0}
  649. m_GameObject: {fileID: 3532591104730208933}
  650. m_Enabled: 1
  651. m_CastShadows: 1
  652. m_ReceiveShadows: 1
  653. m_DynamicOccludee: 1
  654. m_MotionVectors: 1
  655. m_LightProbeUsage: 1
  656. m_ReflectionProbeUsage: 1
  657. m_RenderingLayerMask: 1
  658. m_RendererPriority: 0
  659. m_Materials:
  660. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  661. m_StaticBatchInfo:
  662. firstSubMesh: 0
  663. subMeshCount: 0
  664. m_StaticBatchRoot: {fileID: 0}
  665. m_ProbeAnchor: {fileID: 0}
  666. m_LightProbeVolumeOverride: {fileID: 0}
  667. m_ScaleInLightmap: 0.0001
  668. m_PreserveUVs: 0
  669. m_IgnoreNormalsForChartDetection: 0
  670. m_ImportantGI: 0
  671. m_StitchLightmapSeams: 0
  672. m_SelectedEditorRenderState: 3
  673. m_MinimumChartSize: 4
  674. m_AutoUVMaxDistance: 0.5
  675. m_AutoUVMaxAngle: 89
  676. m_LightmapParameters: {fileID: 0}
  677. m_SortingLayerID: 0
  678. m_SortingLayer: 0
  679. m_SortingOrder: 0
  680. --- !u!65 &3532591104730208955
  681. BoxCollider:
  682. m_ObjectHideFlags: 0
  683. m_CorrespondingSourceObject: {fileID: 0}
  684. m_PrefabInstance: {fileID: 0}
  685. m_PrefabAsset: {fileID: 0}
  686. m_GameObject: {fileID: 3532591104730208933}
  687. m_Material: {fileID: 0}
  688. m_IsTrigger: 0
  689. m_Enabled: 1
  690. serializedVersion: 2
  691. m_Size: {x: 1, y: 1, z: 1}
  692. m_Center: {x: 0, y: 0, z: 0}
  693. --- !u!1 &3532591105358910234
  694. GameObject:
  695. m_ObjectHideFlags: 0
  696. m_CorrespondingSourceObject: {fileID: 0}
  697. m_PrefabInstance: {fileID: 0}
  698. m_PrefabAsset: {fileID: 0}
  699. serializedVersion: 6
  700. m_Component:
  701. - component: {fileID: 3532591105358910233}
  702. - component: {fileID: 3532591105358910238}
  703. - component: {fileID: 3532591105358910239}
  704. - component: {fileID: 3532591105358910232}
  705. m_Layer: 0
  706. m_Name: Cube (8)
  707. m_TagString: Untagged
  708. m_Icon: {fileID: 0}
  709. m_NavMeshLayer: 0
  710. m_StaticEditorFlags: 1
  711. m_IsActive: 1
  712. --- !u!4 &3532591105358910233
  713. Transform:
  714. m_ObjectHideFlags: 0
  715. m_CorrespondingSourceObject: {fileID: 0}
  716. m_PrefabInstance: {fileID: 0}
  717. m_PrefabAsset: {fileID: 0}
  718. m_GameObject: {fileID: 3532591105358910234}
  719. m_LocalRotation: {x: 0.49999997, y: -0.50000006, z: 0.49999854, w: 0.50000155}
  720. m_LocalPosition: {x: 58.9, y: 47.2, z: 112}
  721. m_LocalScale: {x: 154.73628, y: 3.990594, z: 169.90816}
  722. m_Children: []
  723. m_Father: {fileID: 2517208660254528753}
  724. m_RootOrder: 9
  725. m_LocalEulerAnglesHint: {x: 90.00001, y: 0, z: 90.00001}
  726. --- !u!33 &3532591105358910238
  727. MeshFilter:
  728. m_ObjectHideFlags: 0
  729. m_CorrespondingSourceObject: {fileID: 0}
  730. m_PrefabInstance: {fileID: 0}
  731. m_PrefabAsset: {fileID: 0}
  732. m_GameObject: {fileID: 3532591105358910234}
  733. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  734. --- !u!23 &3532591105358910239
  735. MeshRenderer:
  736. m_ObjectHideFlags: 0
  737. m_CorrespondingSourceObject: {fileID: 0}
  738. m_PrefabInstance: {fileID: 0}
  739. m_PrefabAsset: {fileID: 0}
  740. m_GameObject: {fileID: 3532591105358910234}
  741. m_Enabled: 1
  742. m_CastShadows: 1
  743. m_ReceiveShadows: 1
  744. m_DynamicOccludee: 1
  745. m_MotionVectors: 1
  746. m_LightProbeUsage: 1
  747. m_ReflectionProbeUsage: 1
  748. m_RenderingLayerMask: 1
  749. m_RendererPriority: 0
  750. m_Materials:
  751. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  752. m_StaticBatchInfo:
  753. firstSubMesh: 0
  754. subMeshCount: 0
  755. m_StaticBatchRoot: {fileID: 0}
  756. m_ProbeAnchor: {fileID: 0}
  757. m_LightProbeVolumeOverride: {fileID: 0}
  758. m_ScaleInLightmap: 0.0001
  759. m_PreserveUVs: 0
  760. m_IgnoreNormalsForChartDetection: 0
  761. m_ImportantGI: 0
  762. m_StitchLightmapSeams: 0
  763. m_SelectedEditorRenderState: 3
  764. m_MinimumChartSize: 4
  765. m_AutoUVMaxDistance: 0.5
  766. m_AutoUVMaxAngle: 89
  767. m_LightmapParameters: {fileID: 0}
  768. m_SortingLayerID: 0
  769. m_SortingLayer: 0
  770. m_SortingOrder: 0
  771. --- !u!65 &3532591105358910232
  772. BoxCollider:
  773. m_ObjectHideFlags: 0
  774. m_CorrespondingSourceObject: {fileID: 0}
  775. m_PrefabInstance: {fileID: 0}
  776. m_PrefabAsset: {fileID: 0}
  777. m_GameObject: {fileID: 3532591105358910234}
  778. m_Material: {fileID: 0}
  779. m_IsTrigger: 0
  780. m_Enabled: 1
  781. serializedVersion: 2
  782. m_Size: {x: 1, y: 1, z: 1}
  783. m_Center: {x: 0, y: 0, z: 0}
  784. --- !u!1 &3532591106002193650
  785. GameObject:
  786. m_ObjectHideFlags: 0
  787. m_CorrespondingSourceObject: {fileID: 0}
  788. m_PrefabInstance: {fileID: 0}
  789. m_PrefabAsset: {fileID: 0}
  790. serializedVersion: 6
  791. m_Component:
  792. - component: {fileID: 3532591106002193649}
  793. - component: {fileID: 3532591106002193654}
  794. - component: {fileID: 3532591106002193655}
  795. - component: {fileID: 3532591106002193648}
  796. m_Layer: 0
  797. m_Name: Cube (7)
  798. m_TagString: Untagged
  799. m_Icon: {fileID: 0}
  800. m_NavMeshLayer: 0
  801. m_StaticEditorFlags: 1
  802. m_IsActive: 1
  803. --- !u!4 &3532591106002193649
  804. Transform:
  805. m_ObjectHideFlags: 0
  806. m_CorrespondingSourceObject: {fileID: 0}
  807. m_PrefabInstance: {fileID: 0}
  808. m_PrefabAsset: {fileID: 0}
  809. m_GameObject: {fileID: 3532591106002193650}
  810. m_LocalRotation: {x: 0.49999997, y: -0.50000006, z: 0.49999854, w: 0.50000155}
  811. m_LocalPosition: {x: 23.7, y: 77.2, z: -13.6}
  812. m_LocalScale: {x: 104.676285, y: 2.5379, z: 95.687454}
  813. m_Children: []
  814. m_Father: {fileID: 2517208660254528753}
  815. m_RootOrder: 8
  816. m_LocalEulerAnglesHint: {x: 90.00001, y: 0, z: 90.00001}
  817. --- !u!33 &3532591106002193654
  818. MeshFilter:
  819. m_ObjectHideFlags: 0
  820. m_CorrespondingSourceObject: {fileID: 0}
  821. m_PrefabInstance: {fileID: 0}
  822. m_PrefabAsset: {fileID: 0}
  823. m_GameObject: {fileID: 3532591106002193650}
  824. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  825. --- !u!23 &3532591106002193655
  826. MeshRenderer:
  827. m_ObjectHideFlags: 0
  828. m_CorrespondingSourceObject: {fileID: 0}
  829. m_PrefabInstance: {fileID: 0}
  830. m_PrefabAsset: {fileID: 0}
  831. m_GameObject: {fileID: 3532591106002193650}
  832. m_Enabled: 1
  833. m_CastShadows: 1
  834. m_ReceiveShadows: 1
  835. m_DynamicOccludee: 1
  836. m_MotionVectors: 1
  837. m_LightProbeUsage: 1
  838. m_ReflectionProbeUsage: 1
  839. m_RenderingLayerMask: 1
  840. m_RendererPriority: 0
  841. m_Materials:
  842. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  843. m_StaticBatchInfo:
  844. firstSubMesh: 0
  845. subMeshCount: 0
  846. m_StaticBatchRoot: {fileID: 0}
  847. m_ProbeAnchor: {fileID: 0}
  848. m_LightProbeVolumeOverride: {fileID: 0}
  849. m_ScaleInLightmap: 0.0001
  850. m_PreserveUVs: 0
  851. m_IgnoreNormalsForChartDetection: 0
  852. m_ImportantGI: 0
  853. m_StitchLightmapSeams: 0
  854. m_SelectedEditorRenderState: 3
  855. m_MinimumChartSize: 4
  856. m_AutoUVMaxDistance: 0.5
  857. m_AutoUVMaxAngle: 89
  858. m_LightmapParameters: {fileID: 0}
  859. m_SortingLayerID: 0
  860. m_SortingLayer: 0
  861. m_SortingOrder: 0
  862. --- !u!65 &3532591106002193648
  863. BoxCollider:
  864. m_ObjectHideFlags: 0
  865. m_CorrespondingSourceObject: {fileID: 0}
  866. m_PrefabInstance: {fileID: 0}
  867. m_PrefabAsset: {fileID: 0}
  868. m_GameObject: {fileID: 3532591106002193650}
  869. m_Material: {fileID: 0}
  870. m_IsTrigger: 0
  871. m_Enabled: 1
  872. serializedVersion: 2
  873. m_Size: {x: 1, y: 1, z: 1}
  874. m_Center: {x: 0, y: 0, z: 0}
  875. --- !u!1001 &833043251
  876. PrefabInstance:
  877. m_ObjectHideFlags: 0
  878. serializedVersion: 2
  879. m_Modification:
  880. m_TransformParent: {fileID: 2517208660254528753}
  881. m_Modifications:
  882. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  883. propertyPath: m_Name
  884. value: wall_s (18)
  885. objectReference: {fileID: 0}
  886. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  887. propertyPath: m_StaticEditorFlags
  888. value: 1
  889. objectReference: {fileID: 0}
  890. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  891. propertyPath: m_RootOrder
  892. value: 28
  893. objectReference: {fileID: 0}
  894. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  895. propertyPath: m_LocalRotation.x
  896. value: -0
  897. objectReference: {fileID: 0}
  898. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  899. propertyPath: m_LocalRotation.y
  900. value: -0.7071068
  901. objectReference: {fileID: 0}
  902. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  903. propertyPath: m_LocalRotation.w
  904. value: 0.7071068
  905. objectReference: {fileID: 0}
  906. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  907. propertyPath: m_LocalPosition.x
  908. value: 22.158
  909. objectReference: {fileID: 0}
  910. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  911. propertyPath: m_LocalPosition.y
  912. value: 0.07
  913. objectReference: {fileID: 0}
  914. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  915. propertyPath: m_LocalPosition.z
  916. value: -66.057
  917. objectReference: {fileID: 0}
  918. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  919. propertyPath: m_LocalScale.x
  920. value: 0.600001
  921. objectReference: {fileID: 0}
  922. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  923. propertyPath: m_LocalScale.y
  924. value: 0.6
  925. objectReference: {fileID: 0}
  926. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  927. propertyPath: m_LocalScale.z
  928. value: -0.37659094
  929. objectReference: {fileID: 0}
  930. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  931. propertyPath: m_LocalEulerAnglesHint.y
  932. value: -90.00001
  933. objectReference: {fileID: 0}
  934. m_RemovedComponents: []
  935. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  936. --- !u!4 &832643507 stripped
  937. Transform:
  938. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  939. type: 3}
  940. m_PrefabInstance: {fileID: 833043251}
  941. m_PrefabAsset: {fileID: 0}
  942. --- !u!1001 &1908751736
  943. PrefabInstance:
  944. m_ObjectHideFlags: 0
  945. serializedVersion: 2
  946. m_Modification:
  947. m_TransformParent: {fileID: 2517208660254528753}
  948. m_Modifications:
  949. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  950. propertyPath: m_Name
  951. value: wall_s (19)
  952. objectReference: {fileID: 0}
  953. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  954. propertyPath: m_StaticEditorFlags
  955. value: 1
  956. objectReference: {fileID: 0}
  957. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  958. propertyPath: m_RootOrder
  959. value: 29
  960. objectReference: {fileID: 0}
  961. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  962. propertyPath: m_LocalRotation.x
  963. value: -0
  964. objectReference: {fileID: 0}
  965. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  966. propertyPath: m_LocalRotation.y
  967. value: -0.7071068
  968. objectReference: {fileID: 0}
  969. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  970. propertyPath: m_LocalRotation.w
  971. value: 0.7071068
  972. objectReference: {fileID: 0}
  973. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  974. propertyPath: m_LocalPosition.x
  975. value: 25.64
  976. objectReference: {fileID: 0}
  977. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  978. propertyPath: m_LocalPosition.y
  979. value: 17.16
  980. objectReference: {fileID: 0}
  981. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  982. propertyPath: m_LocalPosition.z
  983. value: -66.057
  984. objectReference: {fileID: 0}
  985. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  986. propertyPath: m_LocalScale.x
  987. value: 0.600001
  988. objectReference: {fileID: 0}
  989. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  990. propertyPath: m_LocalScale.y
  991. value: 0.6
  992. objectReference: {fileID: 0}
  993. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  994. propertyPath: m_LocalScale.z
  995. value: -0.37659094
  996. objectReference: {fileID: 0}
  997. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  998. propertyPath: m_LocalEulerAnglesHint.y
  999. value: -90.00001
  1000. objectReference: {fileID: 0}
  1001. m_RemovedComponents: []
  1002. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1003. --- !u!4 &1908615160 stripped
  1004. Transform:
  1005. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1006. type: 3}
  1007. m_PrefabInstance: {fileID: 1908751736}
  1008. m_PrefabAsset: {fileID: 0}
  1009. --- !u!1001 &3532591104044805956
  1010. PrefabInstance:
  1011. m_ObjectHideFlags: 0
  1012. serializedVersion: 2
  1013. m_Modification:
  1014. m_TransformParent: {fileID: 2517208660254528753}
  1015. m_Modifications:
  1016. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1017. propertyPath: m_Name
  1018. value: wall_s (7)
  1019. objectReference: {fileID: 0}
  1020. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1021. propertyPath: m_StaticEditorFlags
  1022. value: 1
  1023. objectReference: {fileID: 0}
  1024. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1025. propertyPath: m_LocalPosition.x
  1026. value: 22.158
  1027. objectReference: {fileID: 0}
  1028. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1029. propertyPath: m_LocalPosition.y
  1030. value: 0.07000013
  1031. objectReference: {fileID: 0}
  1032. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1033. propertyPath: m_LocalPosition.z
  1034. value: 15.05
  1035. objectReference: {fileID: 0}
  1036. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1037. propertyPath: m_LocalRotation.x
  1038. value: -0
  1039. objectReference: {fileID: 0}
  1040. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1041. propertyPath: m_LocalRotation.y
  1042. value: -0.7071068
  1043. objectReference: {fileID: 0}
  1044. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1045. propertyPath: m_LocalRotation.z
  1046. value: -0
  1047. objectReference: {fileID: 0}
  1048. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1049. propertyPath: m_LocalRotation.w
  1050. value: 0.7071068
  1051. objectReference: {fileID: 0}
  1052. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1053. propertyPath: m_RootOrder
  1054. value: 17
  1055. objectReference: {fileID: 0}
  1056. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1057. propertyPath: m_LocalEulerAnglesHint.x
  1058. value: 0
  1059. objectReference: {fileID: 0}
  1060. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1061. propertyPath: m_LocalEulerAnglesHint.y
  1062. value: -90.00001
  1063. objectReference: {fileID: 0}
  1064. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1065. propertyPath: m_LocalEulerAnglesHint.z
  1066. value: 0
  1067. objectReference: {fileID: 0}
  1068. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1069. propertyPath: m_LocalScale.x
  1070. value: 0.600001
  1071. objectReference: {fileID: 0}
  1072. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1073. propertyPath: m_LocalScale.y
  1074. value: 0.6
  1075. objectReference: {fileID: 0}
  1076. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1077. propertyPath: m_LocalScale.z
  1078. value: -0.37659094
  1079. objectReference: {fileID: 0}
  1080. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1081. propertyPath: m_ScaleInLightmap
  1082. value: 0.0001
  1083. objectReference: {fileID: 0}
  1084. m_RemovedComponents: []
  1085. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1086. --- !u!4 &3532591104044938692 stripped
  1087. Transform:
  1088. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1089. type: 3}
  1090. m_PrefabInstance: {fileID: 3532591104044805956}
  1091. m_PrefabAsset: {fileID: 0}
  1092. --- !u!1001 &3532591104141546530
  1093. PrefabInstance:
  1094. m_ObjectHideFlags: 0
  1095. serializedVersion: 2
  1096. m_Modification:
  1097. m_TransformParent: {fileID: 2517208660254528753}
  1098. m_Modifications:
  1099. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1100. propertyPath: m_Name
  1101. value: wall_s (3)
  1102. objectReference: {fileID: 0}
  1103. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1104. propertyPath: m_StaticEditorFlags
  1105. value: 1
  1106. objectReference: {fileID: 0}
  1107. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1108. propertyPath: m_LocalPosition.x
  1109. value: 22.158
  1110. objectReference: {fileID: 0}
  1111. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1112. propertyPath: m_LocalPosition.y
  1113. value: 0.07000013
  1114. objectReference: {fileID: 0}
  1115. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1116. propertyPath: m_LocalPosition.z
  1117. value: -25.84
  1118. objectReference: {fileID: 0}
  1119. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1120. propertyPath: m_LocalRotation.x
  1121. value: -0
  1122. objectReference: {fileID: 0}
  1123. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1124. propertyPath: m_LocalRotation.y
  1125. value: -0.7071068
  1126. objectReference: {fileID: 0}
  1127. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1128. propertyPath: m_LocalRotation.z
  1129. value: -0
  1130. objectReference: {fileID: 0}
  1131. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1132. propertyPath: m_LocalRotation.w
  1133. value: 0.7071068
  1134. objectReference: {fileID: 0}
  1135. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1136. propertyPath: m_RootOrder
  1137. value: 13
  1138. objectReference: {fileID: 0}
  1139. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1140. propertyPath: m_LocalEulerAnglesHint.x
  1141. value: 0
  1142. objectReference: {fileID: 0}
  1143. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1144. propertyPath: m_LocalEulerAnglesHint.y
  1145. value: -90.00001
  1146. objectReference: {fileID: 0}
  1147. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1148. propertyPath: m_LocalEulerAnglesHint.z
  1149. value: 0
  1150. objectReference: {fileID: 0}
  1151. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1152. propertyPath: m_LocalScale.x
  1153. value: 0.600001
  1154. objectReference: {fileID: 0}
  1155. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1156. propertyPath: m_LocalScale.y
  1157. value: 0.6
  1158. objectReference: {fileID: 0}
  1159. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1160. propertyPath: m_LocalScale.z
  1161. value: -0.37659094
  1162. objectReference: {fileID: 0}
  1163. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1164. propertyPath: m_ScaleInLightmap
  1165. value: 0.0001
  1166. objectReference: {fileID: 0}
  1167. m_RemovedComponents: []
  1168. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1169. --- !u!4 &3532591104141151906 stripped
  1170. Transform:
  1171. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1172. type: 3}
  1173. m_PrefabInstance: {fileID: 3532591104141546530}
  1174. m_PrefabAsset: {fileID: 0}
  1175. --- !u!1001 &3532591104226514611
  1176. PrefabInstance:
  1177. m_ObjectHideFlags: 0
  1178. serializedVersion: 2
  1179. m_Modification:
  1180. m_TransformParent: {fileID: 2517208660254528753}
  1181. m_Modifications:
  1182. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1183. propertyPath: m_Name
  1184. value: wall_s (16)
  1185. objectReference: {fileID: 0}
  1186. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1187. propertyPath: m_StaticEditorFlags
  1188. value: 1
  1189. objectReference: {fileID: 0}
  1190. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1191. propertyPath: m_LocalPosition.x
  1192. value: 25.640001
  1193. objectReference: {fileID: 0}
  1194. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1195. propertyPath: m_LocalPosition.y
  1196. value: 17.16
  1197. objectReference: {fileID: 0}
  1198. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1199. propertyPath: m_LocalPosition.z
  1200. value: 15.05
  1201. objectReference: {fileID: 0}
  1202. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1203. propertyPath: m_LocalRotation.x
  1204. value: -0
  1205. objectReference: {fileID: 0}
  1206. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1207. propertyPath: m_LocalRotation.y
  1208. value: -0.7071068
  1209. objectReference: {fileID: 0}
  1210. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1211. propertyPath: m_LocalRotation.z
  1212. value: -0
  1213. objectReference: {fileID: 0}
  1214. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1215. propertyPath: m_LocalRotation.w
  1216. value: 0.7071068
  1217. objectReference: {fileID: 0}
  1218. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1219. propertyPath: m_RootOrder
  1220. value: 26
  1221. objectReference: {fileID: 0}
  1222. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1223. propertyPath: m_LocalEulerAnglesHint.x
  1224. value: 0
  1225. objectReference: {fileID: 0}
  1226. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1227. propertyPath: m_LocalEulerAnglesHint.y
  1228. value: -90.00001
  1229. objectReference: {fileID: 0}
  1230. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1231. propertyPath: m_LocalEulerAnglesHint.z
  1232. value: 0
  1233. objectReference: {fileID: 0}
  1234. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1235. propertyPath: m_LocalScale.x
  1236. value: 0.600001
  1237. objectReference: {fileID: 0}
  1238. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1239. propertyPath: m_LocalScale.y
  1240. value: 0.6
  1241. objectReference: {fileID: 0}
  1242. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1243. propertyPath: m_LocalScale.z
  1244. value: -0.37659094
  1245. objectReference: {fileID: 0}
  1246. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1247. propertyPath: m_ScaleInLightmap
  1248. value: 0.0001
  1249. objectReference: {fileID: 0}
  1250. m_RemovedComponents: []
  1251. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1252. --- !u!4 &3532591104226905139 stripped
  1253. Transform:
  1254. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1255. type: 3}
  1256. m_PrefabInstance: {fileID: 3532591104226514611}
  1257. m_PrefabAsset: {fileID: 0}
  1258. --- !u!1001 &3532591104428797877
  1259. PrefabInstance:
  1260. m_ObjectHideFlags: 0
  1261. serializedVersion: 2
  1262. m_Modification:
  1263. m_TransformParent: {fileID: 2517208660254528753}
  1264. m_Modifications:
  1265. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1266. propertyPath: m_Name
  1267. value: wall_s (6)
  1268. objectReference: {fileID: 0}
  1269. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1270. propertyPath: m_StaticEditorFlags
  1271. value: 1
  1272. objectReference: {fileID: 0}
  1273. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1274. propertyPath: m_LocalPosition.x
  1275. value: 22.158
  1276. objectReference: {fileID: 0}
  1277. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1278. propertyPath: m_LocalPosition.y
  1279. value: 0.07000013
  1280. objectReference: {fileID: 0}
  1281. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1282. propertyPath: m_LocalPosition.z
  1283. value: 4.83
  1284. objectReference: {fileID: 0}
  1285. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1286. propertyPath: m_LocalRotation.x
  1287. value: -0
  1288. objectReference: {fileID: 0}
  1289. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1290. propertyPath: m_LocalRotation.y
  1291. value: -0.7071068
  1292. objectReference: {fileID: 0}
  1293. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1294. propertyPath: m_LocalRotation.z
  1295. value: -0
  1296. objectReference: {fileID: 0}
  1297. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1298. propertyPath: m_LocalRotation.w
  1299. value: 0.7071068
  1300. objectReference: {fileID: 0}
  1301. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1302. propertyPath: m_RootOrder
  1303. value: 16
  1304. objectReference: {fileID: 0}
  1305. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1306. propertyPath: m_LocalEulerAnglesHint.x
  1307. value: 0
  1308. objectReference: {fileID: 0}
  1309. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1310. propertyPath: m_LocalEulerAnglesHint.y
  1311. value: -90.00001
  1312. objectReference: {fileID: 0}
  1313. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1314. propertyPath: m_LocalEulerAnglesHint.z
  1315. value: 0
  1316. objectReference: {fileID: 0}
  1317. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1318. propertyPath: m_LocalScale.x
  1319. value: 0.600001
  1320. objectReference: {fileID: 0}
  1321. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1322. propertyPath: m_LocalScale.y
  1323. value: 0.6
  1324. objectReference: {fileID: 0}
  1325. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1326. propertyPath: m_LocalScale.z
  1327. value: -0.37659094
  1328. objectReference: {fileID: 0}
  1329. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1330. propertyPath: m_ScaleInLightmap
  1331. value: 0.0001
  1332. objectReference: {fileID: 0}
  1333. m_RemovedComponents: []
  1334. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1335. --- !u!4 &3532591104428406069 stripped
  1336. Transform:
  1337. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1338. type: 3}
  1339. m_PrefabInstance: {fileID: 3532591104428797877}
  1340. m_PrefabAsset: {fileID: 0}
  1341. --- !u!1001 &3532591104440382925
  1342. PrefabInstance:
  1343. m_ObjectHideFlags: 0
  1344. serializedVersion: 2
  1345. m_Modification:
  1346. m_TransformParent: {fileID: 2517208660254528753}
  1347. m_Modifications:
  1348. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1349. propertyPath: m_Name
  1350. value: wall_s (1)
  1351. objectReference: {fileID: 0}
  1352. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1353. propertyPath: m_StaticEditorFlags
  1354. value: 1
  1355. objectReference: {fileID: 0}
  1356. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1357. propertyPath: m_LocalPosition.x
  1358. value: 22.158
  1359. objectReference: {fileID: 0}
  1360. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1361. propertyPath: m_LocalPosition.y
  1362. value: 0.07000013
  1363. objectReference: {fileID: 0}
  1364. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1365. propertyPath: m_LocalPosition.z
  1366. value: -45.78
  1367. objectReference: {fileID: 0}
  1368. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1369. propertyPath: m_LocalRotation.x
  1370. value: -0
  1371. objectReference: {fileID: 0}
  1372. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1373. propertyPath: m_LocalRotation.y
  1374. value: -0.7071068
  1375. objectReference: {fileID: 0}
  1376. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1377. propertyPath: m_LocalRotation.z
  1378. value: -0
  1379. objectReference: {fileID: 0}
  1380. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1381. propertyPath: m_LocalRotation.w
  1382. value: 0.7071068
  1383. objectReference: {fileID: 0}
  1384. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1385. propertyPath: m_RootOrder
  1386. value: 11
  1387. objectReference: {fileID: 0}
  1388. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1389. propertyPath: m_LocalEulerAnglesHint.x
  1390. value: 0
  1391. objectReference: {fileID: 0}
  1392. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1393. propertyPath: m_LocalEulerAnglesHint.y
  1394. value: -90.00001
  1395. objectReference: {fileID: 0}
  1396. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1397. propertyPath: m_LocalEulerAnglesHint.z
  1398. value: 0
  1399. objectReference: {fileID: 0}
  1400. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1401. propertyPath: m_LocalScale.x
  1402. value: 0.600001
  1403. objectReference: {fileID: 0}
  1404. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1405. propertyPath: m_LocalScale.y
  1406. value: 0.6
  1407. objectReference: {fileID: 0}
  1408. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1409. propertyPath: m_LocalScale.z
  1410. value: -0.37659094
  1411. objectReference: {fileID: 0}
  1412. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1413. propertyPath: m_ScaleInLightmap
  1414. value: 0.0001
  1415. objectReference: {fileID: 0}
  1416. m_RemovedComponents: []
  1417. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1418. --- !u!4 &3532591104439988045 stripped
  1419. Transform:
  1420. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1421. type: 3}
  1422. m_PrefabInstance: {fileID: 3532591104440382925}
  1423. m_PrefabAsset: {fileID: 0}
  1424. --- !u!1001 &3532591104658019339
  1425. PrefabInstance:
  1426. m_ObjectHideFlags: 0
  1427. serializedVersion: 2
  1428. m_Modification:
  1429. m_TransformParent: {fileID: 2517208660254528753}
  1430. m_Modifications:
  1431. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1432. propertyPath: m_Name
  1433. value: wall_s (14)
  1434. objectReference: {fileID: 0}
  1435. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1436. propertyPath: m_StaticEditorFlags
  1437. value: 1
  1438. objectReference: {fileID: 0}
  1439. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1440. propertyPath: m_LocalPosition.x
  1441. value: 25.640001
  1442. objectReference: {fileID: 0}
  1443. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1444. propertyPath: m_LocalPosition.y
  1445. value: 17.16
  1446. objectReference: {fileID: 0}
  1447. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1448. propertyPath: m_LocalPosition.z
  1449. value: -5.4700003
  1450. objectReference: {fileID: 0}
  1451. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1452. propertyPath: m_LocalRotation.x
  1453. value: -0
  1454. objectReference: {fileID: 0}
  1455. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1456. propertyPath: m_LocalRotation.y
  1457. value: -0.7071068
  1458. objectReference: {fileID: 0}
  1459. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1460. propertyPath: m_LocalRotation.z
  1461. value: -0
  1462. objectReference: {fileID: 0}
  1463. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1464. propertyPath: m_LocalRotation.w
  1465. value: 0.7071068
  1466. objectReference: {fileID: 0}
  1467. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1468. propertyPath: m_RootOrder
  1469. value: 24
  1470. objectReference: {fileID: 0}
  1471. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1472. propertyPath: m_LocalEulerAnglesHint.x
  1473. value: 0
  1474. objectReference: {fileID: 0}
  1475. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1476. propertyPath: m_LocalEulerAnglesHint.y
  1477. value: -90.00001
  1478. objectReference: {fileID: 0}
  1479. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1480. propertyPath: m_LocalEulerAnglesHint.z
  1481. value: 0
  1482. objectReference: {fileID: 0}
  1483. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1484. propertyPath: m_LocalScale.x
  1485. value: 0.600001
  1486. objectReference: {fileID: 0}
  1487. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1488. propertyPath: m_LocalScale.y
  1489. value: 0.6
  1490. objectReference: {fileID: 0}
  1491. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1492. propertyPath: m_LocalScale.z
  1493. value: -0.37659094
  1494. objectReference: {fileID: 0}
  1495. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1496. propertyPath: m_ScaleInLightmap
  1497. value: 0.0001
  1498. objectReference: {fileID: 0}
  1499. m_RemovedComponents: []
  1500. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1501. --- !u!4 &3532591104658411147 stripped
  1502. Transform:
  1503. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1504. type: 3}
  1505. m_PrefabInstance: {fileID: 3532591104658019339}
  1506. m_PrefabAsset: {fileID: 0}
  1507. --- !u!1001 &3532591104874448620
  1508. PrefabInstance:
  1509. m_ObjectHideFlags: 0
  1510. serializedVersion: 2
  1511. m_Modification:
  1512. m_TransformParent: {fileID: 2517208660254528753}
  1513. m_Modifications:
  1514. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1515. propertyPath: m_Name
  1516. value: wall_s (13)
  1517. objectReference: {fileID: 0}
  1518. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1519. propertyPath: m_StaticEditorFlags
  1520. value: 1
  1521. objectReference: {fileID: 0}
  1522. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1523. propertyPath: m_LocalPosition.x
  1524. value: 25.640001
  1525. objectReference: {fileID: 0}
  1526. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1527. propertyPath: m_LocalPosition.y
  1528. value: 17.16
  1529. objectReference: {fileID: 0}
  1530. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1531. propertyPath: m_LocalPosition.z
  1532. value: -15.75
  1533. objectReference: {fileID: 0}
  1534. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1535. propertyPath: m_LocalRotation.x
  1536. value: -0
  1537. objectReference: {fileID: 0}
  1538. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1539. propertyPath: m_LocalRotation.y
  1540. value: -0.7071068
  1541. objectReference: {fileID: 0}
  1542. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1543. propertyPath: m_LocalRotation.z
  1544. value: -0
  1545. objectReference: {fileID: 0}
  1546. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1547. propertyPath: m_LocalRotation.w
  1548. value: 0.7071068
  1549. objectReference: {fileID: 0}
  1550. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1551. propertyPath: m_RootOrder
  1552. value: 23
  1553. objectReference: {fileID: 0}
  1554. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1555. propertyPath: m_LocalEulerAnglesHint.x
  1556. value: 0
  1557. objectReference: {fileID: 0}
  1558. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1559. propertyPath: m_LocalEulerAnglesHint.y
  1560. value: -90.00001
  1561. objectReference: {fileID: 0}
  1562. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1563. propertyPath: m_LocalEulerAnglesHint.z
  1564. value: 0
  1565. objectReference: {fileID: 0}
  1566. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1567. propertyPath: m_LocalScale.x
  1568. value: 0.600001
  1569. objectReference: {fileID: 0}
  1570. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1571. propertyPath: m_LocalScale.y
  1572. value: 0.6
  1573. objectReference: {fileID: 0}
  1574. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1575. propertyPath: m_LocalScale.z
  1576. value: -0.37659094
  1577. objectReference: {fileID: 0}
  1578. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1579. propertyPath: m_ScaleInLightmap
  1580. value: 0.0001
  1581. objectReference: {fileID: 0}
  1582. m_RemovedComponents: []
  1583. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1584. --- !u!4 &3532591104874060908 stripped
  1585. Transform:
  1586. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1587. type: 3}
  1588. m_PrefabInstance: {fileID: 3532591104874448620}
  1589. m_PrefabAsset: {fileID: 0}
  1590. --- !u!1001 &3532591105073950298
  1591. PrefabInstance:
  1592. m_ObjectHideFlags: 0
  1593. serializedVersion: 2
  1594. m_Modification:
  1595. m_TransformParent: {fileID: 2517208660254528753}
  1596. m_Modifications:
  1597. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1598. propertyPath: m_Name
  1599. value: wall_s (10)
  1600. objectReference: {fileID: 0}
  1601. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1602. propertyPath: m_StaticEditorFlags
  1603. value: 1
  1604. objectReference: {fileID: 0}
  1605. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1606. propertyPath: m_LocalPosition.x
  1607. value: 25.640001
  1608. objectReference: {fileID: 0}
  1609. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1610. propertyPath: m_LocalPosition.y
  1611. value: 17.16
  1612. objectReference: {fileID: 0}
  1613. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1614. propertyPath: m_LocalPosition.z
  1615. value: -45.78
  1616. objectReference: {fileID: 0}
  1617. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1618. propertyPath: m_LocalRotation.x
  1619. value: -0
  1620. objectReference: {fileID: 0}
  1621. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1622. propertyPath: m_LocalRotation.y
  1623. value: -0.7071068
  1624. objectReference: {fileID: 0}
  1625. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1626. propertyPath: m_LocalRotation.z
  1627. value: -0
  1628. objectReference: {fileID: 0}
  1629. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1630. propertyPath: m_LocalRotation.w
  1631. value: 0.7071068
  1632. objectReference: {fileID: 0}
  1633. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1634. propertyPath: m_RootOrder
  1635. value: 20
  1636. objectReference: {fileID: 0}
  1637. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1638. propertyPath: m_LocalEulerAnglesHint.x
  1639. value: 0
  1640. objectReference: {fileID: 0}
  1641. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1642. propertyPath: m_LocalEulerAnglesHint.y
  1643. value: -90.00001
  1644. objectReference: {fileID: 0}
  1645. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1646. propertyPath: m_LocalEulerAnglesHint.z
  1647. value: 0
  1648. objectReference: {fileID: 0}
  1649. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1650. propertyPath: m_LocalScale.x
  1651. value: 0.600001
  1652. objectReference: {fileID: 0}
  1653. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1654. propertyPath: m_LocalScale.y
  1655. value: 0.6
  1656. objectReference: {fileID: 0}
  1657. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1658. propertyPath: m_LocalScale.z
  1659. value: -0.37659094
  1660. objectReference: {fileID: 0}
  1661. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1662. propertyPath: m_ScaleInLightmap
  1663. value: 0.0001
  1664. objectReference: {fileID: 0}
  1665. m_RemovedComponents: []
  1666. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1667. --- !u!4 &3532591105074083034 stripped
  1668. Transform:
  1669. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1670. type: 3}
  1671. m_PrefabInstance: {fileID: 3532591105073950298}
  1672. m_PrefabAsset: {fileID: 0}
  1673. --- !u!1001 &3532591105245094206
  1674. PrefabInstance:
  1675. m_ObjectHideFlags: 0
  1676. serializedVersion: 2
  1677. m_Modification:
  1678. m_TransformParent: {fileID: 2517208660254528753}
  1679. m_Modifications:
  1680. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1681. propertyPath: m_Name
  1682. value: wall_s (9)
  1683. objectReference: {fileID: 0}
  1684. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1685. propertyPath: m_StaticEditorFlags
  1686. value: 1
  1687. objectReference: {fileID: 0}
  1688. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1689. propertyPath: m_LocalPosition.x
  1690. value: 25.640001
  1691. objectReference: {fileID: 0}
  1692. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1693. propertyPath: m_LocalPosition.y
  1694. value: 17.16
  1695. objectReference: {fileID: 0}
  1696. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1697. propertyPath: m_LocalPosition.z
  1698. value: -55.77
  1699. objectReference: {fileID: 0}
  1700. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1701. propertyPath: m_LocalRotation.x
  1702. value: -0
  1703. objectReference: {fileID: 0}
  1704. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1705. propertyPath: m_LocalRotation.y
  1706. value: -0.7071068
  1707. objectReference: {fileID: 0}
  1708. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1709. propertyPath: m_LocalRotation.z
  1710. value: -0
  1711. objectReference: {fileID: 0}
  1712. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1713. propertyPath: m_LocalRotation.w
  1714. value: 0.7071068
  1715. objectReference: {fileID: 0}
  1716. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1717. propertyPath: m_RootOrder
  1718. value: 19
  1719. objectReference: {fileID: 0}
  1720. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1721. propertyPath: m_LocalEulerAnglesHint.x
  1722. value: 0
  1723. objectReference: {fileID: 0}
  1724. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1725. propertyPath: m_LocalEulerAnglesHint.y
  1726. value: -90.00001
  1727. objectReference: {fileID: 0}
  1728. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1729. propertyPath: m_LocalEulerAnglesHint.z
  1730. value: 0
  1731. objectReference: {fileID: 0}
  1732. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1733. propertyPath: m_LocalScale.x
  1734. value: 0.600001
  1735. objectReference: {fileID: 0}
  1736. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1737. propertyPath: m_LocalScale.y
  1738. value: 0.6
  1739. objectReference: {fileID: 0}
  1740. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1741. propertyPath: m_LocalScale.z
  1742. value: -0.37659094
  1743. objectReference: {fileID: 0}
  1744. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1745. propertyPath: m_ScaleInLightmap
  1746. value: 0.0001
  1747. objectReference: {fileID: 0}
  1748. m_RemovedComponents: []
  1749. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1750. --- !u!4 &3532591105244707774 stripped
  1751. Transform:
  1752. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1753. type: 3}
  1754. m_PrefabInstance: {fileID: 3532591105245094206}
  1755. m_PrefabAsset: {fileID: 0}
  1756. --- !u!1001 &3532591105249583075
  1757. PrefabInstance:
  1758. m_ObjectHideFlags: 0
  1759. serializedVersion: 2
  1760. m_Modification:
  1761. m_TransformParent: {fileID: 2517208660254528753}
  1762. m_Modifications:
  1763. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1764. propertyPath: m_Name
  1765. value: wall_s
  1766. objectReference: {fileID: 0}
  1767. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1768. propertyPath: m_StaticEditorFlags
  1769. value: 1
  1770. objectReference: {fileID: 0}
  1771. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1772. propertyPath: m_LocalPosition.x
  1773. value: 22.158
  1774. objectReference: {fileID: 0}
  1775. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1776. propertyPath: m_LocalPosition.y
  1777. value: 0.07
  1778. objectReference: {fileID: 0}
  1779. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1780. propertyPath: m_LocalPosition.z
  1781. value: -55.77
  1782. objectReference: {fileID: 0}
  1783. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1784. propertyPath: m_LocalRotation.x
  1785. value: -0
  1786. objectReference: {fileID: 0}
  1787. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1788. propertyPath: m_LocalRotation.y
  1789. value: -0.7071068
  1790. objectReference: {fileID: 0}
  1791. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1792. propertyPath: m_LocalRotation.z
  1793. value: -0
  1794. objectReference: {fileID: 0}
  1795. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1796. propertyPath: m_LocalRotation.w
  1797. value: 0.7071068
  1798. objectReference: {fileID: 0}
  1799. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1800. propertyPath: m_RootOrder
  1801. value: 10
  1802. objectReference: {fileID: 0}
  1803. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1804. propertyPath: m_LocalEulerAnglesHint.x
  1805. value: 0
  1806. objectReference: {fileID: 0}
  1807. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1808. propertyPath: m_LocalEulerAnglesHint.y
  1809. value: -90.00001
  1810. objectReference: {fileID: 0}
  1811. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1812. propertyPath: m_LocalEulerAnglesHint.z
  1813. value: 0
  1814. objectReference: {fileID: 0}
  1815. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1816. propertyPath: m_LocalScale.x
  1817. value: 0.600001
  1818. objectReference: {fileID: 0}
  1819. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1820. propertyPath: m_LocalScale.y
  1821. value: 0.6
  1822. objectReference: {fileID: 0}
  1823. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1824. propertyPath: m_LocalScale.z
  1825. value: -0.37659094
  1826. objectReference: {fileID: 0}
  1827. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1828. propertyPath: m_ScaleInLightmap
  1829. value: 0.0001
  1830. objectReference: {fileID: 0}
  1831. m_RemovedComponents: []
  1832. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1833. --- !u!4 &3532591105249707363 stripped
  1834. Transform:
  1835. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1836. type: 3}
  1837. m_PrefabInstance: {fileID: 3532591105249583075}
  1838. m_PrefabAsset: {fileID: 0}
  1839. --- !u!1001 &3532591105314071426
  1840. PrefabInstance:
  1841. m_ObjectHideFlags: 0
  1842. serializedVersion: 2
  1843. m_Modification:
  1844. m_TransformParent: {fileID: 2517208660254528753}
  1845. m_Modifications:
  1846. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1847. propertyPath: m_Name
  1848. value: wall_s (8)
  1849. objectReference: {fileID: 0}
  1850. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1851. propertyPath: m_StaticEditorFlags
  1852. value: 1
  1853. objectReference: {fileID: 0}
  1854. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1855. propertyPath: m_LocalPosition.x
  1856. value: 22.158
  1857. objectReference: {fileID: 0}
  1858. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1859. propertyPath: m_LocalPosition.y
  1860. value: 0.07000013
  1861. objectReference: {fileID: 0}
  1862. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1863. propertyPath: m_LocalPosition.z
  1864. value: 24.369999
  1865. objectReference: {fileID: 0}
  1866. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1867. propertyPath: m_LocalRotation.x
  1868. value: -0
  1869. objectReference: {fileID: 0}
  1870. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1871. propertyPath: m_LocalRotation.y
  1872. value: -0.7071068
  1873. objectReference: {fileID: 0}
  1874. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1875. propertyPath: m_LocalRotation.z
  1876. value: -0
  1877. objectReference: {fileID: 0}
  1878. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1879. propertyPath: m_LocalRotation.w
  1880. value: 0.7071068
  1881. objectReference: {fileID: 0}
  1882. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1883. propertyPath: m_RootOrder
  1884. value: 18
  1885. objectReference: {fileID: 0}
  1886. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1887. propertyPath: m_LocalEulerAnglesHint.x
  1888. value: 0
  1889. objectReference: {fileID: 0}
  1890. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1891. propertyPath: m_LocalEulerAnglesHint.y
  1892. value: -90.00001
  1893. objectReference: {fileID: 0}
  1894. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1895. propertyPath: m_LocalEulerAnglesHint.z
  1896. value: 0
  1897. objectReference: {fileID: 0}
  1898. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1899. propertyPath: m_LocalScale.x
  1900. value: 0.600001
  1901. objectReference: {fileID: 0}
  1902. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1903. propertyPath: m_LocalScale.y
  1904. value: 0.6
  1905. objectReference: {fileID: 0}
  1906. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1907. propertyPath: m_LocalScale.z
  1908. value: -0.37659094
  1909. objectReference: {fileID: 0}
  1910. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1911. propertyPath: m_ScaleInLightmap
  1912. value: 0.0001
  1913. objectReference: {fileID: 0}
  1914. m_RemovedComponents: []
  1915. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1916. --- !u!4 &3532591105314208002 stripped
  1917. Transform:
  1918. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  1919. type: 3}
  1920. m_PrefabInstance: {fileID: 3532591105314071426}
  1921. m_PrefabAsset: {fileID: 0}
  1922. --- !u!1001 &3532591105427927994
  1923. PrefabInstance:
  1924. m_ObjectHideFlags: 0
  1925. serializedVersion: 2
  1926. m_Modification:
  1927. m_TransformParent: {fileID: 2517208660254528753}
  1928. m_Modifications:
  1929. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1930. propertyPath: m_Name
  1931. value: wall_s (2)
  1932. objectReference: {fileID: 0}
  1933. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1934. propertyPath: m_StaticEditorFlags
  1935. value: 1
  1936. objectReference: {fileID: 0}
  1937. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1938. propertyPath: m_LocalPosition.x
  1939. value: 22.158
  1940. objectReference: {fileID: 0}
  1941. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1942. propertyPath: m_LocalPosition.y
  1943. value: 0.07000013
  1944. objectReference: {fileID: 0}
  1945. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1946. propertyPath: m_LocalPosition.z
  1947. value: -35.76
  1948. objectReference: {fileID: 0}
  1949. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1950. propertyPath: m_LocalRotation.x
  1951. value: -0
  1952. objectReference: {fileID: 0}
  1953. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1954. propertyPath: m_LocalRotation.y
  1955. value: -0.7071068
  1956. objectReference: {fileID: 0}
  1957. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1958. propertyPath: m_LocalRotation.z
  1959. value: -0
  1960. objectReference: {fileID: 0}
  1961. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1962. propertyPath: m_LocalRotation.w
  1963. value: 0.7071068
  1964. objectReference: {fileID: 0}
  1965. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1966. propertyPath: m_RootOrder
  1967. value: 12
  1968. objectReference: {fileID: 0}
  1969. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1970. propertyPath: m_LocalEulerAnglesHint.x
  1971. value: 0
  1972. objectReference: {fileID: 0}
  1973. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1974. propertyPath: m_LocalEulerAnglesHint.y
  1975. value: -90.00001
  1976. objectReference: {fileID: 0}
  1977. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1978. propertyPath: m_LocalEulerAnglesHint.z
  1979. value: 0
  1980. objectReference: {fileID: 0}
  1981. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1982. propertyPath: m_LocalScale.x
  1983. value: 0.600001
  1984. objectReference: {fileID: 0}
  1985. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1986. propertyPath: m_LocalScale.y
  1987. value: 0.6
  1988. objectReference: {fileID: 0}
  1989. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1990. propertyPath: m_LocalScale.z
  1991. value: -0.37659094
  1992. objectReference: {fileID: 0}
  1993. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1994. propertyPath: m_ScaleInLightmap
  1995. value: 0.0001
  1996. objectReference: {fileID: 0}
  1997. m_RemovedComponents: []
  1998. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  1999. --- !u!4 &3532591105427794234 stripped
  2000. Transform:
  2001. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  2002. type: 3}
  2003. m_PrefabInstance: {fileID: 3532591105427927994}
  2004. m_PrefabAsset: {fileID: 0}
  2005. --- !u!1001 &3532591105588982444
  2006. PrefabInstance:
  2007. m_ObjectHideFlags: 0
  2008. serializedVersion: 2
  2009. m_Modification:
  2010. m_TransformParent: {fileID: 2517208660254528753}
  2011. m_Modifications:
  2012. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2013. propertyPath: m_Name
  2014. value: wall_s (5)
  2015. objectReference: {fileID: 0}
  2016. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2017. propertyPath: m_StaticEditorFlags
  2018. value: 1
  2019. objectReference: {fileID: 0}
  2020. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2021. propertyPath: m_LocalPosition.x
  2022. value: 22.158
  2023. objectReference: {fileID: 0}
  2024. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2025. propertyPath: m_LocalPosition.y
  2026. value: 0.07000013
  2027. objectReference: {fileID: 0}
  2028. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2029. propertyPath: m_LocalPosition.z
  2030. value: -5.4700003
  2031. objectReference: {fileID: 0}
  2032. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2033. propertyPath: m_LocalRotation.x
  2034. value: -0
  2035. objectReference: {fileID: 0}
  2036. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2037. propertyPath: m_LocalRotation.y
  2038. value: -0.7071068
  2039. objectReference: {fileID: 0}
  2040. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2041. propertyPath: m_LocalRotation.z
  2042. value: -0
  2043. objectReference: {fileID: 0}
  2044. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2045. propertyPath: m_LocalRotation.w
  2046. value: 0.7071068
  2047. objectReference: {fileID: 0}
  2048. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2049. propertyPath: m_RootOrder
  2050. value: 15
  2051. objectReference: {fileID: 0}
  2052. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2053. propertyPath: m_LocalEulerAnglesHint.x
  2054. value: 0
  2055. objectReference: {fileID: 0}
  2056. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2057. propertyPath: m_LocalEulerAnglesHint.y
  2058. value: -90.00001
  2059. objectReference: {fileID: 0}
  2060. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2061. propertyPath: m_LocalEulerAnglesHint.z
  2062. value: 0
  2063. objectReference: {fileID: 0}
  2064. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2065. propertyPath: m_LocalScale.x
  2066. value: 0.600001
  2067. objectReference: {fileID: 0}
  2068. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2069. propertyPath: m_LocalScale.y
  2070. value: 0.6
  2071. objectReference: {fileID: 0}
  2072. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2073. propertyPath: m_LocalScale.z
  2074. value: -0.37659094
  2075. objectReference: {fileID: 0}
  2076. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2077. propertyPath: m_ScaleInLightmap
  2078. value: 0.0001
  2079. objectReference: {fileID: 0}
  2080. m_RemovedComponents: []
  2081. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2082. --- !u!4 &3532591105588848684 stripped
  2083. Transform:
  2084. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  2085. type: 3}
  2086. m_PrefabInstance: {fileID: 3532591105588982444}
  2087. m_PrefabAsset: {fileID: 0}
  2088. --- !u!1001 &3532591105658287599
  2089. PrefabInstance:
  2090. m_ObjectHideFlags: 0
  2091. serializedVersion: 2
  2092. m_Modification:
  2093. m_TransformParent: {fileID: 2517208660254528753}
  2094. m_Modifications:
  2095. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2096. propertyPath: m_Name
  2097. value: wall_s (17)
  2098. objectReference: {fileID: 0}
  2099. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2100. propertyPath: m_StaticEditorFlags
  2101. value: 1
  2102. objectReference: {fileID: 0}
  2103. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2104. propertyPath: m_LocalPosition.x
  2105. value: 25.640001
  2106. objectReference: {fileID: 0}
  2107. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2108. propertyPath: m_LocalPosition.y
  2109. value: 17.16
  2110. objectReference: {fileID: 0}
  2111. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2112. propertyPath: m_LocalPosition.z
  2113. value: 24.369999
  2114. objectReference: {fileID: 0}
  2115. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2116. propertyPath: m_LocalRotation.x
  2117. value: -0
  2118. objectReference: {fileID: 0}
  2119. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2120. propertyPath: m_LocalRotation.y
  2121. value: -0.7071068
  2122. objectReference: {fileID: 0}
  2123. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2124. propertyPath: m_LocalRotation.z
  2125. value: -0
  2126. objectReference: {fileID: 0}
  2127. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2128. propertyPath: m_LocalRotation.w
  2129. value: 0.7071068
  2130. objectReference: {fileID: 0}
  2131. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2132. propertyPath: m_RootOrder
  2133. value: 27
  2134. objectReference: {fileID: 0}
  2135. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2136. propertyPath: m_LocalEulerAnglesHint.x
  2137. value: 0
  2138. objectReference: {fileID: 0}
  2139. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2140. propertyPath: m_LocalEulerAnglesHint.y
  2141. value: -90.00001
  2142. objectReference: {fileID: 0}
  2143. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2144. propertyPath: m_LocalEulerAnglesHint.z
  2145. value: 0
  2146. objectReference: {fileID: 0}
  2147. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2148. propertyPath: m_LocalScale.x
  2149. value: 0.600001
  2150. objectReference: {fileID: 0}
  2151. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2152. propertyPath: m_LocalScale.y
  2153. value: 0.6
  2154. objectReference: {fileID: 0}
  2155. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2156. propertyPath: m_LocalScale.z
  2157. value: -0.37659094
  2158. objectReference: {fileID: 0}
  2159. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2160. propertyPath: m_ScaleInLightmap
  2161. value: 0.0001
  2162. objectReference: {fileID: 0}
  2163. m_RemovedComponents: []
  2164. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2165. --- !u!4 &3532591105657892719 stripped
  2166. Transform:
  2167. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  2168. type: 3}
  2169. m_PrefabInstance: {fileID: 3532591105658287599}
  2170. m_PrefabAsset: {fileID: 0}
  2171. --- !u!1001 &3532591105729695492
  2172. PrefabInstance:
  2173. m_ObjectHideFlags: 0
  2174. serializedVersion: 2
  2175. m_Modification:
  2176. m_TransformParent: {fileID: 2517208660254528753}
  2177. m_Modifications:
  2178. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2179. propertyPath: m_Name
  2180. value: wall_s (4)
  2181. objectReference: {fileID: 0}
  2182. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2183. propertyPath: m_StaticEditorFlags
  2184. value: 1
  2185. objectReference: {fileID: 0}
  2186. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2187. propertyPath: m_LocalPosition.x
  2188. value: 22.158
  2189. objectReference: {fileID: 0}
  2190. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2191. propertyPath: m_LocalPosition.y
  2192. value: 0.07000013
  2193. objectReference: {fileID: 0}
  2194. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2195. propertyPath: m_LocalPosition.z
  2196. value: -15.75
  2197. objectReference: {fileID: 0}
  2198. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2199. propertyPath: m_LocalRotation.x
  2200. value: -0
  2201. objectReference: {fileID: 0}
  2202. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2203. propertyPath: m_LocalRotation.y
  2204. value: -0.7071068
  2205. objectReference: {fileID: 0}
  2206. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2207. propertyPath: m_LocalRotation.z
  2208. value: -0
  2209. objectReference: {fileID: 0}
  2210. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2211. propertyPath: m_LocalRotation.w
  2212. value: 0.7071068
  2213. objectReference: {fileID: 0}
  2214. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2215. propertyPath: m_RootOrder
  2216. value: 14
  2217. objectReference: {fileID: 0}
  2218. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2219. propertyPath: m_LocalEulerAnglesHint.x
  2220. value: 0
  2221. objectReference: {fileID: 0}
  2222. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2223. propertyPath: m_LocalEulerAnglesHint.y
  2224. value: -90.00001
  2225. objectReference: {fileID: 0}
  2226. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2227. propertyPath: m_LocalEulerAnglesHint.z
  2228. value: 0
  2229. objectReference: {fileID: 0}
  2230. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2231. propertyPath: m_LocalScale.x
  2232. value: 0.600001
  2233. objectReference: {fileID: 0}
  2234. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2235. propertyPath: m_LocalScale.y
  2236. value: 0.6
  2237. objectReference: {fileID: 0}
  2238. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2239. propertyPath: m_LocalScale.z
  2240. value: -0.37659094
  2241. objectReference: {fileID: 0}
  2242. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2243. propertyPath: m_ScaleInLightmap
  2244. value: 0.0001
  2245. objectReference: {fileID: 0}
  2246. m_RemovedComponents: []
  2247. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2248. --- !u!4 &3532591105730090372 stripped
  2249. Transform:
  2250. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  2251. type: 3}
  2252. m_PrefabInstance: {fileID: 3532591105729695492}
  2253. m_PrefabAsset: {fileID: 0}
  2254. --- !u!1001 &3532591105733634633
  2255. PrefabInstance:
  2256. m_ObjectHideFlags: 0
  2257. serializedVersion: 2
  2258. m_Modification:
  2259. m_TransformParent: {fileID: 2517208660254528753}
  2260. m_Modifications:
  2261. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2262. propertyPath: m_Name
  2263. value: wall_s (12)
  2264. objectReference: {fileID: 0}
  2265. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2266. propertyPath: m_StaticEditorFlags
  2267. value: 1
  2268. objectReference: {fileID: 0}
  2269. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2270. propertyPath: m_LocalPosition.x
  2271. value: 25.640001
  2272. objectReference: {fileID: 0}
  2273. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2274. propertyPath: m_LocalPosition.y
  2275. value: 17.16
  2276. objectReference: {fileID: 0}
  2277. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2278. propertyPath: m_LocalPosition.z
  2279. value: -25.84
  2280. objectReference: {fileID: 0}
  2281. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2282. propertyPath: m_LocalRotation.x
  2283. value: -0
  2284. objectReference: {fileID: 0}
  2285. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2286. propertyPath: m_LocalRotation.y
  2287. value: -0.7071068
  2288. objectReference: {fileID: 0}
  2289. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2290. propertyPath: m_LocalRotation.z
  2291. value: -0
  2292. objectReference: {fileID: 0}
  2293. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2294. propertyPath: m_LocalRotation.w
  2295. value: 0.7071068
  2296. objectReference: {fileID: 0}
  2297. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2298. propertyPath: m_RootOrder
  2299. value: 22
  2300. objectReference: {fileID: 0}
  2301. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2302. propertyPath: m_LocalEulerAnglesHint.x
  2303. value: 0
  2304. objectReference: {fileID: 0}
  2305. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2306. propertyPath: m_LocalEulerAnglesHint.y
  2307. value: -90.00001
  2308. objectReference: {fileID: 0}
  2309. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2310. propertyPath: m_LocalEulerAnglesHint.z
  2311. value: 0
  2312. objectReference: {fileID: 0}
  2313. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2314. propertyPath: m_LocalScale.x
  2315. value: 0.600001
  2316. objectReference: {fileID: 0}
  2317. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2318. propertyPath: m_LocalScale.y
  2319. value: 0.6
  2320. objectReference: {fileID: 0}
  2321. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2322. propertyPath: m_LocalScale.z
  2323. value: -0.37659094
  2324. objectReference: {fileID: 0}
  2325. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2326. propertyPath: m_ScaleInLightmap
  2327. value: 0.0001
  2328. objectReference: {fileID: 0}
  2329. m_RemovedComponents: []
  2330. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2331. --- !u!4 &3532591105733505225 stripped
  2332. Transform:
  2333. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  2334. type: 3}
  2335. m_PrefabInstance: {fileID: 3532591105733634633}
  2336. m_PrefabAsset: {fileID: 0}
  2337. --- !u!1001 &3532591105924254235
  2338. PrefabInstance:
  2339. m_ObjectHideFlags: 0
  2340. serializedVersion: 2
  2341. m_Modification:
  2342. m_TransformParent: {fileID: 2517208660254528753}
  2343. m_Modifications:
  2344. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2345. propertyPath: m_Name
  2346. value: wall_s (11)
  2347. objectReference: {fileID: 0}
  2348. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2349. propertyPath: m_StaticEditorFlags
  2350. value: 1
  2351. objectReference: {fileID: 0}
  2352. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2353. propertyPath: m_LocalPosition.x
  2354. value: 25.640001
  2355. objectReference: {fileID: 0}
  2356. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2357. propertyPath: m_LocalPosition.y
  2358. value: 17.16
  2359. objectReference: {fileID: 0}
  2360. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2361. propertyPath: m_LocalPosition.z
  2362. value: -35.76
  2363. objectReference: {fileID: 0}
  2364. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2365. propertyPath: m_LocalRotation.x
  2366. value: -0
  2367. objectReference: {fileID: 0}
  2368. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2369. propertyPath: m_LocalRotation.y
  2370. value: -0.7071068
  2371. objectReference: {fileID: 0}
  2372. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2373. propertyPath: m_LocalRotation.z
  2374. value: -0
  2375. objectReference: {fileID: 0}
  2376. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2377. propertyPath: m_LocalRotation.w
  2378. value: 0.7071068
  2379. objectReference: {fileID: 0}
  2380. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2381. propertyPath: m_RootOrder
  2382. value: 21
  2383. objectReference: {fileID: 0}
  2384. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2385. propertyPath: m_LocalEulerAnglesHint.x
  2386. value: 0
  2387. objectReference: {fileID: 0}
  2388. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2389. propertyPath: m_LocalEulerAnglesHint.y
  2390. value: -90.00001
  2391. objectReference: {fileID: 0}
  2392. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2393. propertyPath: m_LocalEulerAnglesHint.z
  2394. value: 0
  2395. objectReference: {fileID: 0}
  2396. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2397. propertyPath: m_LocalScale.x
  2398. value: 0.600001
  2399. objectReference: {fileID: 0}
  2400. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2401. propertyPath: m_LocalScale.y
  2402. value: 0.6
  2403. objectReference: {fileID: 0}
  2404. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2405. propertyPath: m_LocalScale.z
  2406. value: -0.37659094
  2407. objectReference: {fileID: 0}
  2408. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2409. propertyPath: m_ScaleInLightmap
  2410. value: 0.0001
  2411. objectReference: {fileID: 0}
  2412. m_RemovedComponents: []
  2413. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2414. --- !u!4 &3532591105924649115 stripped
  2415. Transform:
  2416. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  2417. type: 3}
  2418. m_PrefabInstance: {fileID: 3532591105924254235}
  2419. m_PrefabAsset: {fileID: 0}
  2420. --- !u!1001 &3532591106059671523
  2421. PrefabInstance:
  2422. m_ObjectHideFlags: 0
  2423. serializedVersion: 2
  2424. m_Modification:
  2425. m_TransformParent: {fileID: 2517208660254528753}
  2426. m_Modifications:
  2427. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2428. propertyPath: m_Name
  2429. value: wall_s (15)
  2430. objectReference: {fileID: 0}
  2431. - target: {fileID: 100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2432. propertyPath: m_StaticEditorFlags
  2433. value: 1
  2434. objectReference: {fileID: 0}
  2435. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2436. propertyPath: m_LocalPosition.x
  2437. value: 25.640001
  2438. objectReference: {fileID: 0}
  2439. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2440. propertyPath: m_LocalPosition.y
  2441. value: 17.16
  2442. objectReference: {fileID: 0}
  2443. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2444. propertyPath: m_LocalPosition.z
  2445. value: 4.83
  2446. objectReference: {fileID: 0}
  2447. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2448. propertyPath: m_LocalRotation.x
  2449. value: -0
  2450. objectReference: {fileID: 0}
  2451. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2452. propertyPath: m_LocalRotation.y
  2453. value: -0.7071068
  2454. objectReference: {fileID: 0}
  2455. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2456. propertyPath: m_LocalRotation.z
  2457. value: -0
  2458. objectReference: {fileID: 0}
  2459. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2460. propertyPath: m_LocalRotation.w
  2461. value: 0.7071068
  2462. objectReference: {fileID: 0}
  2463. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2464. propertyPath: m_RootOrder
  2465. value: 25
  2466. objectReference: {fileID: 0}
  2467. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2468. propertyPath: m_LocalEulerAnglesHint.x
  2469. value: 0
  2470. objectReference: {fileID: 0}
  2471. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2472. propertyPath: m_LocalEulerAnglesHint.y
  2473. value: -90.00001
  2474. objectReference: {fileID: 0}
  2475. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2476. propertyPath: m_LocalEulerAnglesHint.z
  2477. value: 0
  2478. objectReference: {fileID: 0}
  2479. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2480. propertyPath: m_LocalScale.x
  2481. value: 0.600001
  2482. objectReference: {fileID: 0}
  2483. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2484. propertyPath: m_LocalScale.y
  2485. value: 0.6
  2486. objectReference: {fileID: 0}
  2487. - target: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2488. propertyPath: m_LocalScale.z
  2489. value: -0.37659094
  2490. objectReference: {fileID: 0}
  2491. - target: {fileID: 2300000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2492. propertyPath: m_ScaleInLightmap
  2493. value: 0.0001
  2494. objectReference: {fileID: 0}
  2495. m_RemovedComponents: []
  2496. m_SourcePrefab: {fileID: 100100000, guid: 77af0b263a9ad07448f24b8d06b319cc, type: 3}
  2497. --- !u!4 &3532591106059537763 stripped
  2498. Transform:
  2499. m_CorrespondingSourceObject: {fileID: 400000, guid: 77af0b263a9ad07448f24b8d06b319cc,
  2500. type: 3}
  2501. m_PrefabInstance: {fileID: 3532591106059671523}
  2502. m_PrefabAsset: {fileID: 0}