PBRExample.scene 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. <?xml version="1.0"?>
  2. <scene id="1">
  3. <attribute name="Name" value="" />
  4. <attribute name="Time Scale" value="1" />
  5. <attribute name="Smoothing Constant" value="50" />
  6. <attribute name="Snap Threshold" value="5" />
  7. <attribute name="Elapsed Time" value="36.5594" />
  8. <attribute name="Next Replicated Node ID" value="234" />
  9. <attribute name="Next Replicated Component ID" value="253" />
  10. <attribute name="Next Local Node ID" value="16777267" />
  11. <attribute name="Next Local Component ID" value="16777805" />
  12. <attribute name="Variables" />
  13. <attribute name="Variable Names" value="" />
  14. <component type="Octree" id="1" />
  15. <component type="DebugRenderer" id="2" />
  16. <component type="PhysicsWorld" id="64" />
  17. <node id="2">
  18. <attribute name="Is Enabled" value="true" />
  19. <attribute name="Name" value="Room" />
  20. <attribute name="Tags" />
  21. <attribute name="Position" value="0 0 0" />
  22. <attribute name="Rotation" value="1 0 0 0" />
  23. <attribute name="Scale" value="1 1 1" />
  24. <attribute name="Variables" />
  25. <node id="3">
  26. <attribute name="Is Enabled" value="true" />
  27. <attribute name="Name" value="Plane" />
  28. <attribute name="Tags" />
  29. <attribute name="Position" value="-5.33303 2.35842 4.88357" />
  30. <attribute name="Rotation" value="1 0 0 0" />
  31. <attribute name="Scale" value="3 1 3" />
  32. <attribute name="Variables" />
  33. <component type="StaticModel" id="3">
  34. <attribute name="Model" value="Model;Models/Plane.mdl" />
  35. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  36. <attribute name="Geometry Enabled">
  37. <variant type="Bool" value="true" />
  38. </attribute>
  39. </component>
  40. </node>
  41. <node id="31">
  42. <attribute name="Is Enabled" value="true" />
  43. <attribute name="Name" value="Plane" />
  44. <attribute name="Tags" />
  45. <attribute name="Position" value="-2.33303 2.35842 4.88357" />
  46. <attribute name="Rotation" value="1 0 0 0" />
  47. <attribute name="Scale" value="3 1 3" />
  48. <attribute name="Variables" />
  49. <component type="StaticModel" id="33">
  50. <attribute name="Model" value="Model;Models/Plane.mdl" />
  51. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  52. <attribute name="Geometry Enabled">
  53. <variant type="Bool" value="true" />
  54. </attribute>
  55. </component>
  56. </node>
  57. <node id="32">
  58. <attribute name="Is Enabled" value="true" />
  59. <attribute name="Name" value="Plane" />
  60. <attribute name="Tags" />
  61. <attribute name="Position" value="0.66697 2.35842 4.88357" />
  62. <attribute name="Rotation" value="1 0 0 0" />
  63. <attribute name="Scale" value="3 1 3" />
  64. <attribute name="Variables" />
  65. <component type="StaticModel" id="34">
  66. <attribute name="Model" value="Model;Models/Plane.mdl" />
  67. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  68. <attribute name="Geometry Enabled">
  69. <variant type="Bool" value="true" />
  70. </attribute>
  71. </component>
  72. </node>
  73. <node id="22">
  74. <attribute name="Is Enabled" value="true" />
  75. <attribute name="Name" value="Box" />
  76. <attribute name="Tags" />
  77. <attribute name="Position" value="1.16697 1.83612 3.88357" />
  78. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  79. <attribute name="Scale" value="3 3 1" />
  80. <attribute name="Variables" />
  81. <component type="StaticModel" id="24">
  82. <attribute name="Model" value="Model;Models/Box.mdl" />
  83. <attribute name="Material" value="Material;" />
  84. <attribute name="Cast Shadows" value="true" />
  85. <attribute name="Geometry Enabled">
  86. <variant type="Bool" value="true" />
  87. </attribute>
  88. </component>
  89. </node>
  90. <node id="25">
  91. <attribute name="Is Enabled" value="true" />
  92. <attribute name="Name" value="Box" />
  93. <attribute name="Tags" />
  94. <attribute name="Position" value="-6.33303 1.35842 4.88357" />
  95. <attribute name="Rotation" value="-0.707107 0 0.707107 0" />
  96. <attribute name="Scale" value="3 3 1" />
  97. <attribute name="Variables" />
  98. <component type="StaticModel" id="27">
  99. <attribute name="Model" value="Model;Models/Box.mdl" />
  100. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  101. <attribute name="Cast Shadows" value="true" />
  102. <attribute name="Geometry Enabled">
  103. <variant type="Bool" value="true" />
  104. </attribute>
  105. </component>
  106. </node>
  107. <node id="35">
  108. <attribute name="Is Enabled" value="true" />
  109. <attribute name="Name" value="Box" />
  110. <attribute name="Tags" />
  111. <attribute name="Position" value="1.16697 1.83612 -13.9362" />
  112. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  113. <attribute name="Scale" value="3 3 1" />
  114. <attribute name="Variables" />
  115. <component type="StaticModel" id="37">
  116. <attribute name="Model" value="Model;Models/Box.mdl" />
  117. <attribute name="Material" value="Material;" />
  118. <attribute name="Cast Shadows" value="true" />
  119. <attribute name="Geometry Enabled">
  120. <variant type="Bool" value="true" />
  121. </attribute>
  122. </component>
  123. </node>
  124. <node id="36">
  125. <attribute name="Is Enabled" value="true" />
  126. <attribute name="Name" value="Box" />
  127. <attribute name="Tags" />
  128. <attribute name="Position" value="-1.33303 1.83612 0.88357" />
  129. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  130. <attribute name="Scale" value="3 3 1" />
  131. <attribute name="Variables" />
  132. <component type="StaticModel" id="38">
  133. <attribute name="Model" value="Model;Models/Box.mdl" />
  134. <attribute name="Material" value="Material;" />
  135. <attribute name="Cast Shadows" value="true" />
  136. <attribute name="Geometry Enabled">
  137. <variant type="Bool" value="true" />
  138. </attribute>
  139. </component>
  140. </node>
  141. <node id="37">
  142. <attribute name="Is Enabled" value="true" />
  143. <attribute name="Name" value="Box" />
  144. <attribute name="Tags" />
  145. <attribute name="Position" value="-4.33303 1.83612 -13.9362" />
  146. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  147. <attribute name="Scale" value="3 3 1" />
  148. <attribute name="Variables" />
  149. <component type="StaticModel" id="39">
  150. <attribute name="Model" value="Model;Models/Box.mdl" />
  151. <attribute name="Material" value="Material;" />
  152. <attribute name="Cast Shadows" value="true" />
  153. <attribute name="Geometry Enabled">
  154. <variant type="Bool" value="true" />
  155. </attribute>
  156. </component>
  157. </node>
  158. <node id="38">
  159. <attribute name="Is Enabled" value="true" />
  160. <attribute name="Name" value="Box" />
  161. <attribute name="Tags" />
  162. <attribute name="Position" value="1.16697 1.83612 0.88357" />
  163. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  164. <attribute name="Scale" value="3 3 1" />
  165. <attribute name="Variables" />
  166. <component type="StaticModel" id="40">
  167. <attribute name="Model" value="Model;Models/Box.mdl" />
  168. <attribute name="Material" value="Material;" />
  169. <attribute name="Cast Shadows" value="true" />
  170. <attribute name="Geometry Enabled">
  171. <variant type="Bool" value="true" />
  172. </attribute>
  173. </component>
  174. </node>
  175. <node id="39">
  176. <attribute name="Is Enabled" value="true" />
  177. <attribute name="Name" value="Box" />
  178. <attribute name="Tags" />
  179. <attribute name="Position" value="-1.33303 1.83612 -13.9362" />
  180. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  181. <attribute name="Scale" value="3 3 1" />
  182. <attribute name="Variables" />
  183. <component type="StaticModel" id="41">
  184. <attribute name="Model" value="Model;Models/Box.mdl" />
  185. <attribute name="Material" value="Material;" />
  186. <attribute name="Cast Shadows" value="true" />
  187. <attribute name="Geometry Enabled">
  188. <variant type="Bool" value="true" />
  189. </attribute>
  190. </component>
  191. </node>
  192. <node id="43">
  193. <attribute name="Is Enabled" value="true" />
  194. <attribute name="Name" value="Box" />
  195. <attribute name="Tags" />
  196. <attribute name="Position" value="-4.33303 1.83612 -11.1164" />
  197. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  198. <attribute name="Scale" value="3 3 1" />
  199. <attribute name="Variables" />
  200. <component type="StaticModel" id="45">
  201. <attribute name="Model" value="Model;Models/Box.mdl" />
  202. <attribute name="Material" value="Material;" />
  203. <attribute name="Cast Shadows" value="true" />
  204. <attribute name="Geometry Enabled">
  205. <variant type="Bool" value="true" />
  206. </attribute>
  207. </component>
  208. </node>
  209. <node id="44">
  210. <attribute name="Is Enabled" value="true" />
  211. <attribute name="Name" value="Box" />
  212. <attribute name="Tags" />
  213. <attribute name="Position" value="-1.33303 1.83612 -11.1164" />
  214. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  215. <attribute name="Scale" value="3 3 1" />
  216. <attribute name="Variables" />
  217. <component type="StaticModel" id="46">
  218. <attribute name="Model" value="Model;Models/Box.mdl" />
  219. <attribute name="Material" value="Material;" />
  220. <attribute name="Cast Shadows" value="true" />
  221. <attribute name="Geometry Enabled">
  222. <variant type="Bool" value="true" />
  223. </attribute>
  224. </component>
  225. </node>
  226. <node id="45">
  227. <attribute name="Is Enabled" value="true" />
  228. <attribute name="Name" value="Box" />
  229. <attribute name="Tags" />
  230. <attribute name="Position" value="1.16697 1.83612 -11.1164" />
  231. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  232. <attribute name="Scale" value="3 3 1" />
  233. <attribute name="Variables" />
  234. <component type="StaticModel" id="47">
  235. <attribute name="Model" value="Model;Models/Box.mdl" />
  236. <attribute name="Material" value="Material;" />
  237. <attribute name="Cast Shadows" value="true" />
  238. <attribute name="Geometry Enabled">
  239. <variant type="Bool" value="true" />
  240. </attribute>
  241. </component>
  242. </node>
  243. <node id="46">
  244. <attribute name="Is Enabled" value="true" />
  245. <attribute name="Name" value="Box" />
  246. <attribute name="Tags" />
  247. <attribute name="Position" value="-1.33303 1.83612 -8.11643" />
  248. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  249. <attribute name="Scale" value="3 3 1" />
  250. <attribute name="Variables" />
  251. <component type="StaticModel" id="48">
  252. <attribute name="Model" value="Model;Models/Box.mdl" />
  253. <attribute name="Material" value="Material;" />
  254. <attribute name="Cast Shadows" value="true" />
  255. <attribute name="Geometry Enabled">
  256. <variant type="Bool" value="true" />
  257. </attribute>
  258. </component>
  259. </node>
  260. <node id="48">
  261. <attribute name="Is Enabled" value="true" />
  262. <attribute name="Name" value="Box" />
  263. <attribute name="Tags" />
  264. <attribute name="Position" value="0.66697 1.83612 -8.11643" />
  265. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  266. <attribute name="Scale" value="3 3 1" />
  267. <attribute name="Variables" />
  268. <component type="StaticModel" id="50">
  269. <attribute name="Model" value="Model;Models/Box.mdl" />
  270. <attribute name="Material" value="Material;" />
  271. <attribute name="Cast Shadows" value="true" />
  272. <attribute name="Geometry Enabled">
  273. <variant type="Bool" value="true" />
  274. </attribute>
  275. </component>
  276. </node>
  277. <node id="53">
  278. <attribute name="Is Enabled" value="true" />
  279. <attribute name="Name" value="Box" />
  280. <attribute name="Tags" />
  281. <attribute name="Position" value="0.514838 2.08884 -0.61643" />
  282. <attribute name="Rotation" value="-0.651315 0.275298 0.651315 0.275298" />
  283. <attribute name="Scale" value="3 0.3 1" />
  284. <attribute name="Variables" />
  285. <component type="StaticModel" id="56">
  286. <attribute name="Model" value="Model;Models/Box.mdl" />
  287. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  288. <attribute name="Cast Shadows" value="true" />
  289. <attribute name="Geometry Enabled">
  290. <variant type="Bool" value="true" />
  291. </attribute>
  292. </component>
  293. </node>
  294. <node id="84">
  295. <attribute name="Is Enabled" value="true" />
  296. <attribute name="Name" value="Box" />
  297. <attribute name="Tags" />
  298. <attribute name="Position" value="2.66697 1.35842 3.88357" />
  299. <attribute name="Rotation" value="0.707107 0 0.707107 0" />
  300. <attribute name="Scale" value="3 3 1" />
  301. <attribute name="Variables" />
  302. <component type="StaticModel" id="94">
  303. <attribute name="Model" value="Model;Models/Box.mdl" />
  304. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  305. <attribute name="Cast Shadows" value="true" />
  306. <attribute name="Geometry Enabled">
  307. <variant type="Bool" value="true" />
  308. </attribute>
  309. </component>
  310. </node>
  311. <node id="85">
  312. <attribute name="Is Enabled" value="true" />
  313. <attribute name="Name" value="Box" />
  314. <attribute name="Tags" />
  315. <attribute name="Position" value="1.66697 1.35842 5.88357" />
  316. <attribute name="Rotation" value="-2.98023e-08 0 1 0" />
  317. <attribute name="Scale" value="3 3 1" />
  318. <attribute name="Variables" />
  319. <component type="StaticModel" id="95">
  320. <attribute name="Model" value="Model;Models/Box.mdl" />
  321. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  322. <attribute name="Cast Shadows" value="true" />
  323. <attribute name="Geometry Enabled">
  324. <variant type="Bool" value="true" />
  325. </attribute>
  326. </component>
  327. </node>
  328. <node id="86">
  329. <attribute name="Is Enabled" value="true" />
  330. <attribute name="Name" value="Box" />
  331. <attribute name="Tags" />
  332. <attribute name="Position" value="0.66697 1.35842 -15.1164" />
  333. <attribute name="Rotation" value="-2.98023e-08 0 1 0" />
  334. <attribute name="Scale" value="3 3 1" />
  335. <attribute name="Variables" />
  336. <component type="StaticModel" id="96">
  337. <attribute name="Model" value="Model;Models/Box.mdl" />
  338. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  339. <attribute name="Cast Shadows" value="true" />
  340. <attribute name="Geometry Enabled">
  341. <variant type="Bool" value="true" />
  342. </attribute>
  343. </component>
  344. </node>
  345. <node id="72">
  346. <attribute name="Is Enabled" value="true" />
  347. <attribute name="Name" value="Plane" />
  348. <attribute name="Tags" />
  349. <attribute name="Position" value="-5.33303 2.35842 -1.11643" />
  350. <attribute name="Rotation" value="1 0 0 0" />
  351. <attribute name="Scale" value="3 1 3" />
  352. <attribute name="Variables" />
  353. <component type="StaticModel" id="82">
  354. <attribute name="Model" value="Model;Models/Plane.mdl" />
  355. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  356. <attribute name="Geometry Enabled">
  357. <variant type="Bool" value="true" />
  358. </attribute>
  359. </component>
  360. </node>
  361. <node id="73">
  362. <attribute name="Is Enabled" value="true" />
  363. <attribute name="Name" value="Plane" />
  364. <attribute name="Tags" />
  365. <attribute name="Position" value="-2.33303 2.35842 -1.11643" />
  366. <attribute name="Rotation" value="1 0 0 0" />
  367. <attribute name="Scale" value="3 1 3" />
  368. <attribute name="Variables" />
  369. <component type="StaticModel" id="83">
  370. <attribute name="Model" value="Model;Models/Plane.mdl" />
  371. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  372. <attribute name="Geometry Enabled">
  373. <variant type="Bool" value="true" />
  374. </attribute>
  375. </component>
  376. </node>
  377. <node id="74">
  378. <attribute name="Is Enabled" value="true" />
  379. <attribute name="Name" value="Plane" />
  380. <attribute name="Tags" />
  381. <attribute name="Position" value="0.66697 2.35842 -1.11643" />
  382. <attribute name="Rotation" value="1 0 0 0" />
  383. <attribute name="Scale" value="3 1 3" />
  384. <attribute name="Variables" />
  385. <component type="StaticModel" id="84">
  386. <attribute name="Model" value="Model;Models/Plane.mdl" />
  387. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  388. <attribute name="Geometry Enabled">
  389. <variant type="Bool" value="true" />
  390. </attribute>
  391. </component>
  392. </node>
  393. <node id="75">
  394. <attribute name="Is Enabled" value="true" />
  395. <attribute name="Name" value="Plane" />
  396. <attribute name="Tags" />
  397. <attribute name="Position" value="-5.33303 2.35842 1.88357" />
  398. <attribute name="Rotation" value="1 0 0 0" />
  399. <attribute name="Scale" value="3 1 3" />
  400. <attribute name="Variables" />
  401. <component type="StaticModel" id="85">
  402. <attribute name="Model" value="Model;Models/Plane.mdl" />
  403. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  404. <attribute name="Geometry Enabled">
  405. <variant type="Bool" value="true" />
  406. </attribute>
  407. </component>
  408. </node>
  409. <node id="76">
  410. <attribute name="Is Enabled" value="true" />
  411. <attribute name="Name" value="Plane" />
  412. <attribute name="Tags" />
  413. <attribute name="Position" value="-2.33303 2.35842 1.88357" />
  414. <attribute name="Rotation" value="1 0 0 0" />
  415. <attribute name="Scale" value="3 1 3" />
  416. <attribute name="Variables" />
  417. <component type="StaticModel" id="86">
  418. <attribute name="Model" value="Model;Models/Plane.mdl" />
  419. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  420. <attribute name="Geometry Enabled">
  421. <variant type="Bool" value="true" />
  422. </attribute>
  423. </component>
  424. </node>
  425. <node id="77">
  426. <attribute name="Is Enabled" value="true" />
  427. <attribute name="Name" value="Plane" />
  428. <attribute name="Tags" />
  429. <attribute name="Position" value="0.66697 2.35842 1.88357" />
  430. <attribute name="Rotation" value="1 0 0 0" />
  431. <attribute name="Scale" value="3 1 3" />
  432. <attribute name="Variables" />
  433. <component type="StaticModel" id="87">
  434. <attribute name="Model" value="Model;Models/Plane.mdl" />
  435. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  436. <attribute name="Geometry Enabled">
  437. <variant type="Bool" value="true" />
  438. </attribute>
  439. </component>
  440. </node>
  441. <node id="79">
  442. <attribute name="Is Enabled" value="true" />
  443. <attribute name="Name" value="Box" />
  444. <attribute name="Tags" />
  445. <attribute name="Position" value="2.66697 1.35842 -5.11643" />
  446. <attribute name="Rotation" value="0.707107 0 0.707107 0" />
  447. <attribute name="Scale" value="3 3 1" />
  448. <attribute name="Variables" />
  449. <component type="StaticModel" id="89">
  450. <attribute name="Model" value="Model;Models/Box.mdl" />
  451. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  452. <attribute name="Cast Shadows" value="true" />
  453. <attribute name="Geometry Enabled">
  454. <variant type="Bool" value="true" />
  455. </attribute>
  456. </component>
  457. </node>
  458. <node id="80">
  459. <attribute name="Is Enabled" value="true" />
  460. <attribute name="Name" value="Box" />
  461. <attribute name="Tags" />
  462. <attribute name="Position" value="-6.33303 1.35842 -1.11643" />
  463. <attribute name="Rotation" value="0.707107 0 -0.707107 0" />
  464. <attribute name="Scale" value="3 3 1" />
  465. <attribute name="Variables" />
  466. <component type="StaticModel" id="90">
  467. <attribute name="Model" value="Model;Models/Box.mdl" />
  468. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  469. <attribute name="Cast Shadows" value="true" />
  470. <attribute name="Geometry Enabled">
  471. <variant type="Bool" value="true" />
  472. </attribute>
  473. </component>
  474. </node>
  475. <node id="81">
  476. <attribute name="Is Enabled" value="true" />
  477. <attribute name="Name" value="Box" />
  478. <attribute name="Tags" />
  479. <attribute name="Position" value="2.66697 1.35842 -2.11643" />
  480. <attribute name="Rotation" value="0.707107 0 0.707107 0" />
  481. <attribute name="Scale" value="3 3 1" />
  482. <attribute name="Variables" />
  483. <component type="StaticModel" id="91">
  484. <attribute name="Model" value="Model;Models/Box.mdl" />
  485. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  486. <attribute name="Cast Shadows" value="true" />
  487. <attribute name="Geometry Enabled">
  488. <variant type="Bool" value="true" />
  489. </attribute>
  490. </component>
  491. </node>
  492. <node id="82">
  493. <attribute name="Is Enabled" value="true" />
  494. <attribute name="Name" value="Box" />
  495. <attribute name="Tags" />
  496. <attribute name="Position" value="-6.33303 1.35842 1.88357" />
  497. <attribute name="Rotation" value="0.707107 0 -0.707107 0" />
  498. <attribute name="Scale" value="3 3 1" />
  499. <attribute name="Variables" />
  500. <component type="StaticModel" id="92">
  501. <attribute name="Model" value="Model;Models/Box.mdl" />
  502. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  503. <attribute name="Cast Shadows" value="true" />
  504. <attribute name="Geometry Enabled">
  505. <variant type="Bool" value="true" />
  506. </attribute>
  507. </component>
  508. </node>
  509. <node id="83">
  510. <attribute name="Is Enabled" value="true" />
  511. <attribute name="Name" value="Box" />
  512. <attribute name="Tags" />
  513. <attribute name="Position" value="2.66697 1.35842 0.88357" />
  514. <attribute name="Rotation" value="0.707107 0 0.707107 0" />
  515. <attribute name="Scale" value="3 3 1" />
  516. <attribute name="Variables" />
  517. <component type="StaticModel" id="93">
  518. <attribute name="Model" value="Model;Models/Box.mdl" />
  519. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  520. <attribute name="Cast Shadows" value="true" />
  521. <attribute name="Geometry Enabled">
  522. <variant type="Bool" value="true" />
  523. </attribute>
  524. </component>
  525. </node>
  526. <node id="115">
  527. <attribute name="Is Enabled" value="true" />
  528. <attribute name="Name" value="Box" />
  529. <attribute name="Tags" />
  530. <attribute name="Position" value="-4.33303 1.83612 -8.11643" />
  531. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  532. <attribute name="Scale" value="3 3 1" />
  533. <attribute name="Variables" />
  534. <component type="StaticModel" id="123">
  535. <attribute name="Model" value="Model;Models/Box.mdl" />
  536. <attribute name="Material" value="Material;" />
  537. <attribute name="Cast Shadows" value="true" />
  538. <attribute name="Geometry Enabled">
  539. <variant type="Bool" value="true" />
  540. </attribute>
  541. </component>
  542. </node>
  543. <node id="123">
  544. <attribute name="Is Enabled" value="true" />
  545. <attribute name="Name" value="Box" />
  546. <attribute name="Tags" />
  547. <attribute name="Position" value="-4.33303 1.83612 0.88357" />
  548. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  549. <attribute name="Scale" value="3 3 1" />
  550. <attribute name="Variables" />
  551. <component type="StaticModel" id="131">
  552. <attribute name="Model" value="Model;Models/Box.mdl" />
  553. <attribute name="Material" value="Material;" />
  554. <attribute name="Cast Shadows" value="true" />
  555. <attribute name="Geometry Enabled">
  556. <variant type="Bool" value="true" />
  557. </attribute>
  558. </component>
  559. </node>
  560. <node id="124">
  561. <attribute name="Is Enabled" value="true" />
  562. <attribute name="Name" value="Box" />
  563. <attribute name="Tags" />
  564. <attribute name="Position" value="-4.33303 1.83612 3.88357" />
  565. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  566. <attribute name="Scale" value="3 3 1" />
  567. <attribute name="Variables" />
  568. <component type="StaticModel" id="132">
  569. <attribute name="Model" value="Model;Models/Box.mdl" />
  570. <attribute name="Material" value="Material;" />
  571. <attribute name="Cast Shadows" value="true" />
  572. <attribute name="Geometry Enabled">
  573. <variant type="Bool" value="true" />
  574. </attribute>
  575. </component>
  576. </node>
  577. <node id="125">
  578. <attribute name="Is Enabled" value="true" />
  579. <attribute name="Name" value="Box" />
  580. <attribute name="Tags" />
  581. <attribute name="Position" value="-1.33303 1.83612 3.88357" />
  582. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  583. <attribute name="Scale" value="3 3 1" />
  584. <attribute name="Variables" />
  585. <component type="StaticModel" id="133">
  586. <attribute name="Model" value="Model;Models/Box.mdl" />
  587. <attribute name="Material" value="Material;" />
  588. <attribute name="Cast Shadows" value="true" />
  589. <attribute name="Geometry Enabled">
  590. <variant type="Bool" value="true" />
  591. </attribute>
  592. </component>
  593. </node>
  594. <node id="117">
  595. <attribute name="Is Enabled" value="true" />
  596. <attribute name="Name" value="Box" />
  597. <attribute name="Tags" />
  598. <attribute name="Position" value="-4.33303 1.83612 -5.11643" />
  599. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  600. <attribute name="Scale" value="3 3 1" />
  601. <attribute name="Variables" />
  602. <component type="StaticModel" id="125">
  603. <attribute name="Model" value="Model;Models/Box.mdl" />
  604. <attribute name="Material" value="Material;" />
  605. <attribute name="Cast Shadows" value="true" />
  606. <attribute name="Geometry Enabled">
  607. <variant type="Bool" value="true" />
  608. </attribute>
  609. </component>
  610. </node>
  611. <node id="118">
  612. <attribute name="Is Enabled" value="true" />
  613. <attribute name="Name" value="Box" />
  614. <attribute name="Tags" />
  615. <attribute name="Position" value="-1.33303 1.83612 -5.11643" />
  616. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  617. <attribute name="Scale" value="3 3 1" />
  618. <attribute name="Variables" />
  619. <component type="StaticModel" id="126">
  620. <attribute name="Model" value="Model;Models/Box.mdl" />
  621. <attribute name="Material" value="Material;" />
  622. <attribute name="Cast Shadows" value="true" />
  623. <attribute name="Geometry Enabled">
  624. <variant type="Bool" value="true" />
  625. </attribute>
  626. </component>
  627. </node>
  628. <node id="119">
  629. <attribute name="Is Enabled" value="true" />
  630. <attribute name="Name" value="Box" />
  631. <attribute name="Tags" />
  632. <attribute name="Position" value="1.16697 1.83612 -5.11643" />
  633. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  634. <attribute name="Scale" value="3 3 1" />
  635. <attribute name="Variables" />
  636. <component type="StaticModel" id="127">
  637. <attribute name="Model" value="Model;Models/Box.mdl" />
  638. <attribute name="Material" value="Material;" />
  639. <attribute name="Cast Shadows" value="true" />
  640. <attribute name="Geometry Enabled">
  641. <variant type="Bool" value="true" />
  642. </attribute>
  643. </component>
  644. </node>
  645. <node id="120">
  646. <attribute name="Is Enabled" value="true" />
  647. <attribute name="Name" value="Box" />
  648. <attribute name="Tags" />
  649. <attribute name="Position" value="-4.33303 1.83612 -2.11643" />
  650. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  651. <attribute name="Scale" value="3 3 1" />
  652. <attribute name="Variables" />
  653. <component type="StaticModel" id="128">
  654. <attribute name="Model" value="Model;Models/Box.mdl" />
  655. <attribute name="Material" value="Material;" />
  656. <attribute name="Cast Shadows" value="true" />
  657. <attribute name="Geometry Enabled">
  658. <variant type="Bool" value="true" />
  659. </attribute>
  660. </component>
  661. </node>
  662. <node id="121">
  663. <attribute name="Is Enabled" value="true" />
  664. <attribute name="Name" value="Box" />
  665. <attribute name="Tags" />
  666. <attribute name="Position" value="-1.33303 1.83612 -2.11643" />
  667. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  668. <attribute name="Scale" value="3 3 1" />
  669. <attribute name="Variables" />
  670. <component type="StaticModel" id="129">
  671. <attribute name="Model" value="Model;Models/Box.mdl" />
  672. <attribute name="Material" value="Material;" />
  673. <attribute name="Cast Shadows" value="true" />
  674. <attribute name="Geometry Enabled">
  675. <variant type="Bool" value="true" />
  676. </attribute>
  677. </component>
  678. </node>
  679. <node id="122">
  680. <attribute name="Is Enabled" value="true" />
  681. <attribute name="Name" value="Box" />
  682. <attribute name="Tags" />
  683. <attribute name="Position" value="1.16697 1.83612 -2.11643" />
  684. <attribute name="Rotation" value="2.68221e-07 -2.68221e-07 0.707107 0.707107" />
  685. <attribute name="Scale" value="3 3 1" />
  686. <attribute name="Variables" />
  687. <component type="StaticModel" id="130">
  688. <attribute name="Model" value="Model;Models/Box.mdl" />
  689. <attribute name="Material" value="Material;" />
  690. <attribute name="Cast Shadows" value="true" />
  691. <attribute name="Geometry Enabled">
  692. <variant type="Bool" value="true" />
  693. </attribute>
  694. </component>
  695. </node>
  696. <node id="134">
  697. <attribute name="Is Enabled" value="true" />
  698. <attribute name="Name" value="Box" />
  699. <attribute name="Tags" />
  700. <attribute name="Position" value="-4.33303 1.35842 5.88357" />
  701. <attribute name="Rotation" value="-2.98023e-08 0 1 0" />
  702. <attribute name="Scale" value="3 3 1" />
  703. <attribute name="Variables" />
  704. <component type="StaticModel" id="152">
  705. <attribute name="Model" value="Model;Models/Box.mdl" />
  706. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  707. <attribute name="Cast Shadows" value="true" />
  708. <attribute name="Geometry Enabled">
  709. <variant type="Bool" value="true" />
  710. </attribute>
  711. </component>
  712. </node>
  713. <node id="135">
  714. <attribute name="Is Enabled" value="true" />
  715. <attribute name="Name" value="Box" />
  716. <attribute name="Tags" />
  717. <attribute name="Position" value="-2.63243 1.75841 -9.61643" />
  718. <attribute name="Rotation" value="-0.651315 0.275298 0.651315 0.275298" />
  719. <attribute name="Scale" value="3 0.3 1" />
  720. <attribute name="Variables" />
  721. <component type="StaticModel" id="153">
  722. <attribute name="Model" value="Model;Models/Box.mdl" />
  723. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  724. <attribute name="Cast Shadows" value="true" />
  725. <attribute name="Geometry Enabled">
  726. <variant type="Bool" value="true" />
  727. </attribute>
  728. </component>
  729. </node>
  730. <node id="191">
  731. <attribute name="Is Enabled" value="true" />
  732. <attribute name="Name" value="Box" />
  733. <attribute name="Tags" />
  734. <attribute name="Position" value="-6.33303 1.35842 -13.1164" />
  735. <attribute name="Rotation" value="0.707107 0 -0.707107 0" />
  736. <attribute name="Scale" value="3 3 1" />
  737. <attribute name="Variables" />
  738. <component type="StaticModel" id="210">
  739. <attribute name="Model" value="Model;Models/Box.mdl" />
  740. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  741. <attribute name="Cast Shadows" value="true" />
  742. <attribute name="Geometry Enabled">
  743. <variant type="Bool" value="true" />
  744. </attribute>
  745. </component>
  746. </node>
  747. <node id="192">
  748. <attribute name="Is Enabled" value="true" />
  749. <attribute name="Name" value="Box" />
  750. <attribute name="Tags" />
  751. <attribute name="Position" value="-1.33303 1.35842 5.88357" />
  752. <attribute name="Rotation" value="-2.98023e-08 0 1 0" />
  753. <attribute name="Scale" value="3 3 1" />
  754. <attribute name="Variables" />
  755. <component type="StaticModel" id="211">
  756. <attribute name="Model" value="Model;Models/Box.mdl" />
  757. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  758. <attribute name="Cast Shadows" value="true" />
  759. <attribute name="Geometry Enabled">
  760. <variant type="Bool" value="true" />
  761. </attribute>
  762. </component>
  763. </node>
  764. <node id="193">
  765. <attribute name="Is Enabled" value="true" />
  766. <attribute name="Name" value="Box" />
  767. <attribute name="Tags" />
  768. <attribute name="Position" value="-5.33303 1.35842 -15.1164" />
  769. <attribute name="Rotation" value="-2.98023e-08 0 1 0" />
  770. <attribute name="Scale" value="3 3 1" />
  771. <attribute name="Variables" />
  772. <component type="StaticModel" id="212">
  773. <attribute name="Model" value="Model;Models/Box.mdl" />
  774. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  775. <attribute name="Cast Shadows" value="true" />
  776. <attribute name="Geometry Enabled">
  777. <variant type="Bool" value="true" />
  778. </attribute>
  779. </component>
  780. </node>
  781. <node id="194">
  782. <attribute name="Is Enabled" value="true" />
  783. <attribute name="Name" value="Box" />
  784. <attribute name="Tags" />
  785. <attribute name="Position" value="-2.33303 1.35842 -15.1164" />
  786. <attribute name="Rotation" value="-2.98023e-08 0 1 0" />
  787. <attribute name="Scale" value="3 3 1" />
  788. <attribute name="Variables" />
  789. <component type="StaticModel" id="213">
  790. <attribute name="Model" value="Model;Models/Box.mdl" />
  791. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  792. <attribute name="Cast Shadows" value="true" />
  793. <attribute name="Geometry Enabled">
  794. <variant type="Bool" value="true" />
  795. </attribute>
  796. </component>
  797. </node>
  798. </node>
  799. <node id="11">
  800. <attribute name="Is Enabled" value="true" />
  801. <attribute name="Name" value="Zone" />
  802. <attribute name="Tags" />
  803. <attribute name="Position" value="-1.58774 3.71769 -0.0921001" />
  804. <attribute name="Rotation" value="1 0 0 0" />
  805. <attribute name="Scale" value="1 1 1" />
  806. <attribute name="Variables" />
  807. <component type="Zone" id="11">
  808. <attribute name="Bounding Box Min" value="-1000 -1000 -1000" />
  809. <attribute name="Bounding Box Max" value="1000 1000 1000" />
  810. <attribute name="Ambient Color" value="0 0 0 1" />
  811. <attribute name="Zone Texture" value="TextureCube;Textures/Skybox2.xml" />
  812. </component>
  813. </node>
  814. <node id="12">
  815. <attribute name="Is Enabled" value="true" />
  816. <attribute name="Name" value="Sky" />
  817. <attribute name="Tags" />
  818. <attribute name="Position" value="0 0 0" />
  819. <attribute name="Rotation" value="1 0 0 0" />
  820. <attribute name="Scale" value="1 1 1" />
  821. <attribute name="Variables" />
  822. <component type="Skybox" id="12">
  823. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  824. <attribute name="Material" value="Material;Materials/Skybox2.xml" />
  825. <attribute name="Geometry Enabled">
  826. <variant type="Bool" value="true" />
  827. </attribute>
  828. </component>
  829. </node>
  830. <node id="58">
  831. <attribute name="Is Enabled" value="true" />
  832. <attribute name="Name" value="DemoSphere" />
  833. <attribute name="Tags" />
  834. <attribute name="Position" value="0 0 0" />
  835. <attribute name="Rotation" value="1 0 0 0" />
  836. <attribute name="Scale" value="1 1 1" />
  837. <attribute name="Variables" />
  838. <node id="89">
  839. <attribute name="Is Enabled" value="true" />
  840. <attribute name="Name" value="Sphere" />
  841. <attribute name="Tags" />
  842. <attribute name="Position" value="-6.37848 3.29958 -3.50626" />
  843. <attribute name="Rotation" value="1 0 0 0" />
  844. <attribute name="Scale" value="1 1 1" />
  845. <attribute name="Variables" />
  846. <component type="StaticModel" id="98">
  847. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  848. <attribute name="Material" value="Material;Materials/PBR/MetallicRough10.material" />
  849. <attribute name="Cast Shadows" value="true" />
  850. <attribute name="Geometry Enabled">
  851. <variant type="Bool" value="true" />
  852. </attribute>
  853. </component>
  854. </node>
  855. <node id="95">
  856. <attribute name="Is Enabled" value="true" />
  857. <attribute name="Name" value="Sphere" />
  858. <attribute name="Tags" />
  859. <attribute name="Position" value="-6.37848 3.29958 0.993734" />
  860. <attribute name="Rotation" value="1 0 0 0" />
  861. <attribute name="Scale" value="1 1 1" />
  862. <attribute name="Variables" />
  863. <component type="StaticModel" id="104">
  864. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  865. <attribute name="Material" value="Material;Materials/PBR/MetallicRough3.material" />
  866. <attribute name="Cast Shadows" value="true" />
  867. <attribute name="Geometry Enabled">
  868. <variant type="Bool" value="true" />
  869. </attribute>
  870. </component>
  871. </node>
  872. <node id="98">
  873. <attribute name="Is Enabled" value="true" />
  874. <attribute name="Name" value="Sphere" />
  875. <attribute name="Tags" />
  876. <attribute name="Position" value="2.66588 3.3233 -3.50626" />
  877. <attribute name="Rotation" value="1 0 0 0" />
  878. <attribute name="Scale" value="1 1 1" />
  879. <attribute name="Variables" />
  880. <component type="StaticModel" id="107">
  881. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  882. <attribute name="Material" value="Material;Materials/PBR/Metallic10.material" />
  883. <attribute name="Cast Shadows" value="true" />
  884. <attribute name="Geometry Enabled">
  885. <variant type="Bool" value="true" />
  886. </attribute>
  887. </component>
  888. </node>
  889. <node id="99">
  890. <attribute name="Is Enabled" value="true" />
  891. <attribute name="Name" value="Sphere" />
  892. <attribute name="Tags" />
  893. <attribute name="Position" value="2.66587 3.3233 2.49373" />
  894. <attribute name="Rotation" value="1 0 0 0" />
  895. <attribute name="Scale" value="1 1 1" />
  896. <attribute name="Variables" />
  897. <component type="StaticModel" id="108">
  898. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  899. <attribute name="Material" value="Material;Materials/PBR/Metallic0.material" />
  900. <attribute name="Cast Shadows" value="true" />
  901. <attribute name="Geometry Enabled">
  902. <variant type="Bool" value="true" />
  903. </attribute>
  904. </component>
  905. </node>
  906. <node id="100">
  907. <attribute name="Is Enabled" value="true" />
  908. <attribute name="Name" value="Sphere" />
  909. <attribute name="Tags" />
  910. <attribute name="Position" value="2.66587 3.3233 0.993734" />
  911. <attribute name="Rotation" value="1 0 0 0" />
  912. <attribute name="Scale" value="1 1 1" />
  913. <attribute name="Variables" />
  914. <component type="StaticModel" id="109">
  915. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  916. <attribute name="Material" value="Material;Materials/PBR/Metallic3.material" />
  917. <attribute name="Cast Shadows" value="true" />
  918. <attribute name="Geometry Enabled">
  919. <variant type="Bool" value="true" />
  920. </attribute>
  921. </component>
  922. </node>
  923. <node id="101">
  924. <attribute name="Is Enabled" value="true" />
  925. <attribute name="Name" value="Sphere" />
  926. <attribute name="Tags" />
  927. <attribute name="Position" value="2.66587 3.3233 -0.506262" />
  928. <attribute name="Rotation" value="1 0 0 0" />
  929. <attribute name="Scale" value="1 1 1" />
  930. <attribute name="Variables" />
  931. <component type="StaticModel" id="110">
  932. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  933. <attribute name="Material" value="Material;Materials/PBR/Metallic5.material" />
  934. <attribute name="Cast Shadows" value="true" />
  935. <attribute name="Geometry Enabled">
  936. <variant type="Bool" value="true" />
  937. </attribute>
  938. </component>
  939. </node>
  940. <node id="102">
  941. <attribute name="Is Enabled" value="true" />
  942. <attribute name="Name" value="Sphere" />
  943. <attribute name="Tags" />
  944. <attribute name="Position" value="2.66587 3.3233 -2.00626" />
  945. <attribute name="Rotation" value="1 0 0 0" />
  946. <attribute name="Scale" value="1 1 1" />
  947. <attribute name="Variables" />
  948. <component type="StaticModel" id="111">
  949. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  950. <attribute name="Material" value="Material;Materials/PBR/Metallic7.material" />
  951. <attribute name="Cast Shadows" value="true" />
  952. <attribute name="Geometry Enabled">
  953. <variant type="Bool" value="true" />
  954. </attribute>
  955. </component>
  956. </node>
  957. <node id="139">
  958. <attribute name="Is Enabled" value="true" />
  959. <attribute name="Name" value="Sphere" />
  960. <attribute name="Tags" />
  961. <attribute name="Position" value="-6.37848 3.29958 2.49373" />
  962. <attribute name="Rotation" value="1 0 0 0" />
  963. <attribute name="Scale" value="1 1 1" />
  964. <attribute name="Variables" />
  965. <component type="StaticModel" id="156">
  966. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  967. <attribute name="Material" value="Material;Materials/PBR/MetallicRough0.material" />
  968. <attribute name="Cast Shadows" value="true" />
  969. <attribute name="Geometry Enabled">
  970. <variant type="Bool" value="true" />
  971. </attribute>
  972. </component>
  973. </node>
  974. <node id="140">
  975. <attribute name="Is Enabled" value="true" />
  976. <attribute name="Name" value="Sphere" />
  977. <attribute name="Tags" />
  978. <attribute name="Position" value="-5.13153 2.84736 4.61852" />
  979. <attribute name="Rotation" value="0.939693 0 -0.34202 0" />
  980. <attribute name="Scale" value="1 1 1" />
  981. <attribute name="Variables" />
  982. <component type="StaticModel" id="157">
  983. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  984. <attribute name="Material" value="Material;Materials/PBR/EmissivePannel.material" />
  985. <attribute name="Cast Shadows" value="true" />
  986. <attribute name="Geometry Enabled">
  987. <variant type="Bool" value="true" />
  988. </attribute>
  989. </component>
  990. <node id="16777236">
  991. <attribute name="Is Enabled" value="true" />
  992. <attribute name="Name" value="" />
  993. <attribute name="Tags" />
  994. <attribute name="Position" value="0.0538852 0 -0.539314" />
  995. <attribute name="Rotation" value="1 0 0 0" />
  996. <attribute name="Scale" value="1 1 1" />
  997. <attribute name="Variables" />
  998. <component type="Light" id="16777444">
  999. <attribute name="Color" value="0.77 0.47 0.08 1" />
  1000. <attribute name="Brightness Multiplier" value="15" />
  1001. <attribute name="Range" value="1.18" />
  1002. <attribute name="Light Shape Texture" value="TextureCube;" />
  1003. <attribute name="Cast Shadows" value="true" />
  1004. </component>
  1005. </node>
  1006. </node>
  1007. <node id="156">
  1008. <attribute name="Is Enabled" value="true" />
  1009. <attribute name="Name" value="Sphere" />
  1010. <attribute name="Tags" />
  1011. <attribute name="Position" value="-6.37848 3.29958 -2.00626" />
  1012. <attribute name="Rotation" value="1 0 0 0" />
  1013. <attribute name="Scale" value="1 1 1" />
  1014. <attribute name="Variables" />
  1015. <component type="StaticModel" id="175">
  1016. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1017. <attribute name="Material" value="Material;Materials/PBR/MetallicRough7.material" />
  1018. <attribute name="Cast Shadows" value="true" />
  1019. <attribute name="Geometry Enabled">
  1020. <variant type="Bool" value="true" />
  1021. </attribute>
  1022. </component>
  1023. </node>
  1024. <node id="96">
  1025. <attribute name="Is Enabled" value="true" />
  1026. <attribute name="Name" value="Sphere" />
  1027. <attribute name="Tags" />
  1028. <attribute name="Position" value="-6.37848 3.29958 -0.506262" />
  1029. <attribute name="Rotation" value="1 0 0 0" />
  1030. <attribute name="Scale" value="1 1 1" />
  1031. <attribute name="Variables" />
  1032. <component type="StaticModel" id="105">
  1033. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1034. <attribute name="Material" value="Material;Materials/PBR/MetallicRough5.material" />
  1035. <attribute name="Cast Shadows" value="true" />
  1036. <attribute name="Geometry Enabled">
  1037. <variant type="Bool" value="true" />
  1038. </attribute>
  1039. </component>
  1040. </node>
  1041. </node>
  1042. <node id="161">
  1043. <attribute name="Is Enabled" value="true" />
  1044. <attribute name="Name" value="Sphere" />
  1045. <attribute name="Tags" />
  1046. <attribute name="Position" value="-4.90273 2.84736 -3.50626" />
  1047. <attribute name="Rotation" value="1 0 0 0" />
  1048. <attribute name="Scale" value="1 1 1" />
  1049. <attribute name="Variables" />
  1050. <component type="StaticModel" id="180">
  1051. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1052. <attribute name="Material" value="Material;Materials/PBR/Roughness10.material" />
  1053. <attribute name="Cast Shadows" value="true" />
  1054. <attribute name="Geometry Enabled">
  1055. <variant type="Bool" value="true" />
  1056. </attribute>
  1057. </component>
  1058. </node>
  1059. <node id="162">
  1060. <attribute name="Is Enabled" value="true" />
  1061. <attribute name="Name" value="Sphere" />
  1062. <attribute name="Tags" />
  1063. <attribute name="Position" value="-4.90273 2.84736 0.993734" />
  1064. <attribute name="Rotation" value="1 0 0 0" />
  1065. <attribute name="Scale" value="1 1 1" />
  1066. <attribute name="Variables" />
  1067. <component type="StaticModel" id="181">
  1068. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1069. <attribute name="Material" value="Material;Materials/PBR/Roughness3.material" />
  1070. <attribute name="Cast Shadows" value="true" />
  1071. <attribute name="Geometry Enabled">
  1072. <variant type="Bool" value="true" />
  1073. </attribute>
  1074. </component>
  1075. </node>
  1076. <node id="163">
  1077. <attribute name="Is Enabled" value="true" />
  1078. <attribute name="Name" value="Sphere" />
  1079. <attribute name="Tags" />
  1080. <attribute name="Position" value="-4.90273 2.84736 -0.506262" />
  1081. <attribute name="Rotation" value="1 0 0 0" />
  1082. <attribute name="Scale" value="1 1 1" />
  1083. <attribute name="Variables" />
  1084. <component type="StaticModel" id="182">
  1085. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1086. <attribute name="Material" value="Material;Materials/PBR/Roughness5.material" />
  1087. <attribute name="Cast Shadows" value="true" />
  1088. <attribute name="Geometry Enabled">
  1089. <variant type="Bool" value="true" />
  1090. </attribute>
  1091. </component>
  1092. </node>
  1093. <node id="164">
  1094. <attribute name="Is Enabled" value="true" />
  1095. <attribute name="Name" value="Sphere" />
  1096. <attribute name="Tags" />
  1097. <attribute name="Position" value="-0.84683 2.39951 -12.7063" />
  1098. <attribute name="Rotation" value="1 0 0 0" />
  1099. <attribute name="Scale" value="1 1 1" />
  1100. <attribute name="Variables" />
  1101. <component type="StaticModel" id="183">
  1102. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1103. <attribute name="Material" value="Material;Materials/PBR/Lead.material" />
  1104. <attribute name="Cast Shadows" value="true" />
  1105. <attribute name="Geometry Enabled">
  1106. <variant type="Bool" value="true" />
  1107. </attribute>
  1108. </component>
  1109. </node>
  1110. <node id="165">
  1111. <attribute name="Is Enabled" value="true" />
  1112. <attribute name="Name" value="Sphere" />
  1113. <attribute name="Tags" />
  1114. <attribute name="Position" value="-4.90273 2.84736 -2.00626" />
  1115. <attribute name="Rotation" value="1 0 0 0" />
  1116. <attribute name="Scale" value="1 1 1" />
  1117. <attribute name="Variables" />
  1118. <component type="StaticModel" id="184">
  1119. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1120. <attribute name="Material" value="Material;Materials/PBR/Roughness7.material" />
  1121. <attribute name="Cast Shadows" value="true" />
  1122. <attribute name="Geometry Enabled">
  1123. <variant type="Bool" value="true" />
  1124. </attribute>
  1125. </component>
  1126. </node>
  1127. <node id="168">
  1128. <attribute name="Is Enabled" value="true" />
  1129. <attribute name="Name" value="SphereWithDynamicMat" />
  1130. <attribute name="Tags" />
  1131. <attribute name="Position" value="-1.57986 2.84736 -3.50626" />
  1132. <attribute name="Rotation" value="1 0 0 0" />
  1133. <attribute name="Scale" value="1 1 1" />
  1134. <attribute name="Variables" />
  1135. <component type="StaticModel" id="187">
  1136. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1137. <attribute name="Material" value="Material;Materials/PBR/Dynamic.material" />
  1138. <attribute name="Cast Shadows" value="true" />
  1139. <attribute name="Geometry Enabled">
  1140. <variant type="Bool" value="true" />
  1141. </attribute>
  1142. </component>
  1143. </node>
  1144. <node id="169">
  1145. <attribute name="Is Enabled" value="true" />
  1146. <attribute name="Name" value="Sphere" />
  1147. <attribute name="Tags" />
  1148. <attribute name="Position" value="1.13147 2.84736 2.49373" />
  1149. <attribute name="Rotation" value="1 0 0 0" />
  1150. <attribute name="Scale" value="1 1 1" />
  1151. <attribute name="Variables" />
  1152. <component type="StaticModel" id="188">
  1153. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1154. <attribute name="Material" value="Material;Materials/PBR/HighRoughMetallic0.material" />
  1155. <attribute name="Cast Shadows" value="true" />
  1156. <attribute name="Geometry Enabled">
  1157. <variant type="Bool" value="true" />
  1158. </attribute>
  1159. </component>
  1160. </node>
  1161. <node id="170">
  1162. <attribute name="Is Enabled" value="true" />
  1163. <attribute name="Name" value="Sphere" />
  1164. <attribute name="Tags" />
  1165. <attribute name="Position" value="1.13147 2.84736 0.993734" />
  1166. <attribute name="Rotation" value="1 0 0 0" />
  1167. <attribute name="Scale" value="1 1 1" />
  1168. <attribute name="Variables" />
  1169. <component type="StaticModel" id="189">
  1170. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1171. <attribute name="Material" value="Material;Materials/PBR/HighRoughMetallic3.material" />
  1172. <attribute name="Cast Shadows" value="true" />
  1173. <attribute name="Geometry Enabled">
  1174. <variant type="Bool" value="true" />
  1175. </attribute>
  1176. </component>
  1177. </node>
  1178. <node id="171">
  1179. <attribute name="Is Enabled" value="true" />
  1180. <attribute name="Name" value="Sphere" />
  1181. <attribute name="Tags" />
  1182. <attribute name="Position" value="1.13147 2.84736 -0.506262" />
  1183. <attribute name="Rotation" value="1 0 0 0" />
  1184. <attribute name="Scale" value="1 1 1" />
  1185. <attribute name="Variables" />
  1186. <component type="StaticModel" id="190">
  1187. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1188. <attribute name="Material" value="Material;Materials/PBR/HighRoughMetallic5.material" />
  1189. <attribute name="Cast Shadows" value="true" />
  1190. <attribute name="Geometry Enabled">
  1191. <variant type="Bool" value="true" />
  1192. </attribute>
  1193. </component>
  1194. </node>
  1195. <node id="172">
  1196. <attribute name="Is Enabled" value="true" />
  1197. <attribute name="Name" value="Sphere" />
  1198. <attribute name="Tags" />
  1199. <attribute name="Position" value="1.13147 2.84736 -2.00626" />
  1200. <attribute name="Rotation" value="1 0 0 0" />
  1201. <attribute name="Scale" value="1 1 1" />
  1202. <attribute name="Variables" />
  1203. <component type="StaticModel" id="191">
  1204. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1205. <attribute name="Material" value="Material;Materials/PBR/HighRoughMetallic7.material" />
  1206. <attribute name="Cast Shadows" value="true" />
  1207. <attribute name="Geometry Enabled">
  1208. <variant type="Bool" value="true" />
  1209. </attribute>
  1210. </component>
  1211. </node>
  1212. <node id="4">
  1213. <attribute name="Is Enabled" value="true" />
  1214. <attribute name="Name" value="Light" />
  1215. <attribute name="Tags" />
  1216. <attribute name="Position" value="4.04012 -4.45908 11.8185" />
  1217. <attribute name="Rotation" value="1 0 0 0" />
  1218. <attribute name="Scale" value="1 1 1" />
  1219. <attribute name="Variables" />
  1220. <node id="103">
  1221. <attribute name="Is Enabled" value="true" />
  1222. <attribute name="Name" value="Sun" />
  1223. <attribute name="Tags" />
  1224. <attribute name="Position" value="0 0 0" />
  1225. <attribute name="Rotation" value="1 2.42226e-20 2.77556e-17 0.000872708" />
  1226. <attribute name="Scale" value="1 1 1" />
  1227. <attribute name="Variables" />
  1228. <node id="5">
  1229. <attribute name="Is Enabled" value="true" />
  1230. <attribute name="Name" value="Directional" />
  1231. <attribute name="Tags" />
  1232. <attribute name="Position" value="9.63011 -7.15256e-06 1" />
  1233. <attribute name="Rotation" value="0.707107 0.707107 0 0" />
  1234. <attribute name="Scale" value="1 1 1" />
  1235. <attribute name="Variables" />
  1236. <component type="Light" id="4">
  1237. <attribute name="Light Type" value="Directional" />
  1238. <attribute name="Brightness Multiplier" value="2" />
  1239. <attribute name="Cast Shadows" value="true" />
  1240. <attribute name="CSM Splits" value="10 20 30 40" />
  1241. </component>
  1242. </node>
  1243. </node>
  1244. </node>
  1245. <node id="173">
  1246. <attribute name="Is Enabled" value="true" />
  1247. <attribute name="Name" value="Plane" />
  1248. <attribute name="Tags" />
  1249. <attribute name="Position" value="-5.33303 2.35842 -4.11643" />
  1250. <attribute name="Rotation" value="1 0 0 0" />
  1251. <attribute name="Scale" value="3 1 3" />
  1252. <attribute name="Variables" />
  1253. <component type="StaticModel" id="192">
  1254. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1255. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1256. <attribute name="Geometry Enabled">
  1257. <variant type="Bool" value="true" />
  1258. </attribute>
  1259. </component>
  1260. </node>
  1261. <node id="174">
  1262. <attribute name="Is Enabled" value="true" />
  1263. <attribute name="Name" value="Plane" />
  1264. <attribute name="Tags" />
  1265. <attribute name="Position" value="-2.33303 2.35842 -4.11643" />
  1266. <attribute name="Rotation" value="1 0 0 0" />
  1267. <attribute name="Scale" value="3 1 3" />
  1268. <attribute name="Variables" />
  1269. <component type="StaticModel" id="193">
  1270. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1271. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1272. <attribute name="Geometry Enabled">
  1273. <variant type="Bool" value="true" />
  1274. </attribute>
  1275. </component>
  1276. </node>
  1277. <node id="175">
  1278. <attribute name="Is Enabled" value="true" />
  1279. <attribute name="Name" value="Plane" />
  1280. <attribute name="Tags" />
  1281. <attribute name="Position" value="0.66697 2.35842 -4.11643" />
  1282. <attribute name="Rotation" value="1 0 0 0" />
  1283. <attribute name="Scale" value="3 1 3" />
  1284. <attribute name="Variables" />
  1285. <component type="StaticModel" id="194">
  1286. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1287. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1288. <attribute name="Geometry Enabled">
  1289. <variant type="Bool" value="true" />
  1290. </attribute>
  1291. </component>
  1292. </node>
  1293. <node id="176">
  1294. <attribute name="Is Enabled" value="true" />
  1295. <attribute name="Name" value="Plane" />
  1296. <attribute name="Tags" />
  1297. <attribute name="Position" value="-5.33303 2.35842 -7.11643" />
  1298. <attribute name="Rotation" value="1 0 0 0" />
  1299. <attribute name="Scale" value="3 1 3" />
  1300. <attribute name="Variables" />
  1301. <component type="StaticModel" id="195">
  1302. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1303. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1304. <attribute name="Geometry Enabled">
  1305. <variant type="Bool" value="true" />
  1306. </attribute>
  1307. </component>
  1308. </node>
  1309. <node id="177">
  1310. <attribute name="Is Enabled" value="true" />
  1311. <attribute name="Name" value="Plane" />
  1312. <attribute name="Tags" />
  1313. <attribute name="Position" value="-2.33303 2.35842 -7.11643" />
  1314. <attribute name="Rotation" value="1 0 0 0" />
  1315. <attribute name="Scale" value="3 1 3" />
  1316. <attribute name="Variables" />
  1317. <component type="StaticModel" id="196">
  1318. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1319. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1320. <attribute name="Geometry Enabled">
  1321. <variant type="Bool" value="true" />
  1322. </attribute>
  1323. </component>
  1324. </node>
  1325. <node id="178">
  1326. <attribute name="Is Enabled" value="true" />
  1327. <attribute name="Name" value="Plane" />
  1328. <attribute name="Tags" />
  1329. <attribute name="Position" value="0.66697 2.35842 -7.11643" />
  1330. <attribute name="Rotation" value="1 0 0 0" />
  1331. <attribute name="Scale" value="3 1 3" />
  1332. <attribute name="Variables" />
  1333. <component type="StaticModel" id="197">
  1334. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1335. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1336. <attribute name="Geometry Enabled">
  1337. <variant type="Bool" value="true" />
  1338. </attribute>
  1339. </component>
  1340. </node>
  1341. <node id="179">
  1342. <attribute name="Is Enabled" value="true" />
  1343. <attribute name="Name" value="Plane" />
  1344. <attribute name="Tags" />
  1345. <attribute name="Position" value="-5.33303 2.35842 -10.1164" />
  1346. <attribute name="Rotation" value="1 0 0 0" />
  1347. <attribute name="Scale" value="3 1 3" />
  1348. <attribute name="Variables" />
  1349. <component type="StaticModel" id="198">
  1350. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1351. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1352. <attribute name="Geometry Enabled">
  1353. <variant type="Bool" value="true" />
  1354. </attribute>
  1355. </component>
  1356. </node>
  1357. <node id="180">
  1358. <attribute name="Is Enabled" value="true" />
  1359. <attribute name="Name" value="Plane" />
  1360. <attribute name="Tags" />
  1361. <attribute name="Position" value="-2.33303 2.35842 -10.1164" />
  1362. <attribute name="Rotation" value="1 0 0 0" />
  1363. <attribute name="Scale" value="3 1 3" />
  1364. <attribute name="Variables" />
  1365. <component type="StaticModel" id="199">
  1366. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1367. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1368. <attribute name="Geometry Enabled">
  1369. <variant type="Bool" value="true" />
  1370. </attribute>
  1371. </component>
  1372. </node>
  1373. <node id="181">
  1374. <attribute name="Is Enabled" value="true" />
  1375. <attribute name="Name" value="Plane" />
  1376. <attribute name="Tags" />
  1377. <attribute name="Position" value="0.66697 2.35842 -10.1164" />
  1378. <attribute name="Rotation" value="1 0 0 0" />
  1379. <attribute name="Scale" value="3 1 3" />
  1380. <attribute name="Variables" />
  1381. <component type="StaticModel" id="200">
  1382. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1383. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1384. <attribute name="Geometry Enabled">
  1385. <variant type="Bool" value="true" />
  1386. </attribute>
  1387. </component>
  1388. </node>
  1389. <node id="182">
  1390. <attribute name="Is Enabled" value="true" />
  1391. <attribute name="Name" value="Plane" />
  1392. <attribute name="Tags" />
  1393. <attribute name="Position" value="-5.33303 2.35842 -13.1164" />
  1394. <attribute name="Rotation" value="1 0 0 0" />
  1395. <attribute name="Scale" value="3 1 3" />
  1396. <attribute name="Variables" />
  1397. <component type="StaticModel" id="201">
  1398. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1399. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1400. <attribute name="Geometry Enabled">
  1401. <variant type="Bool" value="true" />
  1402. </attribute>
  1403. </component>
  1404. </node>
  1405. <node id="183">
  1406. <attribute name="Is Enabled" value="true" />
  1407. <attribute name="Name" value="Plane" />
  1408. <attribute name="Tags" />
  1409. <attribute name="Position" value="-2.33303 2.35842 -13.1164" />
  1410. <attribute name="Rotation" value="1 0 0 0" />
  1411. <attribute name="Scale" value="3 1 3" />
  1412. <attribute name="Variables" />
  1413. <component type="StaticModel" id="202">
  1414. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1415. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1416. <attribute name="Geometry Enabled">
  1417. <variant type="Bool" value="true" />
  1418. </attribute>
  1419. </component>
  1420. </node>
  1421. <node id="184">
  1422. <attribute name="Is Enabled" value="true" />
  1423. <attribute name="Name" value="Plane" />
  1424. <attribute name="Tags" />
  1425. <attribute name="Position" value="0.66697 2.35842 -13.1164" />
  1426. <attribute name="Rotation" value="1 0 0 0" />
  1427. <attribute name="Scale" value="3 1 3" />
  1428. <attribute name="Variables" />
  1429. <component type="StaticModel" id="203">
  1430. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1431. <attribute name="Material" value="Material;Materials/PBR/Check.material" />
  1432. <attribute name="Geometry Enabled">
  1433. <variant type="Bool" value="true" />
  1434. </attribute>
  1435. </component>
  1436. </node>
  1437. <node id="185">
  1438. <attribute name="Is Enabled" value="true" />
  1439. <attribute name="Name" value="Box" />
  1440. <attribute name="Tags" />
  1441. <attribute name="Position" value="2.66697 1.35842 -8.11643" />
  1442. <attribute name="Rotation" value="0.707107 0 0.707107 0" />
  1443. <attribute name="Scale" value="3 3 1" />
  1444. <attribute name="Variables" />
  1445. <component type="StaticModel" id="204">
  1446. <attribute name="Model" value="Model;Models/Box.mdl" />
  1447. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  1448. <attribute name="Cast Shadows" value="true" />
  1449. <attribute name="Geometry Enabled">
  1450. <variant type="Bool" value="true" />
  1451. </attribute>
  1452. </component>
  1453. </node>
  1454. <node id="186">
  1455. <attribute name="Is Enabled" value="true" />
  1456. <attribute name="Name" value="Box" />
  1457. <attribute name="Tags" />
  1458. <attribute name="Position" value="-6.33303 1.35842 -4.11643" />
  1459. <attribute name="Rotation" value="0.707107 0 -0.707107 0" />
  1460. <attribute name="Scale" value="3 3 1" />
  1461. <attribute name="Variables" />
  1462. <component type="StaticModel" id="205">
  1463. <attribute name="Model" value="Model;Models/Box.mdl" />
  1464. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  1465. <attribute name="Cast Shadows" value="true" />
  1466. <attribute name="Geometry Enabled">
  1467. <variant type="Bool" value="true" />
  1468. </attribute>
  1469. </component>
  1470. </node>
  1471. <node id="187">
  1472. <attribute name="Is Enabled" value="true" />
  1473. <attribute name="Name" value="Box" />
  1474. <attribute name="Tags" />
  1475. <attribute name="Position" value="2.66697 1.35842 -14.1164" />
  1476. <attribute name="Rotation" value="0.707107 0 0.707107 0" />
  1477. <attribute name="Scale" value="3 3 1" />
  1478. <attribute name="Variables" />
  1479. <component type="StaticModel" id="206">
  1480. <attribute name="Model" value="Model;Models/Box.mdl" />
  1481. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  1482. <attribute name="Cast Shadows" value="true" />
  1483. <attribute name="Geometry Enabled">
  1484. <variant type="Bool" value="true" />
  1485. </attribute>
  1486. </component>
  1487. </node>
  1488. <node id="188">
  1489. <attribute name="Is Enabled" value="true" />
  1490. <attribute name="Name" value="Box" />
  1491. <attribute name="Tags" />
  1492. <attribute name="Position" value="-6.33303 1.35842 -7.11643" />
  1493. <attribute name="Rotation" value="0.707107 0 -0.707107 0" />
  1494. <attribute name="Scale" value="3 3 1" />
  1495. <attribute name="Variables" />
  1496. <component type="StaticModel" id="207">
  1497. <attribute name="Model" value="Model;Models/Box.mdl" />
  1498. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  1499. <attribute name="Cast Shadows" value="true" />
  1500. <attribute name="Geometry Enabled">
  1501. <variant type="Bool" value="true" />
  1502. </attribute>
  1503. </component>
  1504. </node>
  1505. <node id="190">
  1506. <attribute name="Is Enabled" value="true" />
  1507. <attribute name="Name" value="Box" />
  1508. <attribute name="Tags" />
  1509. <attribute name="Position" value="-6.33303 1.35842 -10.1164" />
  1510. <attribute name="Rotation" value="0.707107 0 -0.707107 0" />
  1511. <attribute name="Scale" value="3 3 1" />
  1512. <attribute name="Variables" />
  1513. <component type="StaticModel" id="209">
  1514. <attribute name="Model" value="Model;Models/Box.mdl" />
  1515. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  1516. <attribute name="Cast Shadows" value="true" />
  1517. <attribute name="Geometry Enabled">
  1518. <variant type="Bool" value="true" />
  1519. </attribute>
  1520. </component>
  1521. </node>
  1522. <node id="199">
  1523. <attribute name="Is Enabled" value="true" />
  1524. <attribute name="Name" value="Sphere" />
  1525. <attribute name="Tags" />
  1526. <attribute name="Position" value="-4.90273 2.84736 2.49373" />
  1527. <attribute name="Rotation" value="1 0 0 0" />
  1528. <attribute name="Scale" value="1 1 1" />
  1529. <attribute name="Variables" />
  1530. <component type="StaticModel" id="218">
  1531. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1532. <attribute name="Material" value="Material;Materials/PBR/Roughness0.material" />
  1533. <attribute name="Cast Shadows" value="true" />
  1534. <attribute name="Geometry Enabled">
  1535. <variant type="Bool" value="true" />
  1536. </attribute>
  1537. </component>
  1538. </node>
  1539. <node id="200">
  1540. <attribute name="Is Enabled" value="true" />
  1541. <attribute name="Name" value="Sphere" />
  1542. <attribute name="Tags" />
  1543. <attribute name="Position" value="-4.90273 2.84736 -12.7491" />
  1544. <attribute name="Rotation" value="1 0 0 0" />
  1545. <attribute name="Scale" value="1 1 1" />
  1546. <attribute name="Variables" />
  1547. <component type="StaticModel" id="219">
  1548. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1549. <attribute name="Material" value="Material;Materials/PBR/Lead.material" />
  1550. <attribute name="Cast Shadows" value="true" />
  1551. <attribute name="Geometry Enabled">
  1552. <variant type="Bool" value="true" />
  1553. </attribute>
  1554. </component>
  1555. </node>
  1556. <node id="201">
  1557. <attribute name="Is Enabled" value="true" />
  1558. <attribute name="Name" value="Sphere" />
  1559. <attribute name="Tags" />
  1560. <attribute name="Position" value="-4.90273 2.84736 -8.24909" />
  1561. <attribute name="Rotation" value="1 0 0 0" />
  1562. <attribute name="Scale" value="1 1 1" />
  1563. <attribute name="Variables" />
  1564. <component type="StaticModel" id="220">
  1565. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1566. <attribute name="Material" value="Material;Materials/PBR/Sand.material" />
  1567. <attribute name="Cast Shadows" value="true" />
  1568. <attribute name="Geometry Enabled">
  1569. <variant type="Bool" value="true" />
  1570. </attribute>
  1571. </component>
  1572. </node>
  1573. <node id="202">
  1574. <attribute name="Is Enabled" value="true" />
  1575. <attribute name="Name" value="Sphere" />
  1576. <attribute name="Tags" />
  1577. <attribute name="Position" value="-0.84683 2.39951 -8.24909" />
  1578. <attribute name="Rotation" value="1 0 0 0" />
  1579. <attribute name="Scale" value="1 1 1" />
  1580. <attribute name="Variables" />
  1581. <component type="StaticModel" id="221">
  1582. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1583. <attribute name="Material" value="Material;Materials/PBR/Sand.material" />
  1584. <attribute name="Cast Shadows" value="true" />
  1585. <attribute name="Geometry Enabled">
  1586. <variant type="Bool" value="true" />
  1587. </attribute>
  1588. </component>
  1589. </node>
  1590. <node id="203">
  1591. <attribute name="Is Enabled" value="true" />
  1592. <attribute name="Name" value="Sphere" />
  1593. <attribute name="Tags" />
  1594. <attribute name="Position" value="-0.84683 2.39951 -6.70634" />
  1595. <attribute name="Rotation" value="1 0 0 0" />
  1596. <attribute name="Scale" value="1 1 1" />
  1597. <attribute name="Variables" />
  1598. <component type="StaticModel" id="222">
  1599. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1600. <attribute name="Material" value="Material;Materials/PBR/Leather.material" />
  1601. <attribute name="Cast Shadows" value="true" />
  1602. <attribute name="Geometry Enabled">
  1603. <variant type="Bool" value="true" />
  1604. </attribute>
  1605. </component>
  1606. </node>
  1607. <node id="204">
  1608. <attribute name="Is Enabled" value="true" />
  1609. <attribute name="Name" value="Sphere" />
  1610. <attribute name="Tags" />
  1611. <attribute name="Position" value="-4.90273 2.84736 -6.74909" />
  1612. <attribute name="Rotation" value="1 0 0 0" />
  1613. <attribute name="Scale" value="1 1 1" />
  1614. <attribute name="Variables" />
  1615. <component type="StaticModel" id="223">
  1616. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1617. <attribute name="Material" value="Material;Materials/PBR/Leather.material" />
  1618. <attribute name="Cast Shadows" value="true" />
  1619. <attribute name="Geometry Enabled">
  1620. <variant type="Bool" value="true" />
  1621. </attribute>
  1622. </component>
  1623. </node>
  1624. <node id="207">
  1625. <attribute name="Is Enabled" value="true" />
  1626. <attribute name="Name" value="Sphere" />
  1627. <attribute name="Tags" />
  1628. <attribute name="Position" value="-0.84683 2.39951 -9.70634" />
  1629. <attribute name="Rotation" value="1 0 0 0" />
  1630. <attribute name="Scale" value="1 1 1" />
  1631. <attribute name="Variables" />
  1632. <component type="StaticModel" id="226">
  1633. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1634. <attribute name="Material" value="Material;Materials/PBR/Mud.material" />
  1635. <attribute name="Cast Shadows" value="true" />
  1636. <attribute name="Geometry Enabled">
  1637. <variant type="Bool" value="true" />
  1638. </attribute>
  1639. </component>
  1640. </node>
  1641. <node id="208">
  1642. <attribute name="Is Enabled" value="true" />
  1643. <attribute name="Name" value="Sphere" />
  1644. <attribute name="Tags" />
  1645. <attribute name="Position" value="-4.90273 2.84736 -9.74909" />
  1646. <attribute name="Rotation" value="1 0 0 0" />
  1647. <attribute name="Scale" value="1 1 1" />
  1648. <attribute name="Variables" />
  1649. <component type="StaticModel" id="227">
  1650. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1651. <attribute name="Material" value="Material;Materials/PBR/Mud.material" />
  1652. <attribute name="Cast Shadows" value="true" />
  1653. <attribute name="Geometry Enabled">
  1654. <variant type="Bool" value="true" />
  1655. </attribute>
  1656. </component>
  1657. </node>
  1658. <node id="209">
  1659. <attribute name="Is Enabled" value="true" />
  1660. <attribute name="Name" value="Sphere" />
  1661. <attribute name="Tags" />
  1662. <attribute name="Position" value="-0.84683 2.39951 -11.2063" />
  1663. <attribute name="Rotation" value="1 0 0 0" />
  1664. <attribute name="Scale" value="1 1 1" />
  1665. <attribute name="Variables" />
  1666. <component type="StaticModel" id="228">
  1667. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1668. <attribute name="Material" value="Material;Materials/PBR/DiamonPlate.material" />
  1669. <attribute name="Cast Shadows" value="true" />
  1670. <attribute name="Geometry Enabled">
  1671. <variant type="Bool" value="true" />
  1672. </attribute>
  1673. </component>
  1674. </node>
  1675. <node id="210">
  1676. <attribute name="Is Enabled" value="true" />
  1677. <attribute name="Name" value="Sphere" />
  1678. <attribute name="Tags" />
  1679. <attribute name="Position" value="-4.90273 2.84736 -11.2491" />
  1680. <attribute name="Rotation" value="1 0 0 0" />
  1681. <attribute name="Scale" value="1 1 1" />
  1682. <attribute name="Variables" />
  1683. <component type="StaticModel" id="229">
  1684. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1685. <attribute name="Material" value="Material;Materials/PBR/DiamonPlate.material" />
  1686. <attribute name="Cast Shadows" value="true" />
  1687. <attribute name="Geometry Enabled">
  1688. <variant type="Bool" value="true" />
  1689. </attribute>
  1690. </component>
  1691. </node>
  1692. <node id="211">
  1693. <attribute name="Is Enabled" value="true" />
  1694. <attribute name="Name" value="Box" />
  1695. <attribute name="Tags" />
  1696. <attribute name="Position" value="2.66697 1.35842 -11.1164" />
  1697. <attribute name="Rotation" value="0.707107 0 0.707107 0" />
  1698. <attribute name="Scale" value="3 3 1" />
  1699. <attribute name="Variables" />
  1700. <component type="StaticModel" id="230">
  1701. <attribute name="Model" value="Model;Models/Box.mdl" />
  1702. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  1703. <attribute name="Cast Shadows" value="true" />
  1704. <attribute name="Geometry Enabled">
  1705. <variant type="Bool" value="true" />
  1706. </attribute>
  1707. </component>
  1708. </node>
  1709. <node id="212">
  1710. <attribute name="Is Enabled" value="true" />
  1711. <attribute name="Name" value="Box" />
  1712. <attribute name="Tags" />
  1713. <attribute name="Position" value="-3.95347 2.08884 -0.61643" />
  1714. <attribute name="Rotation" value="-0.651315 0.275298 0.651315 0.275298" />
  1715. <attribute name="Scale" value="3 0.3 1" />
  1716. <attribute name="Variables" />
  1717. <component type="StaticModel" id="231">
  1718. <attribute name="Model" value="Model;Models/Box.mdl" />
  1719. <attribute name="Material" value="Material;Materials/PBR/Tile.material" />
  1720. <attribute name="Cast Shadows" value="true" />
  1721. <attribute name="Geometry Enabled">
  1722. <variant type="Bool" value="true" />
  1723. </attribute>
  1724. </component>
  1725. </node>
  1726. <node id="215">
  1727. <attribute name="Is Enabled" value="true" />
  1728. <attribute name="Name" value="HoverBike" />
  1729. <attribute name="Tags" />
  1730. <attribute name="Position" value="1.34172 2.37148 -10.6186" />
  1731. <attribute name="Rotation" value="0.707107 0.707107 0 0" />
  1732. <attribute name="Scale" value="0.02 0.02 0.02" />
  1733. <attribute name="Variables" />
  1734. <component type="StaticModel" id="234">
  1735. <attribute name="Model" value="Model;Models/HoverBike.mdl" />
  1736. <attribute name="Material" value="Material;Materials/PBR/HoverBikeGlass.material;Materials/PBR/HoverBikeHull.material" />
  1737. <attribute name="Cast Shadows" value="true" />
  1738. <attribute name="Geometry Enabled">
  1739. <variant type="Bool" value="true" />
  1740. <variant type="Bool" value="true" />
  1741. </attribute>
  1742. </component>
  1743. </node>
  1744. <node id="216">
  1745. <attribute name="Is Enabled" value="true" />
  1746. <attribute name="Name" value="Sphere" />
  1747. <attribute name="Tags" />
  1748. <attribute name="Position" value="1.13148 2.84736 -3.50626" />
  1749. <attribute name="Rotation" value="1 0 0 0" />
  1750. <attribute name="Scale" value="1 1 1" />
  1751. <attribute name="Variables" />
  1752. <component type="StaticModel" id="235">
  1753. <attribute name="Model" value="Model;Models/Sphere.mdl" />
  1754. <attribute name="Material" value="Material;Materials/PBR/HighRoughMetallic10.material" />
  1755. <attribute name="Cast Shadows" value="true" />
  1756. <attribute name="Geometry Enabled">
  1757. <variant type="Bool" value="true" />
  1758. </attribute>
  1759. </component>
  1760. </node>
  1761. <node id="217">
  1762. <attribute name="Is Enabled" value="true" />
  1763. <attribute name="Name" value="Sphere" />
  1764. <attribute name="Tags" />
  1765. <attribute name="Position" value="-3.84683 2.39951 -11.2063" />
  1766. <attribute name="Rotation" value="1 0 0 0" />
  1767. <attribute name="Scale" value="1 1 1" />
  1768. <attribute name="Variables" />
  1769. <component type="StaticModel" id="236">
  1770. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1771. <attribute name="Material" value="Material;Materials/PBR/DiamonPlate.material" />
  1772. <attribute name="Cast Shadows" value="true" />
  1773. <attribute name="Geometry Enabled">
  1774. <variant type="Bool" value="true" />
  1775. </attribute>
  1776. </component>
  1777. </node>
  1778. <node id="218">
  1779. <attribute name="Is Enabled" value="true" />
  1780. <attribute name="Name" value="Sphere" />
  1781. <attribute name="Tags" />
  1782. <attribute name="Position" value="-2.84683 2.39951 -11.2063" />
  1783. <attribute name="Rotation" value="1 0 0 0" />
  1784. <attribute name="Scale" value="1 1 1" />
  1785. <attribute name="Variables" />
  1786. <component type="StaticModel" id="237">
  1787. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1788. <attribute name="Material" value="Material;Materials/PBR/DiamonPlate.material" />
  1789. <attribute name="Cast Shadows" value="true" />
  1790. <attribute name="Geometry Enabled">
  1791. <variant type="Bool" value="true" />
  1792. </attribute>
  1793. </component>
  1794. </node>
  1795. <node id="219">
  1796. <attribute name="Is Enabled" value="true" />
  1797. <attribute name="Name" value="Sphere" />
  1798. <attribute name="Tags" />
  1799. <attribute name="Position" value="-1.84683 2.39951 -11.2063" />
  1800. <attribute name="Rotation" value="1 0 0 0" />
  1801. <attribute name="Scale" value="1 1 1" />
  1802. <attribute name="Variables" />
  1803. <component type="StaticModel" id="238">
  1804. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1805. <attribute name="Material" value="Material;Materials/PBR/DiamonPlate.material" />
  1806. <attribute name="Cast Shadows" value="true" />
  1807. <attribute name="Geometry Enabled">
  1808. <variant type="Bool" value="true" />
  1809. </attribute>
  1810. </component>
  1811. </node>
  1812. <node id="220">
  1813. <attribute name="Is Enabled" value="true" />
  1814. <attribute name="Name" value="Sphere" />
  1815. <attribute name="Tags" />
  1816. <attribute name="Position" value="-3.84683 2.39951 -12.7063" />
  1817. <attribute name="Rotation" value="1 0 0 0" />
  1818. <attribute name="Scale" value="1 1 1" />
  1819. <attribute name="Variables" />
  1820. <component type="StaticModel" id="239">
  1821. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1822. <attribute name="Material" value="Material;Materials/PBR/Lead.material" />
  1823. <attribute name="Cast Shadows" value="true" />
  1824. <attribute name="Geometry Enabled">
  1825. <variant type="Bool" value="true" />
  1826. </attribute>
  1827. </component>
  1828. </node>
  1829. <node id="221">
  1830. <attribute name="Is Enabled" value="true" />
  1831. <attribute name="Name" value="Sphere" />
  1832. <attribute name="Tags" />
  1833. <attribute name="Position" value="-2.84683 2.39951 -12.7063" />
  1834. <attribute name="Rotation" value="1 0 0 0" />
  1835. <attribute name="Scale" value="1 1 1" />
  1836. <attribute name="Variables" />
  1837. <component type="StaticModel" id="240">
  1838. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1839. <attribute name="Material" value="Material;Materials/PBR/Lead.material" />
  1840. <attribute name="Cast Shadows" value="true" />
  1841. <attribute name="Geometry Enabled">
  1842. <variant type="Bool" value="true" />
  1843. </attribute>
  1844. </component>
  1845. </node>
  1846. <node id="222">
  1847. <attribute name="Is Enabled" value="true" />
  1848. <attribute name="Name" value="Sphere" />
  1849. <attribute name="Tags" />
  1850. <attribute name="Position" value="-1.84683 2.39951 -12.7063" />
  1851. <attribute name="Rotation" value="1 0 0 0" />
  1852. <attribute name="Scale" value="1 1 1" />
  1853. <attribute name="Variables" />
  1854. <component type="StaticModel" id="241">
  1855. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1856. <attribute name="Material" value="Material;Materials/PBR/Lead.material" />
  1857. <attribute name="Cast Shadows" value="true" />
  1858. <attribute name="Geometry Enabled">
  1859. <variant type="Bool" value="true" />
  1860. </attribute>
  1861. </component>
  1862. </node>
  1863. <node id="223">
  1864. <attribute name="Is Enabled" value="true" />
  1865. <attribute name="Name" value="Sphere" />
  1866. <attribute name="Tags" />
  1867. <attribute name="Position" value="-3.84683 2.39951 -8.24909" />
  1868. <attribute name="Rotation" value="1 0 0 0" />
  1869. <attribute name="Scale" value="1 1 1" />
  1870. <attribute name="Variables" />
  1871. <component type="StaticModel" id="242">
  1872. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1873. <attribute name="Material" value="Material;Materials/PBR/Sand.material" />
  1874. <attribute name="Cast Shadows" value="true" />
  1875. <attribute name="Geometry Enabled">
  1876. <variant type="Bool" value="true" />
  1877. </attribute>
  1878. </component>
  1879. </node>
  1880. <node id="224">
  1881. <attribute name="Is Enabled" value="true" />
  1882. <attribute name="Name" value="Sphere" />
  1883. <attribute name="Tags" />
  1884. <attribute name="Position" value="-2.84683 2.39951 -8.24909" />
  1885. <attribute name="Rotation" value="1 0 0 0" />
  1886. <attribute name="Scale" value="1 1 1" />
  1887. <attribute name="Variables" />
  1888. <component type="StaticModel" id="243">
  1889. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1890. <attribute name="Material" value="Material;Materials/PBR/Sand.material" />
  1891. <attribute name="Cast Shadows" value="true" />
  1892. <attribute name="Geometry Enabled">
  1893. <variant type="Bool" value="true" />
  1894. </attribute>
  1895. </component>
  1896. </node>
  1897. <node id="225">
  1898. <attribute name="Is Enabled" value="true" />
  1899. <attribute name="Name" value="Sphere" />
  1900. <attribute name="Tags" />
  1901. <attribute name="Position" value="-1.84683 2.39951 -8.24909" />
  1902. <attribute name="Rotation" value="1 0 0 0" />
  1903. <attribute name="Scale" value="1 1 1" />
  1904. <attribute name="Variables" />
  1905. <component type="StaticModel" id="244">
  1906. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1907. <attribute name="Material" value="Material;Materials/PBR/Sand.material" />
  1908. <attribute name="Cast Shadows" value="true" />
  1909. <attribute name="Geometry Enabled">
  1910. <variant type="Bool" value="true" />
  1911. </attribute>
  1912. </component>
  1913. </node>
  1914. <node id="226">
  1915. <attribute name="Is Enabled" value="true" />
  1916. <attribute name="Name" value="Sphere" />
  1917. <attribute name="Tags" />
  1918. <attribute name="Position" value="-3.84683 2.39951 -9.70634" />
  1919. <attribute name="Rotation" value="1 0 0 0" />
  1920. <attribute name="Scale" value="1 1 1" />
  1921. <attribute name="Variables" />
  1922. <component type="StaticModel" id="245">
  1923. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1924. <attribute name="Material" value="Material;Materials/PBR/Mud.material" />
  1925. <attribute name="Cast Shadows" value="true" />
  1926. <attribute name="Geometry Enabled">
  1927. <variant type="Bool" value="true" />
  1928. </attribute>
  1929. </component>
  1930. </node>
  1931. <node id="227">
  1932. <attribute name="Is Enabled" value="true" />
  1933. <attribute name="Name" value="Sphere" />
  1934. <attribute name="Tags" />
  1935. <attribute name="Position" value="-2.84683 2.39951 -9.70634" />
  1936. <attribute name="Rotation" value="1 0 0 0" />
  1937. <attribute name="Scale" value="1 1 1" />
  1938. <attribute name="Variables" />
  1939. <component type="StaticModel" id="246">
  1940. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1941. <attribute name="Material" value="Material;Materials/PBR/Mud.material" />
  1942. <attribute name="Cast Shadows" value="true" />
  1943. <attribute name="Geometry Enabled">
  1944. <variant type="Bool" value="true" />
  1945. </attribute>
  1946. </component>
  1947. </node>
  1948. <node id="228">
  1949. <attribute name="Is Enabled" value="true" />
  1950. <attribute name="Name" value="Sphere" />
  1951. <attribute name="Tags" />
  1952. <attribute name="Position" value="-1.84683 2.39951 -9.70634" />
  1953. <attribute name="Rotation" value="1 0 0 0" />
  1954. <attribute name="Scale" value="1 1 1" />
  1955. <attribute name="Variables" />
  1956. <component type="StaticModel" id="247">
  1957. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1958. <attribute name="Material" value="Material;Materials/PBR/Mud.material" />
  1959. <attribute name="Cast Shadows" value="true" />
  1960. <attribute name="Geometry Enabled">
  1961. <variant type="Bool" value="true" />
  1962. </attribute>
  1963. </component>
  1964. </node>
  1965. <node id="229">
  1966. <attribute name="Is Enabled" value="true" />
  1967. <attribute name="Name" value="Sphere" />
  1968. <attribute name="Tags" />
  1969. <attribute name="Position" value="-3.84683 2.39951 -6.70634" />
  1970. <attribute name="Rotation" value="1 0 0 0" />
  1971. <attribute name="Scale" value="1 1 1" />
  1972. <attribute name="Variables" />
  1973. <component type="StaticModel" id="248">
  1974. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1975. <attribute name="Material" value="Material;Materials/PBR/Leather.material" />
  1976. <attribute name="Cast Shadows" value="true" />
  1977. <attribute name="Geometry Enabled">
  1978. <variant type="Bool" value="true" />
  1979. </attribute>
  1980. </component>
  1981. </node>
  1982. <node id="230">
  1983. <attribute name="Is Enabled" value="true" />
  1984. <attribute name="Name" value="Sphere" />
  1985. <attribute name="Tags" />
  1986. <attribute name="Position" value="-2.84683 2.39951 -6.70634" />
  1987. <attribute name="Rotation" value="1 0 0 0" />
  1988. <attribute name="Scale" value="1 1 1" />
  1989. <attribute name="Variables" />
  1990. <component type="StaticModel" id="249">
  1991. <attribute name="Model" value="Model;Models/Plane.mdl" />
  1992. <attribute name="Material" value="Material;Materials/PBR/Leather.material" />
  1993. <attribute name="Cast Shadows" value="true" />
  1994. <attribute name="Geometry Enabled">
  1995. <variant type="Bool" value="true" />
  1996. </attribute>
  1997. </component>
  1998. </node>
  1999. <node id="231">
  2000. <attribute name="Is Enabled" value="true" />
  2001. <attribute name="Name" value="Sphere" />
  2002. <attribute name="Tags" />
  2003. <attribute name="Position" value="-1.84683 2.39951 -6.70634" />
  2004. <attribute name="Rotation" value="1 0 0 0" />
  2005. <attribute name="Scale" value="1 1 1" />
  2006. <attribute name="Variables" />
  2007. <component type="StaticModel" id="250">
  2008. <attribute name="Model" value="Model;Models/Plane.mdl" />
  2009. <attribute name="Material" value="Material;Materials/PBR/Leather.material" />
  2010. <attribute name="Cast Shadows" value="true" />
  2011. <attribute name="Geometry Enabled">
  2012. <variant type="Bool" value="true" />
  2013. </attribute>
  2014. </component>
  2015. </node>
  2016. </scene>