Scene.scene 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788
  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="0" />
  8. <attribute name="Next Replicated Node ID" value="572" />
  9. <attribute name="Next Replicated Component ID" value="2037" />
  10. <attribute name="Next Local Node ID" value="16790440" />
  11. <attribute name="Next Local Component ID" value="16785152" />
  12. <attribute name="Variables" />
  13. <attribute name="Variable Names" value="" />
  14. <component type="PhysicsWorld" id="1" />
  15. <component type="Octree" id="2">
  16. <attribute name="Bounding Box Min" value="-10000 -10000 -10000" />
  17. <attribute name="Bounding Box Max" value="10000 10000 10000" />
  18. </component>
  19. <component type="DebugRenderer" id="3" />
  20. <node id="361">
  21. <attribute name="Is Enabled" value="true" />
  22. <attribute name="Name" value="Camera" />
  23. <attribute name="Tags" />
  24. <attribute name="Position" value="0 70 108.305" />
  25. <attribute name="Rotation" value="-4.03841e-08 -1.67276e-08 0.92388 -0.382683" />
  26. <attribute name="Scale" value="1 1 1" />
  27. <attribute name="Variables" />
  28. <component type="Camera" id="1973" />
  29. </node>
  30. <node id="368">
  31. <attribute name="Is Enabled" value="true" />
  32. <attribute name="Name" value="Zone" />
  33. <attribute name="Tags" />
  34. <attribute name="Position" value="0 0 0" />
  35. <attribute name="Rotation" value="1 0 0 0" />
  36. <attribute name="Scale" value="1 1 1" />
  37. <attribute name="Variables" />
  38. <component type="Zone" id="1988">
  39. <attribute name="Bounding Box Min" value="-10000 -10000 -10000" />
  40. <attribute name="Bounding Box Max" value="10000 10000 10000" />
  41. <attribute name="Ambient Color" value="1 1 1 1" />
  42. </component>
  43. </node>
  44. <node id="369">
  45. <attribute name="Is Enabled" value="true" />
  46. <attribute name="Name" value="Terrain" />
  47. <attribute name="Tags" />
  48. <attribute name="Position" value="60 -26 38" />
  49. <attribute name="Rotation" value="1 0 0 0" />
  50. <attribute name="Scale" value="1 1 1" />
  51. <attribute name="Variables" />
  52. <component type="Terrain" id="1989">
  53. <attribute name="Height Map" value="Image;Textures/TerrainHeightMap.png" />
  54. <attribute name="Material" value="Material;Materials/DemoTerrain.material" />
  55. <attribute name="Vertex Spacing" value="3.91 2.4 3.91" />
  56. <attribute name="Smooth Height Map" value="true" />
  57. </component>
  58. <component type="RigidBody" id="2016">
  59. <attribute name="Physics Position" value="60 -26 38" />
  60. </component>
  61. <component type="CollisionShape" id="2017">
  62. <attribute name="Shape Type" value="Terrain" />
  63. </component>
  64. </node>
  65. <node id="380">
  66. <attribute name="Is Enabled" value="true" />
  67. <attribute name="Name" value="Robo" />
  68. <attribute name="Tags" />
  69. <attribute name="Position" value="0 23.4675 60" />
  70. <attribute name="Rotation" value="1 0 0 0" />
  71. <attribute name="Scale" value="1 1 1" />
  72. <attribute name="Variables" />
  73. <component type="AnimatedModel" id="2004">
  74. <attribute name="Model" value="Model;24155f56c38c1cbcbe3719e53080de7d.mdl" />
  75. <attribute name="Material" value="Material;Models/Materials/Robo.material" />
  76. <attribute name="Cast Shadows" value="true" />
  77. <attribute name="Bone Animation Enabled">
  78. <variant type="Bool" value="true" />
  79. <variant type="Bool" value="true" />
  80. <variant type="Bool" value="true" />
  81. <variant type="Bool" value="true" />
  82. <variant type="Bool" value="true" />
  83. <variant type="Bool" value="true" />
  84. <variant type="Bool" value="true" />
  85. <variant type="Bool" value="true" />
  86. <variant type="Bool" value="true" />
  87. <variant type="Bool" value="true" />
  88. <variant type="Bool" value="true" />
  89. <variant type="Bool" value="true" />
  90. <variant type="Bool" value="true" />
  91. <variant type="Bool" value="true" />
  92. <variant type="Bool" value="true" />
  93. <variant type="Bool" value="true" />
  94. <variant type="Bool" value="true" />
  95. <variant type="Bool" value="true" />
  96. <variant type="Bool" value="true" />
  97. <variant type="Bool" value="true" />
  98. <variant type="Bool" value="true" />
  99. <variant type="Bool" value="true" />
  100. <variant type="Bool" value="true" />
  101. <variant type="Bool" value="true" />
  102. <variant type="Bool" value="true" />
  103. <variant type="Bool" value="true" />
  104. <variant type="Bool" value="true" />
  105. <variant type="Bool" value="true" />
  106. <variant type="Bool" value="true" />
  107. <variant type="Bool" value="true" />
  108. <variant type="Bool" value="true" />
  109. <variant type="Bool" value="true" />
  110. <variant type="Bool" value="true" />
  111. <variant type="Bool" value="true" />
  112. <variant type="Bool" value="true" />
  113. <variant type="Bool" value="true" />
  114. <variant type="Bool" value="true" />
  115. <variant type="Bool" value="true" />
  116. <variant type="Bool" value="true" />
  117. <variant type="Bool" value="true" />
  118. <variant type="Bool" value="true" />
  119. <variant type="Bool" value="true" />
  120. <variant type="Bool" value="true" />
  121. <variant type="Bool" value="true" />
  122. <variant type="Bool" value="true" />
  123. <variant type="Bool" value="true" />
  124. <variant type="Bool" value="true" />
  125. <variant type="Bool" value="true" />
  126. <variant type="Bool" value="true" />
  127. <variant type="Bool" value="true" />
  128. <variant type="Bool" value="true" />
  129. <variant type="Bool" value="true" />
  130. <variant type="Bool" value="true" />
  131. <variant type="Bool" value="true" />
  132. <variant type="Bool" value="true" />
  133. <variant type="Bool" value="true" />
  134. <variant type="Bool" value="true" />
  135. <variant type="Bool" value="true" />
  136. <variant type="Bool" value="true" />
  137. <variant type="Bool" value="true" />
  138. <variant type="Bool" value="true" />
  139. <variant type="Bool" value="true" />
  140. <variant type="Bool" value="true" />
  141. <variant type="Bool" value="true" />
  142. <variant type="Bool" value="true" />
  143. <variant type="Bool" value="true" />
  144. <variant type="Bool" value="true" />
  145. <variant type="Bool" value="true" />
  146. <variant type="Bool" value="true" />
  147. <variant type="Bool" value="true" />
  148. <variant type="Bool" value="true" />
  149. <variant type="Bool" value="true" />
  150. <variant type="Bool" value="true" />
  151. <variant type="Bool" value="true" />
  152. <variant type="Bool" value="true" />
  153. <variant type="Bool" value="true" />
  154. <variant type="Bool" value="true" />
  155. <variant type="Bool" value="true" />
  156. <variant type="Bool" value="true" />
  157. <variant type="Bool" value="true" />
  158. <variant type="Bool" value="true" />
  159. <variant type="Bool" value="true" />
  160. <variant type="Bool" value="true" />
  161. <variant type="Bool" value="true" />
  162. <variant type="Bool" value="true" />
  163. <variant type="Bool" value="true" />
  164. <variant type="Bool" value="true" />
  165. <variant type="Bool" value="true" />
  166. <variant type="Bool" value="true" />
  167. <variant type="Bool" value="true" />
  168. <variant type="Bool" value="true" />
  169. <variant type="Bool" value="true" />
  170. <variant type="Bool" value="true" />
  171. <variant type="Bool" value="true" />
  172. <variant type="Bool" value="true" />
  173. <variant type="Bool" value="true" />
  174. <variant type="Bool" value="true" />
  175. <variant type="Bool" value="true" />
  176. <variant type="Bool" value="true" />
  177. <variant type="Bool" value="true" />
  178. <variant type="Bool" value="true" />
  179. <variant type="Bool" value="true" />
  180. <variant type="Bool" value="true" />
  181. <variant type="Bool" value="true" />
  182. <variant type="Bool" value="true" />
  183. <variant type="Bool" value="true" />
  184. <variant type="Bool" value="true" />
  185. <variant type="Bool" value="true" />
  186. <variant type="Bool" value="true" />
  187. <variant type="Bool" value="true" />
  188. <variant type="Bool" value="true" />
  189. <variant type="Bool" value="true" />
  190. <variant type="Bool" value="true" />
  191. <variant type="Bool" value="true" />
  192. <variant type="Bool" value="true" />
  193. <variant type="Bool" value="true" />
  194. <variant type="Bool" value="true" />
  195. <variant type="Bool" value="true" />
  196. <variant type="Bool" value="true" />
  197. <variant type="Bool" value="true" />
  198. <variant type="Bool" value="true" />
  199. <variant type="Bool" value="true" />
  200. <variant type="Bool" value="true" />
  201. <variant type="Bool" value="true" />
  202. <variant type="Bool" value="true" />
  203. <variant type="Bool" value="true" />
  204. <variant type="Bool" value="true" />
  205. <variant type="Bool" value="true" />
  206. <variant type="Bool" value="true" />
  207. <variant type="Bool" value="true" />
  208. <variant type="Bool" value="true" />
  209. <variant type="Bool" value="true" />
  210. <variant type="Bool" value="true" />
  211. <variant type="Bool" value="true" />
  212. <variant type="Bool" value="true" />
  213. <variant type="Bool" value="true" />
  214. <variant type="Bool" value="true" />
  215. <variant type="Bool" value="true" />
  216. <variant type="Bool" value="true" />
  217. <variant type="Bool" value="true" />
  218. <variant type="Bool" value="true" />
  219. <variant type="Bool" value="true" />
  220. <variant type="Bool" value="true" />
  221. <variant type="Bool" value="true" />
  222. <variant type="Bool" value="true" />
  223. <variant type="Bool" value="true" />
  224. <variant type="Bool" value="true" />
  225. <variant type="Bool" value="true" />
  226. <variant type="Bool" value="true" />
  227. <variant type="Bool" value="true" />
  228. <variant type="Bool" value="true" />
  229. <variant type="Bool" value="true" />
  230. <variant type="Bool" value="true" />
  231. <variant type="Bool" value="true" />
  232. <variant type="Bool" value="true" />
  233. <variant type="Bool" value="true" />
  234. <variant type="Bool" value="true" />
  235. <variant type="Bool" value="true" />
  236. <variant type="Bool" value="true" />
  237. <variant type="Bool" value="true" />
  238. <variant type="Bool" value="true" />
  239. <variant type="Bool" value="true" />
  240. <variant type="Bool" value="true" />
  241. <variant type="Bool" value="true" />
  242. <variant type="Bool" value="true" />
  243. <variant type="Bool" value="true" />
  244. <variant type="Bool" value="true" />
  245. </attribute>
  246. <attribute name="Animation States">
  247. <variant type="Int" value="0" />
  248. </attribute>
  249. </component>
  250. <component type="AnimationController" id="2005">
  251. <attribute name="Node Animation States">
  252. <variant type="Int" value="0" />
  253. </attribute>
  254. <attribute name="Autoplay" value="false" />
  255. <attribute name="AnimationResources" value="Animation;24155f56c38c1cbcbe3719e53080de7d_Idle.ani;24155f56c38c1cbcbe3719e53080de7d_Run.ani" />
  256. </component>
  257. <component type="RigidBody" id="2013">
  258. <attribute name="Physics Position" value="0 23.4675 60" />
  259. <attribute name="Mass" value="1" />
  260. </component>
  261. <component type="CollisionShape" id="2015">
  262. <attribute name="Shape Type" value="Capsule" />
  263. <attribute name="Size" value="3.8 4.5 3.8" />
  264. <attribute name="Offset Position" value="0 2 0" />
  265. <attribute name="Model" value="Model;24155f56c38c1cbcbe3719e53080de7d.mdl" />
  266. </component>
  267. <component type="JSComponent" id="2028">
  268. <attribute name="ComponentFile" value="JSComponentFile;Components/UserMovement.js" />
  269. </component>
  270. <node id="381">
  271. <attribute name="Is Enabled" value="true" />
  272. <attribute name="Name" value="Body_Root_$AssimpFbx$_Translation" />
  273. <attribute name="Tags" />
  274. <attribute name="Position" value="0 0.54984 0.000641148" />
  275. <attribute name="Rotation" value="1 0 0 0" />
  276. <attribute name="Scale" value="1 1 1" />
  277. <attribute name="Variables" />
  278. <node id="382">
  279. <attribute name="Is Enabled" value="true" />
  280. <attribute name="Name" value="Body_Root_$AssimpFbx$_PreRotation" />
  281. <attribute name="Tags" />
  282. <attribute name="Position" value="0 0 -0" />
  283. <attribute name="Rotation" value="0.501435 -0.498561 -0.501435 0.498561" />
  284. <attribute name="Scale" value="1 1 1" />
  285. <attribute name="Variables" />
  286. <node id="383">
  287. <attribute name="Is Enabled" value="true" />
  288. <attribute name="Name" value="Body_Root_$AssimpFbx$_Rotation" />
  289. <attribute name="Tags" />
  290. <attribute name="Position" value="0 0 -0" />
  291. <attribute name="Rotation" value="1 0 0 0" />
  292. <attribute name="Scale" value="1 1 1" />
  293. <attribute name="Variables" />
  294. <node id="384">
  295. <attribute name="Is Enabled" value="true" />
  296. <attribute name="Name" value="Body_Root_$AssimpFbx$_Scaling" />
  297. <attribute name="Tags" />
  298. <attribute name="Position" value="0 0 -0" />
  299. <attribute name="Rotation" value="1 0 0 0" />
  300. <attribute name="Scale" value="1 1 1" />
  301. <attribute name="Variables" />
  302. <node id="385">
  303. <attribute name="Is Enabled" value="true" />
  304. <attribute name="Name" value="Body_Root" />
  305. <attribute name="Tags" />
  306. <attribute name="Position" value="0 0 -0" />
  307. <attribute name="Rotation" value="1 0 0 0" />
  308. <attribute name="Scale" value="1 1 1" />
  309. <attribute name="Variables" />
  310. <node id="386">
  311. <attribute name="Is Enabled" value="true" />
  312. <attribute name="Name" value="Body_Chest_$AssimpFbx$_Translation" />
  313. <attribute name="Tags" />
  314. <attribute name="Position" value="0.708669 -4.33681e-18 -4.81482e-34" />
  315. <attribute name="Rotation" value="1 0 0 0" />
  316. <attribute name="Scale" value="1 1 1" />
  317. <attribute name="Variables" />
  318. <node id="387">
  319. <attribute name="Is Enabled" value="true" />
  320. <attribute name="Name" value="Body_Chest_$AssimpFbx$_Rotation" />
  321. <attribute name="Tags" />
  322. <attribute name="Position" value="0 0 -0" />
  323. <attribute name="Rotation" value="1 0 0 0" />
  324. <attribute name="Scale" value="1 1 1" />
  325. <attribute name="Variables" />
  326. <node id="388">
  327. <attribute name="Is Enabled" value="true" />
  328. <attribute name="Name" value="Body_Chest_$AssimpFbx$_Scaling" />
  329. <attribute name="Tags" />
  330. <attribute name="Position" value="0 0 -0" />
  331. <attribute name="Rotation" value="1 0 0 0" />
  332. <attribute name="Scale" value="1 1 1" />
  333. <attribute name="Variables" />
  334. <node id="389">
  335. <attribute name="Is Enabled" value="true" />
  336. <attribute name="Name" value="Body_Chest" />
  337. <attribute name="Tags" />
  338. <attribute name="Position" value="0 0 -0" />
  339. <attribute name="Rotation" value="1 0 0 0" />
  340. <attribute name="Scale" value="1 1 1" />
  341. <attribute name="Variables" />
  342. <node id="390">
  343. <attribute name="Is Enabled" value="true" />
  344. <attribute name="Name" value="Body_Neck_$AssimpFbx$_Translation" />
  345. <attribute name="Tags" />
  346. <attribute name="Position" value="0.74124 8.34721e-15 4.72947e-19" />
  347. <attribute name="Rotation" value="1 0 0 0" />
  348. <attribute name="Scale" value="1 1 1" />
  349. <attribute name="Variables" />
  350. <node id="391">
  351. <attribute name="Is Enabled" value="true" />
  352. <attribute name="Name" value="Body_Neck_$AssimpFbx$_PreRotation" />
  353. <attribute name="Tags" />
  354. <attribute name="Position" value="0 0 -0" />
  355. <attribute name="Rotation" value="-0.5 -0.5 -0.5 0.5" />
  356. <attribute name="Scale" value="1 1 1" />
  357. <attribute name="Variables" />
  358. <node id="392">
  359. <attribute name="Is Enabled" value="true" />
  360. <attribute name="Name" value="Body_Neck_$AssimpFbx$_Rotation" />
  361. <attribute name="Tags" />
  362. <attribute name="Position" value="0 0 -0" />
  363. <attribute name="Rotation" value="1 0 0 0" />
  364. <attribute name="Scale" value="1 1 1" />
  365. <attribute name="Variables" />
  366. <node id="393">
  367. <attribute name="Is Enabled" value="true" />
  368. <attribute name="Name" value="Body_Neck_$AssimpFbx$_Scaling" />
  369. <attribute name="Tags" />
  370. <attribute name="Position" value="0 0 -0" />
  371. <attribute name="Rotation" value="1 0 0 0" />
  372. <attribute name="Scale" value="1 1 1" />
  373. <attribute name="Variables" />
  374. <node id="394">
  375. <attribute name="Is Enabled" value="true" />
  376. <attribute name="Name" value="Body_Neck" />
  377. <attribute name="Tags" />
  378. <attribute name="Position" value="0 0 -0" />
  379. <attribute name="Rotation" value="1 0 0 0" />
  380. <attribute name="Scale" value="1 1 1" />
  381. <attribute name="Variables" />
  382. <node id="395">
  383. <attribute name="Is Enabled" value="true" />
  384. <attribute name="Name" value="Head_Root_$AssimpFbx$_Translation" />
  385. <attribute name="Tags" />
  386. <attribute name="Position" value="4.80751e-17 0.126255 -0.00407274" />
  387. <attribute name="Rotation" value="1 0 0 0" />
  388. <attribute name="Scale" value="1 1 1" />
  389. <attribute name="Variables" />
  390. <node id="396">
  391. <attribute name="Is Enabled" value="true" />
  392. <attribute name="Name" value="Head_Root_$AssimpFbx$_PreRotation" />
  393. <attribute name="Tags" />
  394. <attribute name="Position" value="0 0 -0" />
  395. <attribute name="Rotation" value="0.501631 -0.498363 -0.501631 0.498363" />
  396. <attribute name="Scale" value="1 1 1" />
  397. <attribute name="Variables" />
  398. <node id="397">
  399. <attribute name="Is Enabled" value="true" />
  400. <attribute name="Name" value="Head_Root_$AssimpFbx$_Rotation" />
  401. <attribute name="Tags" />
  402. <attribute name="Position" value="0 0 -0" />
  403. <attribute name="Rotation" value="1 0 0 0" />
  404. <attribute name="Scale" value="1 1 1" />
  405. <attribute name="Variables" />
  406. <node id="398">
  407. <attribute name="Is Enabled" value="true" />
  408. <attribute name="Name" value="Head_Root_$AssimpFbx$_Scaling" />
  409. <attribute name="Tags" />
  410. <attribute name="Position" value="0 0 -0" />
  411. <attribute name="Rotation" value="1 0 0 0" />
  412. <attribute name="Scale" value="1 1 1" />
  413. <attribute name="Variables" />
  414. <node id="399">
  415. <attribute name="Is Enabled" value="true" />
  416. <attribute name="Name" value="Head_Root" />
  417. <attribute name="Tags" />
  418. <attribute name="Position" value="0 0 -0" />
  419. <attribute name="Rotation" value="1 0 0 0" />
  420. <attribute name="Scale" value="1 1 1" />
  421. <attribute name="Variables" />
  422. <node id="400">
  423. <attribute name="Is Enabled" value="true" />
  424. <attribute name="Name" value="Head_mid_$AssimpFbx$_Translation" />
  425. <attribute name="Tags" />
  426. <attribute name="Position" value="0.623143 1.35308e-16 2.76731e-16" />
  427. <attribute name="Rotation" value="1 0 0 0" />
  428. <attribute name="Scale" value="1 1 1" />
  429. <attribute name="Variables" />
  430. <node id="401">
  431. <attribute name="Is Enabled" value="true" />
  432. <attribute name="Name" value="Head_mid_$AssimpFbx$_PreRotation" />
  433. <attribute name="Tags" />
  434. <attribute name="Position" value="0 0 -0" />
  435. <attribute name="Rotation" value="4.37105e-08 0.999979 0.00651459 2.84762e-10" />
  436. <attribute name="Scale" value="1 1 1" />
  437. <attribute name="Variables" />
  438. <node id="402">
  439. <attribute name="Is Enabled" value="true" />
  440. <attribute name="Name" value="Head_mid_$AssimpFbx$_Rotation" />
  441. <attribute name="Tags" />
  442. <attribute name="Position" value="0 0 -0" />
  443. <attribute name="Rotation" value="1 0 0 0" />
  444. <attribute name="Scale" value="1 1 1" />
  445. <attribute name="Variables" />
  446. <node id="403">
  447. <attribute name="Is Enabled" value="true" />
  448. <attribute name="Name" value="Head_mid_$AssimpFbx$_Scaling" />
  449. <attribute name="Tags" />
  450. <attribute name="Position" value="0 0 -0" />
  451. <attribute name="Rotation" value="1 0 0 0" />
  452. <attribute name="Scale" value="1 1 1" />
  453. <attribute name="Variables" />
  454. <node id="404">
  455. <attribute name="Is Enabled" value="true" />
  456. <attribute name="Name" value="Head_mid" />
  457. <attribute name="Tags" />
  458. <attribute name="Position" value="0 0 -0" />
  459. <attribute name="Rotation" value="1 0 0 0" />
  460. <attribute name="Scale" value="1 1 1" />
  461. <attribute name="Variables" />
  462. <node id="405">
  463. <attribute name="Is Enabled" value="true" />
  464. <attribute name="Name" value="Head_Tip_$AssimpFbx$_Translation" />
  465. <attribute name="Tags" />
  466. <attribute name="Position" value="0.627216 2.49974e-15 -2.77609e-16" />
  467. <attribute name="Rotation" value="1 0 0 0" />
  468. <attribute name="Scale" value="1 1 1" />
  469. <attribute name="Variables" />
  470. <node id="406">
  471. <attribute name="Is Enabled" value="true" />
  472. <attribute name="Name" value="Head_Tip_$AssimpFbx$_Rotation" />
  473. <attribute name="Tags" />
  474. <attribute name="Position" value="0 0 -0" />
  475. <attribute name="Rotation" value="1 0 0 0" />
  476. <attribute name="Scale" value="1 1 1" />
  477. <attribute name="Variables" />
  478. <node id="407">
  479. <attribute name="Is Enabled" value="true" />
  480. <attribute name="Name" value="Head_Tip_$AssimpFbx$_Scaling" />
  481. <attribute name="Tags" />
  482. <attribute name="Position" value="0 0 -0" />
  483. <attribute name="Rotation" value="1 0 0 0" />
  484. <attribute name="Scale" value="1 1 1" />
  485. <attribute name="Variables" />
  486. <node id="408">
  487. <attribute name="Is Enabled" value="true" />
  488. <attribute name="Name" value="Head_Tip" />
  489. <attribute name="Tags" />
  490. <attribute name="Position" value="0 0 -0" />
  491. <attribute name="Rotation" value="1 0 0 0" />
  492. <attribute name="Scale" value="1 1 1" />
  493. <attribute name="Variables" />
  494. <node id="409">
  495. <attribute name="Is Enabled" value="true" />
  496. <attribute name="Name" value="Antenna_Root" />
  497. <attribute name="Tags" />
  498. <attribute name="Position" value="0.166983 1.49808e-15 -7.41652e-17" />
  499. <attribute name="Rotation" value="1 0 0 0" />
  500. <attribute name="Scale" value="1 1 1" />
  501. <attribute name="Variables" />
  502. <node id="410">
  503. <attribute name="Is Enabled" value="true" />
  504. <attribute name="Name" value="Antenna_01" />
  505. <attribute name="Tags" />
  506. <attribute name="Position" value="0.285092 2.54246e-15 -1.26623e-16" />
  507. <attribute name="Rotation" value="1 0 0 0" />
  508. <attribute name="Scale" value="1 1 1" />
  509. <attribute name="Variables" />
  510. <node id="411">
  511. <attribute name="Is Enabled" value="true" />
  512. <attribute name="Name" value="Antenna_02" />
  513. <attribute name="Tags" />
  514. <attribute name="Position" value="0.211783 1.89841e-15 -9.40632e-17" />
  515. <attribute name="Rotation" value="1 0 0 0" />
  516. <attribute name="Scale" value="1 1 1" />
  517. <attribute name="Variables" />
  518. <node id="412">
  519. <attribute name="Is Enabled" value="true" />
  520. <attribute name="Name" value="Antenna_03" />
  521. <attribute name="Tags" />
  522. <attribute name="Position" value="0.20771 0.00407274 -9.3217e-17" />
  523. <attribute name="Rotation" value="1 0 0 0" />
  524. <attribute name="Scale" value="1 1 1" />
  525. <attribute name="Variables" />
  526. </node>
  527. </node>
  528. </node>
  529. </node>
  530. </node>
  531. </node>
  532. </node>
  533. </node>
  534. <node id="413">
  535. <attribute name="Is Enabled" value="true" />
  536. <attribute name="Name" value="Eye_Zoom" />
  537. <attribute name="Tags" />
  538. <attribute name="Position" value="0.0113717 -1.12403 2.63906e-16" />
  539. <attribute name="Rotation" value="1 0 0 0" />
  540. <attribute name="Scale" value="1 1 1" />
  541. <attribute name="Variables" />
  542. </node>
  543. </node>
  544. </node>
  545. </node>
  546. </node>
  547. </node>
  548. </node>
  549. </node>
  550. </node>
  551. </node>
  552. </node>
  553. <node id="414">
  554. <attribute name="Is Enabled" value="true" />
  555. <attribute name="Name" value="Hand_L_Root_$AssimpFbx$_Translation" />
  556. <attribute name="Tags" />
  557. <attribute name="Position" value="1.37701 -0.496553 0.020373" />
  558. <attribute name="Rotation" value="1 0 0 0" />
  559. <attribute name="Scale" value="1 1 1" />
  560. <attribute name="Variables" />
  561. <node id="415">
  562. <attribute name="Is Enabled" value="true" />
  563. <attribute name="Name" value="Hand_L_Root_$AssimpFbx$_PreRotation" />
  564. <attribute name="Tags" />
  565. <attribute name="Position" value="0 0 -0" />
  566. <attribute name="Rotation" value="0.515359 0.484154 -0.515359 -0.484154" />
  567. <attribute name="Scale" value="1 1 1" />
  568. <attribute name="Variables" />
  569. <node id="416">
  570. <attribute name="Is Enabled" value="true" />
  571. <attribute name="Name" value="Hand_L_Root_$AssimpFbx$_Rotation" />
  572. <attribute name="Tags" />
  573. <attribute name="Position" value="0 0 -0" />
  574. <attribute name="Rotation" value="0.983669 0 0.179986 0" />
  575. <attribute name="Scale" value="1 1 1" />
  576. <attribute name="Variables" />
  577. <node id="417">
  578. <attribute name="Is Enabled" value="true" />
  579. <attribute name="Name" value="Hand_L_Root_$AssimpFbx$_Scaling" />
  580. <attribute name="Tags" />
  581. <attribute name="Position" value="0 0 -0" />
  582. <attribute name="Rotation" value="1 0 0 0" />
  583. <attribute name="Scale" value="1 1 1" />
  584. <attribute name="Variables" />
  585. <node id="418">
  586. <attribute name="Is Enabled" value="true" />
  587. <attribute name="Name" value="Hand_L_Root" />
  588. <attribute name="Tags" />
  589. <attribute name="Position" value="0 0 -0" />
  590. <attribute name="Rotation" value="1 0 0 0" />
  591. <attribute name="Scale" value="1 1 1" />
  592. <attribute name="Variables" />
  593. <node id="419">
  594. <attribute name="Is Enabled" value="true" />
  595. <attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_Translation" />
  596. <attribute name="Tags" />
  597. <attribute name="Position" value="0.342909 -3.46945e-18 7.61411e-17" />
  598. <attribute name="Rotation" value="1 0 0 0" />
  599. <attribute name="Scale" value="1 1 1" />
  600. <attribute name="Variables" />
  601. <node id="420">
  602. <attribute name="Is Enabled" value="true" />
  603. <attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_PreRotation" />
  604. <attribute name="Tags" />
  605. <attribute name="Position" value="0 0 -0" />
  606. <attribute name="Rotation" value="3.33313e-08 -0.646952 0.76253 2.82792e-08" />
  607. <attribute name="Scale" value="1 1 1" />
  608. <attribute name="Variables" />
  609. <node id="421">
  610. <attribute name="Is Enabled" value="true" />
  611. <attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_Rotation" />
  612. <attribute name="Tags" />
  613. <attribute name="Position" value="0 0 -0" />
  614. <attribute name="Rotation" value="1 0 0 0" />
  615. <attribute name="Scale" value="1 1 1" />
  616. <attribute name="Variables" />
  617. <node id="422">
  618. <attribute name="Is Enabled" value="true" />
  619. <attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_Scaling" />
  620. <attribute name="Tags" />
  621. <attribute name="Position" value="0 0 -0" />
  622. <attribute name="Rotation" value="1 0 0 0" />
  623. <attribute name="Scale" value="1 1 1" />
  624. <attribute name="Variables" />
  625. <node id="423">
  626. <attribute name="Is Enabled" value="true" />
  627. <attribute name="Name" value="Hand_L_Mid" />
  628. <attribute name="Tags" />
  629. <attribute name="Position" value="0 0 -0" />
  630. <attribute name="Rotation" value="1 0 0 0" />
  631. <attribute name="Scale" value="1 1 1" />
  632. <attribute name="Variables" />
  633. <node id="424">
  634. <attribute name="Is Enabled" value="true" />
  635. <attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_Translation" />
  636. <attribute name="Tags" />
  637. <attribute name="Position" value="0.39385 0.00427188 -0.0114353" />
  638. <attribute name="Rotation" value="1 0 0 0" />
  639. <attribute name="Scale" value="1 1 1" />
  640. <attribute name="Variables" />
  641. <node id="425">
  642. <attribute name="Is Enabled" value="true" />
  643. <attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_PreRotation" />
  644. <attribute name="Tags" />
  645. <attribute name="Position" value="0 0 -0" />
  646. <attribute name="Rotation" value="0.951929 0 0 -0.30632" />
  647. <attribute name="Scale" value="1 1 1" />
  648. <attribute name="Variables" />
  649. <node id="426">
  650. <attribute name="Is Enabled" value="true" />
  651. <attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_Rotation" />
  652. <attribute name="Tags" />
  653. <attribute name="Position" value="0 0 -0" />
  654. <attribute name="Rotation" value="0.969601 0.205306 0.130239 -0.0275772" />
  655. <attribute name="Scale" value="1 1 1" />
  656. <attribute name="Variables" />
  657. <node id="427">
  658. <attribute name="Is Enabled" value="true" />
  659. <attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_Scaling" />
  660. <attribute name="Tags" />
  661. <attribute name="Position" value="0 0 -0" />
  662. <attribute name="Rotation" value="1 0 0 0" />
  663. <attribute name="Scale" value="1 1 1" />
  664. <attribute name="Variables" />
  665. <node id="428">
  666. <attribute name="Is Enabled" value="true" />
  667. <attribute name="Name" value="Hand_L_Thumb_01" />
  668. <attribute name="Tags" />
  669. <attribute name="Position" value="0 0 -0" />
  670. <attribute name="Rotation" value="1 0 0 0" />
  671. <attribute name="Scale" value="1 1 1" />
  672. <attribute name="Variables" />
  673. <node id="429">
  674. <attribute name="Is Enabled" value="true" />
  675. <attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_Translation" />
  676. <attribute name="Tags" />
  677. <attribute name="Position" value="0.16563 -9.71445e-17 -1.01128e-17" />
  678. <attribute name="Rotation" value="1 0 0 0" />
  679. <attribute name="Scale" value="1 1 1" />
  680. <attribute name="Variables" />
  681. <node id="430">
  682. <attribute name="Is Enabled" value="true" />
  683. <attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_PreRotation" />
  684. <attribute name="Tags" />
  685. <attribute name="Position" value="0 0 -0" />
  686. <attribute name="Rotation" value="0.970707 0 0 -0.240265" />
  687. <attribute name="Scale" value="1 1 1" />
  688. <attribute name="Variables" />
  689. <node id="431">
  690. <attribute name="Is Enabled" value="true" />
  691. <attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_Rotation" />
  692. <attribute name="Tags" />
  693. <attribute name="Position" value="0 0 -0" />
  694. <attribute name="Rotation" value="1 0 0 0" />
  695. <attribute name="Scale" value="1 1 1" />
  696. <attribute name="Variables" />
  697. <node id="432">
  698. <attribute name="Is Enabled" value="true" />
  699. <attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_Scaling" />
  700. <attribute name="Tags" />
  701. <attribute name="Position" value="0 0 -0" />
  702. <attribute name="Rotation" value="1 0 0 0" />
  703. <attribute name="Scale" value="1 1 1" />
  704. <attribute name="Variables" />
  705. <node id="433">
  706. <attribute name="Is Enabled" value="true" />
  707. <attribute name="Name" value="Hand_L_Thumb_02" />
  708. <attribute name="Tags" />
  709. <attribute name="Position" value="0 0 -0" />
  710. <attribute name="Rotation" value="1 0 0 0" />
  711. <attribute name="Scale" value="1 1 1" />
  712. <attribute name="Variables" />
  713. <node id="434">
  714. <attribute name="Is Enabled" value="true" />
  715. <attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_Translation" />
  716. <attribute name="Tags" />
  717. <attribute name="Position" value="0.177179 -1.38778e-16 -2.27149e-17" />
  718. <attribute name="Rotation" value="1 0 0 0" />
  719. <attribute name="Scale" value="1 1 1" />
  720. <attribute name="Variables" />
  721. <node id="435">
  722. <attribute name="Is Enabled" value="true" />
  723. <attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_PreRotation" />
  724. <attribute name="Tags" />
  725. <attribute name="Position" value="0 0 -0" />
  726. <attribute name="Rotation" value="-0.448965 -0.443282 0.550909 0.546288" />
  727. <attribute name="Scale" value="1 1 1" />
  728. <attribute name="Variables" />
  729. <node id="436">
  730. <attribute name="Is Enabled" value="true" />
  731. <attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_Rotation" />
  732. <attribute name="Tags" />
  733. <attribute name="Position" value="0 0 -0" />
  734. <attribute name="Rotation" value="1 0 0 0" />
  735. <attribute name="Scale" value="1 1 1" />
  736. <attribute name="Variables" />
  737. <node id="437">
  738. <attribute name="Is Enabled" value="true" />
  739. <attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_Scaling" />
  740. <attribute name="Tags" />
  741. <attribute name="Position" value="0 0 -0" />
  742. <attribute name="Rotation" value="1 0 0 0" />
  743. <attribute name="Scale" value="1 1 1" />
  744. <attribute name="Variables" />
  745. <node id="438">
  746. <attribute name="Is Enabled" value="true" />
  747. <attribute name="Name" value="Hand_L_Thumb_03" />
  748. <attribute name="Tags" />
  749. <attribute name="Position" value="0 0 -0" />
  750. <attribute name="Rotation" value="1 0 0 0" />
  751. <attribute name="Scale" value="1 1 1" />
  752. <attribute name="Variables" />
  753. <node id="439">
  754. <attribute name="Is Enabled" value="true" />
  755. <attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_Translation" />
  756. <attribute name="Tags" />
  757. <attribute name="Position" value="1.04459e-16 -1.25899e-17 -0.182757" />
  758. <attribute name="Rotation" value="1 0 0 0" />
  759. <attribute name="Scale" value="1 1 1" />
  760. <attribute name="Variables" />
  761. <node id="440">
  762. <attribute name="Is Enabled" value="true" />
  763. <attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_PreRotation" />
  764. <attribute name="Tags" />
  765. <attribute name="Position" value="0 0 -0" />
  766. <attribute name="Rotation" value="0.584191 0.404845 0.400673 0.578171" />
  767. <attribute name="Scale" value="1 1 1" />
  768. <attribute name="Variables" />
  769. <node id="441">
  770. <attribute name="Is Enabled" value="true" />
  771. <attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_Rotation" />
  772. <attribute name="Tags" />
  773. <attribute name="Position" value="0 0 -0" />
  774. <attribute name="Rotation" value="1 0 0 0" />
  775. <attribute name="Scale" value="1 1 1" />
  776. <attribute name="Variables" />
  777. <node id="442">
  778. <attribute name="Is Enabled" value="true" />
  779. <attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_Scaling" />
  780. <attribute name="Tags" />
  781. <attribute name="Position" value="0 0 -0" />
  782. <attribute name="Rotation" value="1 0 0 0" />
  783. <attribute name="Scale" value="1 1 1" />
  784. <attribute name="Variables" />
  785. <node id="443">
  786. <attribute name="Is Enabled" value="true" />
  787. <attribute name="Name" value="Hand_L_Thumb_04" />
  788. <attribute name="Tags" />
  789. <attribute name="Position" value="0 0 -0" />
  790. <attribute name="Rotation" value="1 0 0 0" />
  791. <attribute name="Scale" value="1 1 1" />
  792. <attribute name="Variables" />
  793. </node>
  794. </node>
  795. </node>
  796. </node>
  797. </node>
  798. </node>
  799. </node>
  800. </node>
  801. </node>
  802. </node>
  803. </node>
  804. </node>
  805. </node>
  806. </node>
  807. </node>
  808. </node>
  809. </node>
  810. </node>
  811. </node>
  812. </node>
  813. <node id="444">
  814. <attribute name="Is Enabled" value="true" />
  815. <attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_Translation" />
  816. <attribute name="Tags" />
  817. <attribute name="Position" value="0.245606 -0.243017 -2.94524e-17" />
  818. <attribute name="Rotation" value="1 0 0 0" />
  819. <attribute name="Scale" value="1 1 1" />
  820. <attribute name="Variables" />
  821. <node id="445">
  822. <attribute name="Is Enabled" value="true" />
  823. <attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_PreRotation" />
  824. <attribute name="Tags" />
  825. <attribute name="Position" value="0 0 -0" />
  826. <attribute name="Rotation" value="0.691042 0 0 -0.722815" />
  827. <attribute name="Scale" value="1 1 1" />
  828. <attribute name="Variables" />
  829. <node id="446">
  830. <attribute name="Is Enabled" value="true" />
  831. <attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_Rotation" />
  832. <attribute name="Tags" />
  833. <attribute name="Position" value="0 0 -0" />
  834. <attribute name="Rotation" value="0.992946 0 0.118564 0" />
  835. <attribute name="Scale" value="1 1 1" />
  836. <attribute name="Variables" />
  837. <node id="447">
  838. <attribute name="Is Enabled" value="true" />
  839. <attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_Scaling" />
  840. <attribute name="Tags" />
  841. <attribute name="Position" value="0 0 -0" />
  842. <attribute name="Rotation" value="1 0 0 0" />
  843. <attribute name="Scale" value="1 1 1" />
  844. <attribute name="Variables" />
  845. <node id="448">
  846. <attribute name="Is Enabled" value="true" />
  847. <attribute name="Name" value="Hand_L_Finger1_01" />
  848. <attribute name="Tags" />
  849. <attribute name="Position" value="0 0 -0" />
  850. <attribute name="Rotation" value="1 0 0 0" />
  851. <attribute name="Scale" value="1 1 1" />
  852. <attribute name="Variables" />
  853. <node id="449">
  854. <attribute name="Is Enabled" value="true" />
  855. <attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_Translation" />
  856. <attribute name="Tags" />
  857. <attribute name="Position" value="0.2173 -5.89806e-17 6.54816e-33" />
  858. <attribute name="Rotation" value="1 0 0 0" />
  859. <attribute name="Scale" value="1 1 1" />
  860. <attribute name="Variables" />
  861. <node id="450">
  862. <attribute name="Is Enabled" value="true" />
  863. <attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_PreRotation" />
  864. <attribute name="Tags" />
  865. <attribute name="Position" value="0 0 -0" />
  866. <attribute name="Rotation" value="4.36819e-08 0.999324 -0.0367508 -1.60643e-09" />
  867. <attribute name="Scale" value="1 1 1" />
  868. <attribute name="Variables" />
  869. <node id="451">
  870. <attribute name="Is Enabled" value="true" />
  871. <attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_Rotation" />
  872. <attribute name="Tags" />
  873. <attribute name="Position" value="0 0 -0" />
  874. <attribute name="Rotation" value="0.993732 0 -0.111789 0" />
  875. <attribute name="Scale" value="1 1 1" />
  876. <attribute name="Variables" />
  877. <node id="452">
  878. <attribute name="Is Enabled" value="true" />
  879. <attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_Scaling" />
  880. <attribute name="Tags" />
  881. <attribute name="Position" value="0 0 -0" />
  882. <attribute name="Rotation" value="1 0 0 0" />
  883. <attribute name="Scale" value="1 1 1" />
  884. <attribute name="Variables" />
  885. <node id="453">
  886. <attribute name="Is Enabled" value="true" />
  887. <attribute name="Name" value="Hand_L_Finger1_02" />
  888. <attribute name="Tags" />
  889. <attribute name="Position" value="0 0 -0" />
  890. <attribute name="Rotation" value="1 0 0 0" />
  891. <attribute name="Scale" value="1 1 1" />
  892. <attribute name="Variables" />
  893. <node id="454">
  894. <attribute name="Is Enabled" value="true" />
  895. <attribute name="Name" value="Hand_L_Finger1_03" />
  896. <attribute name="Tags" />
  897. <attribute name="Position" value="0.177258 -1.43548e-16 -1.44551e-18" />
  898. <attribute name="Rotation" value="0.997365 0 0.0725466 0" />
  899. <attribute name="Scale" value="1 1 1" />
  900. <attribute name="Variables" />
  901. <node id="455">
  902. <attribute name="Is Enabled" value="true" />
  903. <attribute name="Name" value="Hand_L_Finger1_04" />
  904. <attribute name="Tags" />
  905. <attribute name="Position" value="0.14035 -0.0115712 0.0420192" />
  906. <attribute name="Rotation" value="1 0 0 0" />
  907. <attribute name="Scale" value="1 1 1" />
  908. <attribute name="Variables" />
  909. </node>
  910. </node>
  911. </node>
  912. </node>
  913. </node>
  914. </node>
  915. </node>
  916. </node>
  917. </node>
  918. </node>
  919. </node>
  920. </node>
  921. <node id="456">
  922. <attribute name="Is Enabled" value="true" />
  923. <attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_Translation" />
  924. <attribute name="Tags" />
  925. <attribute name="Position" value="-0.0103198 -0.214612 0.0340806" />
  926. <attribute name="Rotation" value="1 0 0 0" />
  927. <attribute name="Scale" value="1 1 1" />
  928. <attribute name="Variables" />
  929. <node id="457">
  930. <attribute name="Is Enabled" value="true" />
  931. <attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_PreRotation" />
  932. <attribute name="Tags" />
  933. <attribute name="Position" value="0 0 -0" />
  934. <attribute name="Rotation" value="0.675235 0 0 -0.737602" />
  935. <attribute name="Scale" value="1 1 1" />
  936. <attribute name="Variables" />
  937. <node id="458">
  938. <attribute name="Is Enabled" value="true" />
  939. <attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_Rotation" />
  940. <attribute name="Tags" />
  941. <attribute name="Position" value="0 0 -0" />
  942. <attribute name="Rotation" value="0.998724 0 0.0505027 0" />
  943. <attribute name="Scale" value="1 1 1" />
  944. <attribute name="Variables" />
  945. <node id="459">
  946. <attribute name="Is Enabled" value="true" />
  947. <attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_Scaling" />
  948. <attribute name="Tags" />
  949. <attribute name="Position" value="0 0 -0" />
  950. <attribute name="Rotation" value="1 0 0 0" />
  951. <attribute name="Scale" value="1 1 1" />
  952. <attribute name="Variables" />
  953. <node id="460">
  954. <attribute name="Is Enabled" value="true" />
  955. <attribute name="Name" value="Hand_L_Finger2_01" />
  956. <attribute name="Tags" />
  957. <attribute name="Position" value="0 0 -0" />
  958. <attribute name="Rotation" value="1 0 0 0" />
  959. <attribute name="Scale" value="1 1 1" />
  960. <attribute name="Variables" />
  961. <node id="461">
  962. <attribute name="Is Enabled" value="true" />
  963. <attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_Translation" />
  964. <attribute name="Tags" />
  965. <attribute name="Position" value="0.235311 -3.42608e-17 -2.61247e-17" />
  966. <attribute name="Rotation" value="1 0 0 0" />
  967. <attribute name="Scale" value="1 1 1" />
  968. <attribute name="Variables" />
  969. <node id="462">
  970. <attribute name="Is Enabled" value="true" />
  971. <attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_PreRotation" />
  972. <attribute name="Tags" />
  973. <attribute name="Position" value="0 0 -0" />
  974. <attribute name="Rotation" value="0.999837 0 0 0.0180762" />
  975. <attribute name="Scale" value="1 1 1" />
  976. <attribute name="Variables" />
  977. <node id="463">
  978. <attribute name="Is Enabled" value="true" />
  979. <attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_Rotation" />
  980. <attribute name="Tags" />
  981. <attribute name="Position" value="0 0 -0" />
  982. <attribute name="Rotation" value="0.981596 0 0.190971 0" />
  983. <attribute name="Scale" value="1 1 1" />
  984. <attribute name="Variables" />
  985. <node id="464">
  986. <attribute name="Is Enabled" value="true" />
  987. <attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_Scaling" />
  988. <attribute name="Tags" />
  989. <attribute name="Position" value="0 0 -0" />
  990. <attribute name="Rotation" value="1 0 0 0" />
  991. <attribute name="Scale" value="1 1 1" />
  992. <attribute name="Variables" />
  993. <node id="465">
  994. <attribute name="Is Enabled" value="true" />
  995. <attribute name="Name" value="Hand_L_Finger2_02" />
  996. <attribute name="Tags" />
  997. <attribute name="Position" value="0 0 -0" />
  998. <attribute name="Rotation" value="1 0 0 0" />
  999. <attribute name="Scale" value="1 1 1" />
  1000. <attribute name="Variables" />
  1001. <node id="466">
  1002. <attribute name="Is Enabled" value="true" />
  1003. <attribute name="Name" value="Hand_L_Finger2_03" />
  1004. <attribute name="Tags" />
  1005. <attribute name="Position" value="0.186624 -5.37764e-17 -2.14549e-17" />
  1006. <attribute name="Rotation" value="0.99621 0 0.0869791 0" />
  1007. <attribute name="Scale" value="1 1 1" />
  1008. <attribute name="Variables" />
  1009. <node id="467">
  1010. <attribute name="Is Enabled" value="true" />
  1011. <attribute name="Name" value="Hand_L_Finger2_04" />
  1012. <attribute name="Tags" />
  1013. <attribute name="Position" value="0.14985 -0.00123191 -8.91005e-07" />
  1014. <attribute name="Rotation" value="1 0 0 0" />
  1015. <attribute name="Scale" value="1 1 1" />
  1016. <attribute name="Variables" />
  1017. </node>
  1018. </node>
  1019. </node>
  1020. </node>
  1021. </node>
  1022. </node>
  1023. </node>
  1024. </node>
  1025. </node>
  1026. </node>
  1027. </node>
  1028. </node>
  1029. <node id="468">
  1030. <attribute name="Is Enabled" value="true" />
  1031. <attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_Translation" />
  1032. <attribute name="Tags" />
  1033. <attribute name="Position" value="-0.269047 -0.169247 -3.95089e-17" />
  1034. <attribute name="Rotation" value="1 0 0 0" />
  1035. <attribute name="Scale" value="1 1 1" />
  1036. <attribute name="Variables" />
  1037. <node id="469">
  1038. <attribute name="Is Enabled" value="true" />
  1039. <attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_PreRotation" />
  1040. <attribute name="Tags" />
  1041. <attribute name="Position" value="0 0 -0" />
  1042. <attribute name="Rotation" value="3.30616e-08 -0.654155 0.75636 2.8594e-08" />
  1043. <attribute name="Scale" value="1 1 1" />
  1044. <attribute name="Variables" />
  1045. <node id="470">
  1046. <attribute name="Is Enabled" value="true" />
  1047. <attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_Rotation" />
  1048. <attribute name="Tags" />
  1049. <attribute name="Position" value="0 0 -0" />
  1050. <attribute name="Rotation" value="0.997215 0 -0.0745846 0" />
  1051. <attribute name="Scale" value="1 1 1" />
  1052. <attribute name="Variables" />
  1053. <node id="471">
  1054. <attribute name="Is Enabled" value="true" />
  1055. <attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_Scaling" />
  1056. <attribute name="Tags" />
  1057. <attribute name="Position" value="0 0 -0" />
  1058. <attribute name="Rotation" value="1 0 0 0" />
  1059. <attribute name="Scale" value="1 1 1" />
  1060. <attribute name="Variables" />
  1061. <node id="472">
  1062. <attribute name="Is Enabled" value="true" />
  1063. <attribute name="Name" value="Hand_L_Finger3_01" />
  1064. <attribute name="Tags" />
  1065. <attribute name="Position" value="0 0 -0" />
  1066. <attribute name="Rotation" value="1 0 0 0" />
  1067. <attribute name="Scale" value="1 1 1" />
  1068. <attribute name="Variables" />
  1069. <node id="473">
  1070. <attribute name="Is Enabled" value="true" />
  1071. <attribute name="Name" value="Hand_L_Finger3_02" />
  1072. <attribute name="Tags" />
  1073. <attribute name="Position" value="0.211044 -2.60209e-17 -7.70372e-33" />
  1074. <attribute name="Rotation" value="0.983836 0 0.17907 0" />
  1075. <attribute name="Scale" value="1 1 1" />
  1076. <attribute name="Variables" />
  1077. <node id="474">
  1078. <attribute name="Is Enabled" value="true" />
  1079. <attribute name="Name" value="Hand_L_Finger3_03" />
  1080. <attribute name="Tags" />
  1081. <attribute name="Position" value="0.12352 -0.015279 0.108726" />
  1082. <attribute name="Rotation" value="1 0 0 0" />
  1083. <attribute name="Scale" value="1 1 1" />
  1084. <attribute name="Variables" />
  1085. <node id="475">
  1086. <attribute name="Is Enabled" value="true" />
  1087. <attribute name="Name" value="Hand_L_Finger3_04" />
  1088. <attribute name="Tags" />
  1089. <attribute name="Position" value="0.123054 -0.0244343 0.108742" />
  1090. <attribute name="Rotation" value="1 0 0 0" />
  1091. <attribute name="Scale" value="1 1 1" />
  1092. <attribute name="Variables" />
  1093. </node>
  1094. </node>
  1095. </node>
  1096. </node>
  1097. </node>
  1098. </node>
  1099. </node>
  1100. </node>
  1101. </node>
  1102. </node>
  1103. </node>
  1104. </node>
  1105. </node>
  1106. </node>
  1107. </node>
  1108. </node>
  1109. </node>
  1110. </node>
  1111. <node id="476">
  1112. <attribute name="Is Enabled" value="true" />
  1113. <attribute name="Name" value="Hand_R_Root_$AssimpFbx$_Translation" />
  1114. <attribute name="Tags" />
  1115. <attribute name="Position" value="-1.40085 -0.496557 0.020373" />
  1116. <attribute name="Rotation" value="1 0 0 0" />
  1117. <attribute name="Scale" value="1 1 1" />
  1118. <attribute name="Variables" />
  1119. <node id="477">
  1120. <attribute name="Is Enabled" value="true" />
  1121. <attribute name="Name" value="Hand_R_Root_$AssimpFbx$_PreRotation" />
  1122. <attribute name="Tags" />
  1123. <attribute name="Position" value="0 0 -0" />
  1124. <attribute name="Rotation" value="0.484154 -0.515359 -0.484154 0.515359" />
  1125. <attribute name="Scale" value="1 1 1" />
  1126. <attribute name="Variables" />
  1127. <node id="478">
  1128. <attribute name="Is Enabled" value="true" />
  1129. <attribute name="Name" value="Hand_R_Root_$AssimpFbx$_Rotation" />
  1130. <attribute name="Tags" />
  1131. <attribute name="Position" value="0 0 -0" />
  1132. <attribute name="Rotation" value="0.983669 0 0.179986 0" />
  1133. <attribute name="Scale" value="1 1 1" />
  1134. <attribute name="Variables" />
  1135. <node id="479">
  1136. <attribute name="Is Enabled" value="true" />
  1137. <attribute name="Name" value="Hand_R_Root_$AssimpFbx$_Scaling" />
  1138. <attribute name="Tags" />
  1139. <attribute name="Position" value="0 0 -0" />
  1140. <attribute name="Rotation" value="1 0 0 0" />
  1141. <attribute name="Scale" value="1 1 1" />
  1142. <attribute name="Variables" />
  1143. <node id="480">
  1144. <attribute name="Is Enabled" value="true" />
  1145. <attribute name="Name" value="Hand_R_Root" />
  1146. <attribute name="Tags" />
  1147. <attribute name="Position" value="0 0 -0" />
  1148. <attribute name="Rotation" value="1 0 0 0" />
  1149. <attribute name="Scale" value="1 1 1" />
  1150. <attribute name="Variables" />
  1151. <node id="481">
  1152. <attribute name="Is Enabled" value="true" />
  1153. <attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_Translation" />
  1154. <attribute name="Tags" />
  1155. <attribute name="Position" value="-0.342905 -4.49124e-07 9.95969e-06" />
  1156. <attribute name="Rotation" value="1 0 0 0" />
  1157. <attribute name="Scale" value="1 1 1" />
  1158. <attribute name="Variables" />
  1159. <node id="482">
  1160. <attribute name="Is Enabled" value="true" />
  1161. <attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_PreRotation" />
  1162. <attribute name="Tags" />
  1163. <attribute name="Position" value="0 0 -0" />
  1164. <attribute name="Rotation" value="3.33313e-08 -0.646952 0.76253 2.82792e-08" />
  1165. <attribute name="Scale" value="1 1 1" />
  1166. <attribute name="Variables" />
  1167. <node id="483">
  1168. <attribute name="Is Enabled" value="true" />
  1169. <attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_Rotation" />
  1170. <attribute name="Tags" />
  1171. <attribute name="Position" value="0 0 -0" />
  1172. <attribute name="Rotation" value="1 0 0 0" />
  1173. <attribute name="Scale" value="1 1 1" />
  1174. <attribute name="Variables" />
  1175. <node id="484">
  1176. <attribute name="Is Enabled" value="true" />
  1177. <attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_Scaling" />
  1178. <attribute name="Tags" />
  1179. <attribute name="Position" value="0 0 -0" />
  1180. <attribute name="Rotation" value="1 0 0 0" />
  1181. <attribute name="Scale" value="1 1 1" />
  1182. <attribute name="Variables" />
  1183. <node id="485">
  1184. <attribute name="Is Enabled" value="true" />
  1185. <attribute name="Name" value="Hand_R_Mid" />
  1186. <attribute name="Tags" />
  1187. <attribute name="Position" value="0 0 -0" />
  1188. <attribute name="Rotation" value="1 0 0 0" />
  1189. <attribute name="Scale" value="1 1 1" />
  1190. <attribute name="Variables" />
  1191. <node id="486">
  1192. <attribute name="Is Enabled" value="true" />
  1193. <attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_Translation" />
  1194. <attribute name="Tags" />
  1195. <attribute name="Position" value="-0.39385 -0.0042706 0.0114405" />
  1196. <attribute name="Rotation" value="1 0 0 0" />
  1197. <attribute name="Scale" value="1 1 1" />
  1198. <attribute name="Variables" />
  1199. <node id="487">
  1200. <attribute name="Is Enabled" value="true" />
  1201. <attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_PreRotation" />
  1202. <attribute name="Tags" />
  1203. <attribute name="Position" value="0 0 -0" />
  1204. <attribute name="Rotation" value="0.951929 0 0 -0.30632" />
  1205. <attribute name="Scale" value="1 1 1" />
  1206. <attribute name="Variables" />
  1207. <node id="488">
  1208. <attribute name="Is Enabled" value="true" />
  1209. <attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_Rotation" />
  1210. <attribute name="Tags" />
  1211. <attribute name="Position" value="0 0 -0" />
  1212. <attribute name="Rotation" value="0.969601 0.205306 0.130239 -0.0275772" />
  1213. <attribute name="Scale" value="1 1 1" />
  1214. <attribute name="Variables" />
  1215. <node id="489">
  1216. <attribute name="Is Enabled" value="true" />
  1217. <attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_Scaling" />
  1218. <attribute name="Tags" />
  1219. <attribute name="Position" value="0 0 -0" />
  1220. <attribute name="Rotation" value="1 0 0 0" />
  1221. <attribute name="Scale" value="1 1 1" />
  1222. <attribute name="Variables" />
  1223. <node id="490">
  1224. <attribute name="Is Enabled" value="true" />
  1225. <attribute name="Name" value="Hand_R_Thumb_01" />
  1226. <attribute name="Tags" />
  1227. <attribute name="Position" value="0 0 -0" />
  1228. <attribute name="Rotation" value="1 0 0 0" />
  1229. <attribute name="Scale" value="1 1 1" />
  1230. <attribute name="Variables" />
  1231. <node id="491">
  1232. <attribute name="Is Enabled" value="true" />
  1233. <attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_Translation" />
  1234. <attribute name="Tags" />
  1235. <attribute name="Position" value="-0.165631 5.49322e-07 -1.20191e-06" />
  1236. <attribute name="Rotation" value="1 0 0 0" />
  1237. <attribute name="Scale" value="1 1 1" />
  1238. <attribute name="Variables" />
  1239. <node id="492">
  1240. <attribute name="Is Enabled" value="true" />
  1241. <attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_PreRotation" />
  1242. <attribute name="Tags" />
  1243. <attribute name="Position" value="0 0 -0" />
  1244. <attribute name="Rotation" value="0.970707 0 0 -0.240265" />
  1245. <attribute name="Scale" value="1 1 1" />
  1246. <attribute name="Variables" />
  1247. <node id="493">
  1248. <attribute name="Is Enabled" value="true" />
  1249. <attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_Rotation" />
  1250. <attribute name="Tags" />
  1251. <attribute name="Position" value="0 0 -0" />
  1252. <attribute name="Rotation" value="1 0 0 0" />
  1253. <attribute name="Scale" value="1 1 1" />
  1254. <attribute name="Variables" />
  1255. <node id="494">
  1256. <attribute name="Is Enabled" value="true" />
  1257. <attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_Scaling" />
  1258. <attribute name="Tags" />
  1259. <attribute name="Position" value="0 0 -0" />
  1260. <attribute name="Rotation" value="1 0 0 0" />
  1261. <attribute name="Scale" value="1 1 1" />
  1262. <attribute name="Variables" />
  1263. <node id="495">
  1264. <attribute name="Is Enabled" value="true" />
  1265. <attribute name="Name" value="Hand_R_Thumb_02" />
  1266. <attribute name="Tags" />
  1267. <attribute name="Position" value="0 0 -0" />
  1268. <attribute name="Rotation" value="1 0 0 0" />
  1269. <attribute name="Scale" value="1 1 1" />
  1270. <attribute name="Variables" />
  1271. <node id="496">
  1272. <attribute name="Is Enabled" value="true" />
  1273. <attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_Translation" />
  1274. <attribute name="Tags" />
  1275. <attribute name="Position" value="-0.177179 1.12539e-07 -7.01527e-07" />
  1276. <attribute name="Rotation" value="1 0 0 0" />
  1277. <attribute name="Scale" value="1 1 1" />
  1278. <attribute name="Variables" />
  1279. <node id="497">
  1280. <attribute name="Is Enabled" value="true" />
  1281. <attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_PreRotation" />
  1282. <attribute name="Tags" />
  1283. <attribute name="Position" value="0 0 -0" />
  1284. <attribute name="Rotation" value="0.454294 -0.437867 0.555218 -0.54187" />
  1285. <attribute name="Scale" value="1 1 1" />
  1286. <attribute name="Variables" />
  1287. <node id="498">
  1288. <attribute name="Is Enabled" value="true" />
  1289. <attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_Rotation" />
  1290. <attribute name="Tags" />
  1291. <attribute name="Position" value="0 0 -0" />
  1292. <attribute name="Rotation" value="1 0 0 0" />
  1293. <attribute name="Scale" value="1 1 1" />
  1294. <attribute name="Variables" />
  1295. <node id="499">
  1296. <attribute name="Is Enabled" value="true" />
  1297. <attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_Scaling" />
  1298. <attribute name="Tags" />
  1299. <attribute name="Position" value="0 0 -0" />
  1300. <attribute name="Rotation" value="1 0 0 0" />
  1301. <attribute name="Scale" value="1 1 1" />
  1302. <attribute name="Variables" />
  1303. <node id="500">
  1304. <attribute name="Is Enabled" value="true" />
  1305. <attribute name="Name" value="Hand_R_Thumb_03" />
  1306. <attribute name="Tags" />
  1307. <attribute name="Position" value="0 0 -0" />
  1308. <attribute name="Rotation" value="1 0 0 0" />
  1309. <attribute name="Scale" value="1 1 1" />
  1310. <attribute name="Variables" />
  1311. <node id="501">
  1312. <attribute name="Is Enabled" value="true" />
  1313. <attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_Translation" />
  1314. <attribute name="Tags" />
  1315. <attribute name="Position" value="-1.3966e-16 4.14707e-16 -0.182757" />
  1316. <attribute name="Rotation" value="1 0 0 0" />
  1317. <attribute name="Scale" value="1 1 1" />
  1318. <attribute name="Variables" />
  1319. <node id="502">
  1320. <attribute name="Is Enabled" value="true" />
  1321. <attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_PreRotation" />
  1322. <attribute name="Tags" />
  1323. <attribute name="Position" value="0 0 -0" />
  1324. <attribute name="Rotation" value="0.396687 -0.572428 0.589821 -0.40875" />
  1325. <attribute name="Scale" value="1 1 1" />
  1326. <attribute name="Variables" />
  1327. <node id="503">
  1328. <attribute name="Is Enabled" value="true" />
  1329. <attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_Rotation" />
  1330. <attribute name="Tags" />
  1331. <attribute name="Position" value="0 0 -0" />
  1332. <attribute name="Rotation" value="1 0 0 0" />
  1333. <attribute name="Scale" value="1 1 1" />
  1334. <attribute name="Variables" />
  1335. <node id="504">
  1336. <attribute name="Is Enabled" value="true" />
  1337. <attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_Scaling" />
  1338. <attribute name="Tags" />
  1339. <attribute name="Position" value="0 0 -0" />
  1340. <attribute name="Rotation" value="1 0 0 0" />
  1341. <attribute name="Scale" value="1 1 1" />
  1342. <attribute name="Variables" />
  1343. <node id="505">
  1344. <attribute name="Is Enabled" value="true" />
  1345. <attribute name="Name" value="Hand_R_Thumb_04" />
  1346. <attribute name="Tags" />
  1347. <attribute name="Position" value="0 0 -0" />
  1348. <attribute name="Rotation" value="1 0 0 0" />
  1349. <attribute name="Scale" value="1 1 1" />
  1350. <attribute name="Variables" />
  1351. </node>
  1352. </node>
  1353. </node>
  1354. </node>
  1355. </node>
  1356. </node>
  1357. </node>
  1358. </node>
  1359. </node>
  1360. </node>
  1361. </node>
  1362. </node>
  1363. </node>
  1364. </node>
  1365. </node>
  1366. </node>
  1367. </node>
  1368. </node>
  1369. </node>
  1370. </node>
  1371. <node id="506">
  1372. <attribute name="Is Enabled" value="true" />
  1373. <attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_Translation" />
  1374. <attribute name="Tags" />
  1375. <attribute name="Position" value="-0.245606 0.243018 4.69497e-06" />
  1376. <attribute name="Rotation" value="1 0 0 0" />
  1377. <attribute name="Scale" value="1 1 1" />
  1378. <attribute name="Variables" />
  1379. <node id="507">
  1380. <attribute name="Is Enabled" value="true" />
  1381. <attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_PreRotation" />
  1382. <attribute name="Tags" />
  1383. <attribute name="Position" value="0 0 -0" />
  1384. <attribute name="Rotation" value="0.691042 0 0 -0.722815" />
  1385. <attribute name="Scale" value="1 1 1" />
  1386. <attribute name="Variables" />
  1387. <node id="508">
  1388. <attribute name="Is Enabled" value="true" />
  1389. <attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_Rotation" />
  1390. <attribute name="Tags" />
  1391. <attribute name="Position" value="0 0 -0" />
  1392. <attribute name="Rotation" value="0.992946 0 0.118564 0" />
  1393. <attribute name="Scale" value="1 1 1" />
  1394. <attribute name="Variables" />
  1395. <node id="509">
  1396. <attribute name="Is Enabled" value="true" />
  1397. <attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_Scaling" />
  1398. <attribute name="Tags" />
  1399. <attribute name="Position" value="0 0 -0" />
  1400. <attribute name="Rotation" value="1 0 0 0" />
  1401. <attribute name="Scale" value="1 1 1" />
  1402. <attribute name="Variables" />
  1403. <node id="510">
  1404. <attribute name="Is Enabled" value="true" />
  1405. <attribute name="Name" value="Hand_R_Finger1_01" />
  1406. <attribute name="Tags" />
  1407. <attribute name="Position" value="0 0 -0" />
  1408. <attribute name="Rotation" value="1 0 0 0" />
  1409. <attribute name="Scale" value="1 1 1" />
  1410. <attribute name="Variables" />
  1411. <node id="511">
  1412. <attribute name="Is Enabled" value="true" />
  1413. <attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_Translation" />
  1414. <attribute name="Tags" />
  1415. <attribute name="Position" value="-0.217302 -1.15863e-07 -4.25366e-06" />
  1416. <attribute name="Rotation" value="1 0 0 0" />
  1417. <attribute name="Scale" value="1 1 1" />
  1418. <attribute name="Variables" />
  1419. <node id="512">
  1420. <attribute name="Is Enabled" value="true" />
  1421. <attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_PreRotation" />
  1422. <attribute name="Tags" />
  1423. <attribute name="Position" value="0 0 -0" />
  1424. <attribute name="Rotation" value="-4.36819e-08 0.999324 -0.0367508 1.60643e-09" />
  1425. <attribute name="Scale" value="1 1 1" />
  1426. <attribute name="Variables" />
  1427. <node id="513">
  1428. <attribute name="Is Enabled" value="true" />
  1429. <attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_Rotation" />
  1430. <attribute name="Tags" />
  1431. <attribute name="Position" value="0 0 -0" />
  1432. <attribute name="Rotation" value="0.993732 0 -0.111789 0" />
  1433. <attribute name="Scale" value="1 1 1" />
  1434. <attribute name="Variables" />
  1435. <node id="514">
  1436. <attribute name="Is Enabled" value="true" />
  1437. <attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_Scaling" />
  1438. <attribute name="Tags" />
  1439. <attribute name="Position" value="0 0 -0" />
  1440. <attribute name="Rotation" value="1 0 0 0" />
  1441. <attribute name="Scale" value="1 1 1" />
  1442. <attribute name="Variables" />
  1443. <node id="515">
  1444. <attribute name="Is Enabled" value="true" />
  1445. <attribute name="Name" value="Hand_R_Finger1_02" />
  1446. <attribute name="Tags" />
  1447. <attribute name="Position" value="0 0 -0" />
  1448. <attribute name="Rotation" value="1 0 0 0" />
  1449. <attribute name="Scale" value="1 1 1" />
  1450. <attribute name="Variables" />
  1451. <node id="516">
  1452. <attribute name="Is Enabled" value="true" />
  1453. <attribute name="Name" value="Hand_R_Finger1_03" />
  1454. <attribute name="Tags" />
  1455. <attribute name="Position" value="-0.177258 -7.4179e-07 -1.08391e-06" />
  1456. <attribute name="Rotation" value="0.997365 0 0.0725466 0" />
  1457. <attribute name="Scale" value="1 1 1" />
  1458. <attribute name="Variables" />
  1459. <node id="517">
  1460. <attribute name="Is Enabled" value="true" />
  1461. <attribute name="Name" value="Hand_R_Finger1_04" />
  1462. <attribute name="Tags" />
  1463. <attribute name="Position" value="-0.140349 0.0115712 -0.042023" />
  1464. <attribute name="Rotation" value="1 0 0 0" />
  1465. <attribute name="Scale" value="1 1 1" />
  1466. <attribute name="Variables" />
  1467. </node>
  1468. </node>
  1469. </node>
  1470. </node>
  1471. </node>
  1472. </node>
  1473. </node>
  1474. </node>
  1475. </node>
  1476. </node>
  1477. </node>
  1478. </node>
  1479. <node id="518">
  1480. <attribute name="Is Enabled" value="true" />
  1481. <attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_Translation" />
  1482. <attribute name="Tags" />
  1483. <attribute name="Position" value="0.0103198 0.214613 -0.0340744" />
  1484. <attribute name="Rotation" value="1 0 0 0" />
  1485. <attribute name="Scale" value="1 1 1" />
  1486. <attribute name="Variables" />
  1487. <node id="519">
  1488. <attribute name="Is Enabled" value="true" />
  1489. <attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_PreRotation" />
  1490. <attribute name="Tags" />
  1491. <attribute name="Position" value="0 0 -0" />
  1492. <attribute name="Rotation" value="0.675235 0 0 -0.737602" />
  1493. <attribute name="Scale" value="1 1 1" />
  1494. <attribute name="Variables" />
  1495. <node id="520">
  1496. <attribute name="Is Enabled" value="true" />
  1497. <attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_Rotation" />
  1498. <attribute name="Tags" />
  1499. <attribute name="Position" value="0 0 -0" />
  1500. <attribute name="Rotation" value="0.998724 0 0.0505027 0" />
  1501. <attribute name="Scale" value="1 1 1" />
  1502. <attribute name="Variables" />
  1503. <node id="521">
  1504. <attribute name="Is Enabled" value="true" />
  1505. <attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_Scaling" />
  1506. <attribute name="Tags" />
  1507. <attribute name="Position" value="0 0 -0" />
  1508. <attribute name="Rotation" value="1 0 0 0" />
  1509. <attribute name="Scale" value="1 1 1" />
  1510. <attribute name="Variables" />
  1511. <node id="522">
  1512. <attribute name="Is Enabled" value="true" />
  1513. <attribute name="Name" value="Hand_R_Finger2_01" />
  1514. <attribute name="Tags" />
  1515. <attribute name="Position" value="0 0 -0" />
  1516. <attribute name="Rotation" value="1 0 0 0" />
  1517. <attribute name="Scale" value="1 1 1" />
  1518. <attribute name="Variables" />
  1519. <node id="523">
  1520. <attribute name="Is Enabled" value="true" />
  1521. <attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_Translation" />
  1522. <attribute name="Tags" />
  1523. <attribute name="Position" value="-0.23531 -5.60044e-08 2.14378e-06" />
  1524. <attribute name="Rotation" value="1 0 0 0" />
  1525. <attribute name="Scale" value="1 1 1" />
  1526. <attribute name="Variables" />
  1527. <node id="524">
  1528. <attribute name="Is Enabled" value="true" />
  1529. <attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_PreRotation" />
  1530. <attribute name="Tags" />
  1531. <attribute name="Position" value="0 0 -0" />
  1532. <attribute name="Rotation" value="0.999837 0 0 0.0180762" />
  1533. <attribute name="Scale" value="1 1 1" />
  1534. <attribute name="Variables" />
  1535. <node id="525">
  1536. <attribute name="Is Enabled" value="true" />
  1537. <attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_Rotation" />
  1538. <attribute name="Tags" />
  1539. <attribute name="Position" value="0 0 -0" />
  1540. <attribute name="Rotation" value="0.981596 0 0.190971 0" />
  1541. <attribute name="Scale" value="1 1 1" />
  1542. <attribute name="Variables" />
  1543. <node id="526">
  1544. <attribute name="Is Enabled" value="true" />
  1545. <attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_Scaling" />
  1546. <attribute name="Tags" />
  1547. <attribute name="Position" value="0 0 -0" />
  1548. <attribute name="Rotation" value="1 0 0 0" />
  1549. <attribute name="Scale" value="1 1 1" />
  1550. <attribute name="Variables" />
  1551. <node id="527">
  1552. <attribute name="Is Enabled" value="true" />
  1553. <attribute name="Name" value="Hand_R_Finger2_02" />
  1554. <attribute name="Tags" />
  1555. <attribute name="Position" value="0 0 -0" />
  1556. <attribute name="Rotation" value="1 0 0 0" />
  1557. <attribute name="Scale" value="1 1 1" />
  1558. <attribute name="Variables" />
  1559. <node id="528">
  1560. <attribute name="Is Enabled" value="true" />
  1561. <attribute name="Name" value="Hand_R_Finger2_03" />
  1562. <attribute name="Tags" />
  1563. <attribute name="Position" value="-0.186625 1.69537e-07 -4.03291e-06" />
  1564. <attribute name="Rotation" value="0.99621 0 0.0869791 0" />
  1565. <attribute name="Scale" value="1 1 1" />
  1566. <attribute name="Variables" />
  1567. <node id="529">
  1568. <attribute name="Is Enabled" value="true" />
  1569. <attribute name="Name" value="Hand_R_Finger2_04" />
  1570. <attribute name="Tags" />
  1571. <attribute name="Position" value="-0.14985 0.00123184 3.62815e-06" />
  1572. <attribute name="Rotation" value="1 0 0 0" />
  1573. <attribute name="Scale" value="1 1 1" />
  1574. <attribute name="Variables" />
  1575. </node>
  1576. </node>
  1577. </node>
  1578. </node>
  1579. </node>
  1580. </node>
  1581. </node>
  1582. </node>
  1583. </node>
  1584. </node>
  1585. </node>
  1586. </node>
  1587. <node id="530">
  1588. <attribute name="Is Enabled" value="true" />
  1589. <attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_Translation" />
  1590. <attribute name="Tags" />
  1591. <attribute name="Position" value="0.269047 0.16925 1.00928e-05" />
  1592. <attribute name="Rotation" value="1 0 0 0" />
  1593. <attribute name="Scale" value="1 1 1" />
  1594. <attribute name="Variables" />
  1595. <node id="531">
  1596. <attribute name="Is Enabled" value="true" />
  1597. <attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_PreRotation" />
  1598. <attribute name="Tags" />
  1599. <attribute name="Position" value="0 0 -0" />
  1600. <attribute name="Rotation" value="3.30616e-08 -0.654155 0.75636 2.8594e-08" />
  1601. <attribute name="Scale" value="1 1 1" />
  1602. <attribute name="Variables" />
  1603. <node id="532">
  1604. <attribute name="Is Enabled" value="true" />
  1605. <attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_Rotation" />
  1606. <attribute name="Tags" />
  1607. <attribute name="Position" value="0 0 -0" />
  1608. <attribute name="Rotation" value="0.997215 0 -0.0745846 0" />
  1609. <attribute name="Scale" value="1 1 1" />
  1610. <attribute name="Variables" />
  1611. <node id="533">
  1612. <attribute name="Is Enabled" value="true" />
  1613. <attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_Scaling" />
  1614. <attribute name="Tags" />
  1615. <attribute name="Position" value="0 0 -0" />
  1616. <attribute name="Rotation" value="1 0 0 0" />
  1617. <attribute name="Scale" value="1 1 1" />
  1618. <attribute name="Variables" />
  1619. <node id="534">
  1620. <attribute name="Is Enabled" value="true" />
  1621. <attribute name="Name" value="Hand_R_Finger3_01" />
  1622. <attribute name="Tags" />
  1623. <attribute name="Position" value="0 0 -0" />
  1624. <attribute name="Rotation" value="1 0 0 0" />
  1625. <attribute name="Scale" value="1 1 1" />
  1626. <attribute name="Variables" />
  1627. <node id="535">
  1628. <attribute name="Is Enabled" value="true" />
  1629. <attribute name="Name" value="Hand_R_Finger3_02" />
  1630. <attribute name="Tags" />
  1631. <attribute name="Position" value="-0.211043 -8.23337e-07 5.10948e-06" />
  1632. <attribute name="Rotation" value="0.983836 0 0.17907 0" />
  1633. <attribute name="Scale" value="1 1 1" />
  1634. <attribute name="Variables" />
  1635. <node id="536">
  1636. <attribute name="Is Enabled" value="true" />
  1637. <attribute name="Name" value="Hand_R_Finger3_03" />
  1638. <attribute name="Tags" />
  1639. <attribute name="Position" value="-0.12352 0.0152789 -0.108726" />
  1640. <attribute name="Rotation" value="1 0 0 0" />
  1641. <attribute name="Scale" value="1 1 1" />
  1642. <attribute name="Variables" />
  1643. <node id="537">
  1644. <attribute name="Is Enabled" value="true" />
  1645. <attribute name="Name" value="Hand_R_Finger3_04" />
  1646. <attribute name="Tags" />
  1647. <attribute name="Position" value="-0.123053 0.0244349 -0.108744" />
  1648. <attribute name="Rotation" value="1 0 0 0" />
  1649. <attribute name="Scale" value="1 1 1" />
  1650. <attribute name="Variables" />
  1651. </node>
  1652. </node>
  1653. </node>
  1654. </node>
  1655. </node>
  1656. </node>
  1657. </node>
  1658. </node>
  1659. </node>
  1660. </node>
  1661. </node>
  1662. </node>
  1663. </node>
  1664. </node>
  1665. </node>
  1666. </node>
  1667. </node>
  1668. </node>
  1669. </node>
  1670. </node>
  1671. </node>
  1672. </node>
  1673. </node>
  1674. </node>
  1675. </node>
  1676. </node>
  1677. </node>
  1678. <node id="538">
  1679. <attribute name="Is Enabled" value="true" />
  1680. <attribute name="Name" value="Foot_R_Root" />
  1681. <attribute name="Tags" />
  1682. <attribute name="Position" value="-0.215056 -0.139712 0.541416" />
  1683. <attribute name="Rotation" value="1 0 0 0" />
  1684. <attribute name="Scale" value="1 1 1" />
  1685. <attribute name="Variables" />
  1686. <node id="539">
  1687. <attribute name="Is Enabled" value="true" />
  1688. <attribute name="Name" value="Foot_R_Heel" />
  1689. <attribute name="Tags" />
  1690. <attribute name="Position" value="-0.198789 -0.135545 5.34245e-17" />
  1691. <attribute name="Rotation" value="1 0 0 0" />
  1692. <attribute name="Scale" value="1 1 1" />
  1693. <attribute name="Variables" />
  1694. <node id="540">
  1695. <attribute name="Is Enabled" value="true" />
  1696. <attribute name="Name" value="Foot_R_Mid" />
  1697. <attribute name="Tags" />
  1698. <attribute name="Position" value="-0.00627286 0.382808 -1.11375e-16" />
  1699. <attribute name="Rotation" value="1 0 0 0" />
  1700. <attribute name="Scale" value="1 1 1" />
  1701. <attribute name="Variables" />
  1702. <node id="541">
  1703. <attribute name="Is Enabled" value="true" />
  1704. <attribute name="Name" value="Foot_R_Toe" />
  1705. <attribute name="Tags" />
  1706. <attribute name="Position" value="0.0064367 0.297352 -8.82107e-17" />
  1707. <attribute name="Rotation" value="1 0 0 0" />
  1708. <attribute name="Scale" value="1 1 1" />
  1709. <attribute name="Variables" />
  1710. <node id="542">
  1711. <attribute name="Is Enabled" value="true" />
  1712. <attribute name="Name" value="Foot_R_Tip" />
  1713. <attribute name="Tags" />
  1714. <attribute name="Position" value="-0.00484508 0.134375 -3.86984e-17" />
  1715. <attribute name="Rotation" value="1 0 0 0" />
  1716. <attribute name="Scale" value="1 1 1" />
  1717. <attribute name="Variables" />
  1718. </node>
  1719. </node>
  1720. </node>
  1721. </node>
  1722. </node>
  1723. <node id="543">
  1724. <attribute name="Is Enabled" value="true" />
  1725. <attribute name="Name" value="Foot_L_Loot" />
  1726. <attribute name="Tags" />
  1727. <attribute name="Position" value="-0.215057 -0.139711 -0.541416" />
  1728. <attribute name="Rotation" value="1 0 0 0" />
  1729. <attribute name="Scale" value="1 1 1" />
  1730. <attribute name="Variables" />
  1731. <node id="544">
  1732. <attribute name="Is Enabled" value="true" />
  1733. <attribute name="Name" value="Foot_L_Heel" />
  1734. <attribute name="Tags" />
  1735. <attribute name="Position" value="-0.198788 -0.135546 2.96566e-33" />
  1736. <attribute name="Rotation" value="1 0 0 0" />
  1737. <attribute name="Scale" value="1 1 1" />
  1738. <attribute name="Variables" />
  1739. <node id="545">
  1740. <attribute name="Is Enabled" value="true" />
  1741. <attribute name="Name" value="Foot_L_Mid" />
  1742. <attribute name="Tags" />
  1743. <attribute name="Position" value="-0.00627311 0.382808 3.33067e-16" />
  1744. <attribute name="Rotation" value="1 0 0 0" />
  1745. <attribute name="Scale" value="1 1 1" />
  1746. <attribute name="Variables" />
  1747. <node id="546">
  1748. <attribute name="Is Enabled" value="true" />
  1749. <attribute name="Name" value="Foot_L_Toe" />
  1750. <attribute name="Tags" />
  1751. <attribute name="Position" value="0.00643722 0.297352 7.45987e-17" />
  1752. <attribute name="Rotation" value="1 0 0 0" />
  1753. <attribute name="Scale" value="1 1 1" />
  1754. <attribute name="Variables" />
  1755. <node id="547">
  1756. <attribute name="Is Enabled" value="true" />
  1757. <attribute name="Name" value="Foot_L_Tip" />
  1758. <attribute name="Tags" />
  1759. <attribute name="Position" value="-0.00484534 0.134375 2.96748e-23" />
  1760. <attribute name="Rotation" value="1 0 0 0" />
  1761. <attribute name="Scale" value="1 1 1" />
  1762. <attribute name="Variables" />
  1763. </node>
  1764. </node>
  1765. </node>
  1766. </node>
  1767. </node>
  1768. </node>
  1769. </node>
  1770. </node>
  1771. </node>
  1772. </node>
  1773. </node>
  1774. <node id="553">
  1775. <attribute name="Is Enabled" value="true" />
  1776. <attribute name="Name" value="SunLight" />
  1777. <attribute name="Tags" />
  1778. <attribute name="Position" value="-23.3403 62.0826 38.6635" />
  1779. <attribute name="Rotation" value="0.373368 0.713201 0.587934 -0.0792287" />
  1780. <attribute name="Scale" value="1 1 1" />
  1781. <attribute name="Variables" />
  1782. <component type="Light" id="2011">
  1783. <attribute name="Light Type" value="Directional" />
  1784. <attribute name="Brightness Multiplier" value="0.6" />
  1785. <attribute name="Cast Shadows" value="true" />
  1786. </component>
  1787. </node>
  1788. </scene>