Browse Source

Working on the new roboman example

Josh Engebretson 10 years ago
parent
commit
5bd0851864
49 changed files with 540 additions and 1812 deletions
  1. 2 2
      Roboman3DNew/Resources/Components.asset
  2. 114 109
      Roboman3DNew/Resources/Components/AvatarController.js
  3. 5 3
      Roboman3DNew/Resources/Components/AvatarController.js.asset
  4. 8 3
      Roboman3DNew/Resources/Components/RoboMan.js
  5. 5 3
      Roboman3DNew/Resources/Components/RoboMan.js.asset
  6. 21 0
      Roboman3DNew/Resources/Components/Water.js
  7. 8 0
      Roboman3DNew/Resources/Components/Water.js.asset
  8. 2 2
      Roboman3DNew/Resources/Models.asset
  9. 1 1
      Roboman3DNew/Resources/Models/Crate.fbx.asset
  10. 1 1
      Roboman3DNew/Resources/Models/Ground.fbx.asset
  11. 2 2
      Roboman3DNew/Resources/Models/Materials.asset
  12. 2 2
      Roboman3DNew/Resources/Models/Materials/Crate.Basic.material.asset
  13. 9 4
      Roboman3DNew/Resources/Models/Materials/DefaultMaterial.material
  14. 2 2
      Roboman3DNew/Resources/Models/Materials/DefaultMaterial.material.asset
  15. 2 2
      Roboman3DNew/Resources/Models/Materials/Pallet.material.asset
  16. 9 2
      Roboman3DNew/Resources/Models/Materials/Robot_01_mat.material
  17. 2 2
      Roboman3DNew/Resources/Models/Materials/Robot_01_mat.material.asset
  18. 2 2
      Roboman3DNew/Resources/Models/Pallet.fbx.asset
  19. BIN
      Roboman3DNew/Resources/Models/Plane.blend
  20. 10 0
      Roboman3DNew/Resources/Models/Plane.blend.asset
  21. 1 31
      Roboman3DNew/Resources/Models/Robo_01.fbx.asset
  22. 2 2
      Roboman3DNew/Resources/Modules.asset
  23. 1 1
      Roboman3DNew/Resources/Modules/gl-matrix.js.asset
  24. 6 0
      Roboman3DNew/Resources/Prefabs.asset
  25. 22 0
      Roboman3DNew/Resources/Prefabs/Crate.prefab
  26. 6 0
      Roboman3DNew/Resources/Prefabs/Crate.prefab.asset
  27. 21 0
      Roboman3DNew/Resources/Prefabs/Pallet.prefab
  28. 6 0
      Roboman3DNew/Resources/Prefabs/Pallet.prefab.asset
  29. 195 0
      Roboman3DNew/Resources/Prefabs/Robo_01.prefab
  30. 6 0
      Roboman3DNew/Resources/Prefabs/Robo_01.prefab.asset
  31. 16 0
      Roboman3DNew/Resources/Prefabs/Water.prefab
  32. 6 0
      Roboman3DNew/Resources/Prefabs/Water.prefab.asset
  33. 2 2
      Roboman3DNew/Resources/Scenes.asset
  34. 1 1
      Roboman3DNew/Resources/Scenes/EmptyScene.scene.asset
  35. 25 1616
      Roboman3DNew/Resources/Scenes/Test.scene
  36. 2 2
      Roboman3DNew/Resources/Scenes/Test.scene.asset
  37. 2 2
      Roboman3DNew/Resources/Scripts.asset
  38. 1 1
      Roboman3DNew/Resources/Scripts/main.js.asset
  39. 2 2
      Roboman3DNew/Resources/Textures.asset
  40. 1 1
      Roboman3DNew/Resources/Textures/BlueGrid.png.asset
  41. 1 1
      Roboman3DNew/Resources/Textures/Crate-Bump.jpg.asset
  42. 1 1
      Roboman3DNew/Resources/Textures/Crate-Diffuse.jpg.asset
  43. 1 1
      Roboman3DNew/Resources/Textures/Crate-Normal.jpg.asset
  44. 1 1
      Roboman3DNew/Resources/Textures/Crate-Specular.jpg.asset
  45. 1 1
      Roboman3DNew/Resources/Textures/Pallet-Bump.jpg.asset
  46. 1 1
      Roboman3DNew/Resources/Textures/Pallet-Difuse.jpg.asset
  47. 1 1
      Roboman3DNew/Resources/Textures/Pallet-Normal.jpg.asset
  48. 1 1
      Roboman3DNew/Resources/Textures/Pallet-Specular.jpg.asset
  49. 1 1
      Roboman3DNew/Resources/Textures/Robot_01_Diffuse.png.asset

+ 2 - 2
Roboman3DNew/Resources/Components.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "4b6ce0deb3e3f5aa0f9652122e54d716",
-	"timestamp": 1435271136,
+	"guid": "cfa4a6ce6d3f1dc2b188471e5c110c30",
+	"timestamp": 1436647145,
 	"FolderImporter": {}
 }

+ 114 - 109
Roboman3DNew/Resources/Components/AvatarController.js

@@ -1,43 +1,46 @@
-// Atomic Component
+// designate component
+"atomic component";
 
 var glmatrix = require("gl-matrix");
 var quat = glmatrix.quat;
 var vec3 = glmatrix.vec3;
 
-var game = Atomic.game;
-var node = self.node;
+exports.component = function(self) {
 
-var onGround = true;
-var okToJump = true;
-var inAirTime = 0;
+  var game = Atomic.game;
+  var node = self.node;
 
-var MOVE_FORCE = 1.8;
-var INAIR_MOVE_FORCE = 0.02;
-var BRAKE_FORCE = 0.2;
-var JUMP_FORCE = 7.0;
-var YAW_SENSITIVITY = 0.1;
-var INAIR_THRESHOLD_TIME = 0.1;
+  var onGround = true;
+  var okToJump = true;
+  var inAirTime = 0;
 
-var cameraMode = 0;
+  var MOVE_FORCE = 1.8;
+  var INAIR_MOVE_FORCE = 0.02;
+  var BRAKE_FORCE = 0.2;
+  var JUMP_FORCE = 7.0;
+  var YAW_SENSITIVITY = 0.1;
+  var INAIR_THRESHOLD_TIME = 0.1;
 
-var yaw = 0;
-var pitch = 0;
+  var cameraMode = 0;
 
-var moveForward = false;
-var moveBackwards = false;
-var moveLeft = false;
-var moveRight = false;
-var mouseMoveX = 0.0;
-var mouseMoveY = 0.0;
-var button0 = false;
-var button1 = false;
+  var yaw = 0;
+  var pitch = 0;
 
-var lastButton0 = false;
-var lastButton1 = false;
+  var moveForward = false;
+  var moveBackwards = false;
+  var moveLeft = false;
+  var moveRight = false;
+  var mouseMoveX = 0.0;
+  var mouseMoveY = 0.0;
+  var button0 = false;
+  var button1 = false;
 
-self.idle = true;
+  var lastButton0 = false;
+  var lastButton1 = false;
 
-function start() {
+  self.idle = true;
+
+  self.start = function() {
 
     // Create rigidbody, and set non-zero mass so that the body becomes dynamic
     var body = node.createComponent("RigidBody");
@@ -54,17 +57,17 @@ function start() {
     var shape = node.createComponent("CollisionShape");
     shape.setCapsule(2, 4, [0, 2, 0]);
 
-}
+  }
 
-function fixedUpdate(timestep) {
+  self.fixedUpdate = function(timestep) {
 
     var body = node.getComponent("RigidBody");
 
     // Update the in air timer. Reset if grounded
     if (!onGround)
-        inAirTimer += timeStep;
+    inAirTimer += timeStep;
     else
-        inAirTimer = 0.0;
+    inAirTimer = 0.0;
 
     // When character has been in air less than 1/10 second, it's still interpreted as being on ground
     var softGrounded = inAirTimer < INAIR_THRESHOLD_TIME;
@@ -80,22 +83,22 @@ function fixedUpdate(timestep) {
     var planeVelocity = [velocity[0], 0.0, velocity[2]];
 
     if (cameraMode != 2) {
-        if (moveForward) {
-            vec3.add(moveDir, moveDir, [0, 0, 1])
-        }
-        if (moveBackwards) {
-            vec3.add(moveDir, moveDir, [0, 0, -1])
-        }
-        if (moveLeft) {
-            vec3.add(moveDir, moveDir, [-1, 0, 0])
-        }
-        if (moveRight) {
-            vec3.add(moveDir, moveDir, [1, 0, 0])
-        }
+      if (moveForward) {
+        vec3.add(moveDir, moveDir, [0, 0, 1])
+      }
+      if (moveBackwards) {
+        vec3.add(moveDir, moveDir, [0, 0, -1])
+      }
+      if (moveLeft) {
+        vec3.add(moveDir, moveDir, [-1, 0, 0])
+      }
+      if (moveRight) {
+        vec3.add(moveDir, moveDir, [1, 0, 0])
+      }
     }
 
     if (vec3.length(moveDir) > 0.0)
-        vec3.normalize(moveDir, moveDir);
+    vec3.normalize(moveDir, moveDir);
 
     vec3.transformQuat(moveDir, moveDir, [rot[1], rot[2], rot[3], rot[0]]);
     vec3.scale(moveDir, moveDir, (softGrounded ? MOVE_FORCE : INAIR_MOVE_FORCE));
@@ -103,37 +106,37 @@ function fixedUpdate(timestep) {
 
     if (softGrounded) {
 
-        // When on ground, apply a braking force to limit maximum ground velocity
-        vec3.negate(planeVelocity, planeVelocity);
-        vec3.scale(planeVelocity, planeVelocity, BRAKE_FORCE);
-        body.applyImpulse(planeVelocity);
-
-        // Jump. Must release jump control inbetween jumps
-        if (button1) {
-            if (okToJump) {
-                var jumpforce = [0, 1, 0];
-                vec3.scale(jumpforce, jumpforce, JUMP_FORCE);
-                body.applyImpulse(jumpforce);
-                okToJump = false;
-            }
-        } else
-            okToJump = true;
+      // When on ground, apply a braking force to limit maximum ground velocity
+      vec3.negate(planeVelocity, planeVelocity);
+      vec3.scale(planeVelocity, planeVelocity, BRAKE_FORCE);
+      body.applyImpulse(planeVelocity);
+
+      // Jump. Must release jump control inbetween jumps
+      if (button1) {
+        if (okToJump) {
+          var jumpforce = [0, 1, 0];
+          vec3.scale(jumpforce, jumpforce, JUMP_FORCE);
+          body.applyImpulse(jumpforce);
+          okToJump = false;
+        }
+      } else
+      okToJump = true;
     }
 
 
     if (softGrounded && vec3.length(moveDir) > 0.0)
-        self.idle = false;
+    self.idle = false;
     else
-        self.idle = true;
+    self.idle = true;
 
 
     // Reset grounded flag for next frame
     onGround = true;
 
 
-}
+  }
 
-function MoveCamera(timeStep) {
+  function MoveCamera(timeStep) {
 
     // Movement speed as world units per second
     var MOVE_SPEED = 10.0;
@@ -144,10 +147,10 @@ function MoveCamera(timeStep) {
     pitch = pitch + MOUSE_SENSITIVITY * mouseMoveY;
 
     if (pitch < -90)
-        pitch = -90;
+    pitch = -90;
 
     if (pitch > 90)
-        pitch = 90;
+    pitch = 90;
 
     // Construct new orientation for the camera scene node from yaw and pitch. Roll is fixed to zero
     var cameraNode = game.cameraNode;
@@ -156,17 +159,17 @@ function MoveCamera(timeStep) {
     var speed = MOVE_SPEED * timeStep;
 
     if (moveForward)
-        cameraNode.translate([0.0, 0.0, speed])
+    cameraNode.translate([0.0, 0.0, speed])
     if (moveBackwards)
-        cameraNode.translate([0.0, 0.0, -speed])
+    cameraNode.translate([0.0, 0.0, -speed])
     if (moveLeft)
-        cameraNode.translate([-speed, 0.0, 0.0])
+    cameraNode.translate([-speed, 0.0, 0.0])
     if (moveRight)
-        cameraNode.translate([speed, 0.0, 0.0])
+    cameraNode.translate([speed, 0.0, 0.0])
 
-}
+  }
 
-function UpdateControls() {
+  function UpdateControls() {
 
     var input = game.input;
 
@@ -185,49 +188,49 @@ function UpdateControls() {
     var MOUSE_SENSITIVITY = 0.1;
 
     if (input.getKeyDown(Atomic.KEY_W))
-        moveForward = true;
+    moveForward = true;
     if (input.getKeyDown(Atomic.KEY_S))
-        moveBackwards = true;
+    moveBackwards = true;
     if (input.getKeyDown(Atomic.KEY_A))
-        moveLeft = true;
+    moveLeft = true;
     if (input.getKeyDown(Atomic.KEY_D))
-        moveRight = true;
+    moveRight = true;
 
     if (input.getKeyPress(Atomic.KEY_F))
-        button0 = true;
+    button0 = true;
     if (input.getKeyPress(Atomic.KEY_SPACE))
-        button1 = true;
+    button1 = true;
 
     mouseMoveX = input.getMouseMoveX();
     mouseMoveY = input.getMouseMoveY();
 
 
 
-}
+  }
 
-function update(timeStep) {
+  self.update = function(timeStep) {
 
     UpdateControls();
 
     if (cameraMode != 2) {
-        yaw += mouseMoveX * YAW_SENSITIVITY;
-        pitch += mouseMoveY * YAW_SENSITIVITY;
+      yaw += mouseMoveX * YAW_SENSITIVITY;
+      pitch += mouseMoveY * YAW_SENSITIVITY;
     }
 
     if (pitch < -80)
-        pitch = -80;
+    pitch = -80;
     if (pitch > 80)
-        pitch = 80;
+    pitch = 80;
 
     if (button0) {
-        cameraMode++;
-        if (cameraMode == 3)
-            cameraMode = 0;
+      cameraMode++;
+      if (cameraMode == 3)
+      cameraMode = 0;
     }
 
-}
+  }
 
-function postUpdate(timestep) {
+  self.postUpdate = function(timestep) {
 
     // Get camera lookat dir from character yaw + pitch
     var rot = node.getRotation();
@@ -242,34 +245,36 @@ function postUpdate(timestep) {
 
     if (cameraMode == 1) {
 
-        var headPos = headNode.getWorldPosition();
-        var offset = [0.0, 0.15, 0.2];
-        vec3.add(headPos, headPos, vec3.transformQuat(offset, offset, [rot[1], rot[2], rot[3], rot[0]]));
-        cameraNode.setPosition(headPos);
-        cameraNode.setRotation([dir[3], dir[0], dir[1], dir[2]]);
-        quat.setAxisAngle(dir, [0, 1, 0], (yaw * Math.PI / 180.0));
-        node.setRotation([dir[3], dir[0], dir[1], dir[2]]);
+      var headPos = headNode.getWorldPosition();
+      var offset = [0.0, 0.15, 0.2];
+      vec3.add(headPos, headPos, vec3.transformQuat(offset, offset, [rot[1], rot[2], rot[3], rot[0]]));
+      cameraNode.setPosition(headPos);
+      cameraNode.setRotation([dir[3], dir[0], dir[1], dir[2]]);
+      quat.setAxisAngle(dir, [0, 1, 0], (yaw * Math.PI / 180.0));
+      node.setRotation([dir[3], dir[0], dir[1], dir[2]]);
 
     }
     if (cameraMode == 0) {
 
-        var aimPoint = node.getPosition();
-        var aimOffset = [0, 1.7, 0];
-        vec3.transformQuat(aimOffset, aimOffset, dir);
-        vec3.add(aimPoint, aimPoint, aimOffset);
+      var aimPoint = node.getPosition();
+      var aimOffset = [0, 1.7, 0];
+      vec3.transformQuat(aimOffset, aimOffset, dir);
+      vec3.add(aimPoint, aimPoint, aimOffset);
 
-        var rayDir = vec3.create();
-        vec3.transformQuat(rayDir, [0, 0, -1], dir);
-        vec3.scale(rayDir, rayDir, 12);
+      var rayDir = vec3.create();
+      vec3.transformQuat(rayDir, [0, 0, -1], dir);
+      vec3.scale(rayDir, rayDir, 12);
 
-        vec3.add(aimPoint, aimPoint, rayDir);
+      vec3.add(aimPoint, aimPoint, rayDir);
 
-        cameraNode.setPosition(aimPoint);
-        cameraNode.setRotation([dir[3], dir[0], dir[1], dir[2]]);
-        quat.setAxisAngle(dir, [0, 1, 0], (yaw * Math.PI / 180.0));
-        node.setRotation([dir[3], dir[0], dir[1], dir[2]]);
+      cameraNode.setPosition(aimPoint);
+      cameraNode.setRotation([dir[3], dir[0], dir[1], dir[2]]);
+      quat.setAxisAngle(dir, [0, 1, 0], (yaw * Math.PI / 180.0));
+      node.setRotation([dir[3], dir[0], dir[1], dir[2]]);
 
-    } else
-        MoveCamera(timestep);
+    }
+    else
+      MoveCamera(timestep);
 
+  }
 }

+ 5 - 3
Roboman3DNew/Resources/Components/AvatarController.js.asset

@@ -1,6 +1,8 @@
 {
 	"version": 1,
-	"guid": "cde627c4a0be81ecce4e683e1c21bea5",
-	"timestamp": 1435274319,
-	"JavascriptImporter": {}
+	"guid": "a9006ddacce13be89cb26c963f87e54b",
+	"timestamp": 1436646582,
+	"JavascriptImporter": {
+		"IsComponentFile": true
+	}
 }

+ 8 - 3
Roboman3DNew/Resources/Components/RoboMan.js

@@ -1,3 +1,7 @@
+// designate component
+"atomic component";
+
+exports.component = function(self) {
 
 var game = Atomic.game;
 var node = self.node;
@@ -5,11 +9,11 @@ var node = self.node;
 RoboMan = self;
 
 var animCtrl = node.getComponent("AnimationController");
-var controller = node.createJSComponent("AvatarController");
+var controller = node.createJSComponent("Components/AvatarController.js");
 
 var idle = true;
 
-function start() {
+self.start = function() {
 
     game.cameraNode.position = [0, 5.5, -10];
     game.cameraNode.pitch(20);
@@ -20,7 +24,7 @@ function start() {
 }
 
 // we need an update or it doesn't run the start, fix in JSVM
-function update(timeStep) {
+self.update = function(timeStep) {
 
   node.yaw(180);
 
@@ -37,5 +41,6 @@ function update(timeStep) {
 
   }
 
+}
 
 }

+ 5 - 3
Roboman3DNew/Resources/Components/RoboMan.js.asset

@@ -1,6 +1,8 @@
 {
 	"version": 1,
-	"guid": "64b14047e151cf4bf891201a18e838e5",
-	"timestamp": 1435274325,
-	"JavascriptImporter": {}
+	"guid": "4f710b9ab96b8d949bd051a8545c825a",
+	"timestamp": 1436646640,
+	"JavascriptImporter": {
+		"IsComponentFile": true
+	}
 }

+ 21 - 0
Roboman3DNew/Resources/Components/Water.js

@@ -0,0 +1,21 @@
+// CommonJS compatible components
+"use strict";
+"atomic component";
+
+exports.component = function(self) {
+
+  var game = Atomic.game;
+  var node = self.node;
+
+  self.start = function() {
+
+    var water = node.getComponent("StaticModel");
+    water.material = game.cache.getResource("Material", "Materials/Water.xml");
+
+  }
+
+  self.update = function(timeStep) {
+
+  }
+
+}

+ 8 - 0
Roboman3DNew/Resources/Components/Water.js.asset

@@ -0,0 +1,8 @@
+{
+	"version": 1,
+	"guid": "d4da3db4accae76aac9c01e7e6174af6",
+	"timestamp": 1436647537,
+	"JavascriptImporter": {
+		"IsComponentFile": true
+	}
+}

+ 2 - 2
Roboman3DNew/Resources/Models.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "84fea417b0053c29943769961053d2d2",
-	"timestamp": 1435266639,
+	"guid": "348ac79570d9570be777b71a3b1b35a4",
+	"timestamp": 1436585400,
 	"FolderImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Models/Crate.fbx.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "8b3330eed90250c4481639992bbb2bab",
+	"guid": "36ba46e851eaa3896f434f50d34cbda6",
 	"timestamp": 1435188439,
 	"ModelImporter": {
 		"scale": 1,

+ 1 - 1
Roboman3DNew/Resources/Models/Ground.fbx.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "3308cea3fc45bb44637cae192a6cf124",
+	"guid": "15934bd919b214d7f7810775e5d852d3",
 	"timestamp": 1435266763,
 	"ModelImporter": {
 		"scale": 1,

+ 2 - 2
Roboman3DNew/Resources/Models/Materials.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "bf81ae1defee9cb68b1538ab786e8732",
-	"timestamp": 1435266767,
+	"guid": "6624ccbe132ffe065388f0f017b88628",
+	"timestamp": 1436391181,
 	"FolderImporter": {}
 }

+ 2 - 2
Roboman3DNew/Resources/Models/Materials/Crate.Basic.material.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "32eb9b1f06b71c9a2af36855a0386751",
-	"timestamp": 1435188576,
+	"guid": "153f6788464b746c4e34407a27fc2696",
+	"timestamp": 1436391124,
 	"MaterialImporter": {}
 }

+ 9 - 4
Roboman3DNew/Resources/Models/Materials/DefaultMaterial.material

@@ -1,10 +1,15 @@
 <?xml version="1.0"?>
 <material>
-	<technique name="Techniques/Diff.xml" />
+	<technique name="Techniques/Diff.xml" quality="0" loddistance="0" />
 	<texture unit="diffuse" name="Textures/BlueGrid.png" />
-	<parameter name="MatDiffColor" value="0.8 0.8 0.8 1" />
-	<parameter name="MatSpecColor" value="0 0 0 1" />
-	<parameter name="MatEmissiveColor" value="0 0 0 1" />
 	<parameter name="UOffset" value="8 0 0 0" />
 	<parameter name="VOffset" value="0 8 0 0" />
+	<parameter name="MatDiffColor" value="0.8 0.8 0.8 1" />
+	<parameter name="MatEmissiveColor" value="0 0 0 1" />
+	<parameter name="MatEnvMapColor" value="1 1 1" />
+	<parameter name="MatSpecColor" value="0.6 0.6 0.6 16" />
+	<cull value="ccw" />
+	<shadowcull value="ccw" />
+	<fill value="solid" />
+	<depthbias constant="0" slopescaled="0" />
 </material>

+ 2 - 2
Roboman3DNew/Resources/Models/Materials/DefaultMaterial.material.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "1944d6d3581f17d826ad80d50c90a39f",
-	"timestamp": 1435275319,
+	"guid": "b5d7107a4d4aa450e70ca23d82c47141",
+	"timestamp": 1436586493,
 	"MaterialImporter": {}
 }

+ 2 - 2
Roboman3DNew/Resources/Models/Materials/Pallet.material.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "fb270f999eae64ef7ff8993a76219f54",
-	"timestamp": 1435187663,
+	"guid": "05ba50117cf320362b848bd9c648e2be",
+	"timestamp": 1436376127,
 	"MaterialImporter": {}
 }

+ 9 - 2
Roboman3DNew/Resources/Models/Materials/Robot_01_mat.material

@@ -1,8 +1,15 @@
 <?xml version="1.0"?>
 <material>
-	<technique name="Techniques/Diff.xml" />
+	<technique name="Techniques/Diff.xml" quality="0" loddistance="0" />
 	<texture unit="diffuse" name="Textures/Robot_01_Diffuse.png" />
+	<parameter name="UOffset" value="1 0 0 0" />
+	<parameter name="VOffset" value="0 1 0 0" />
 	<parameter name="MatDiffColor" value="0.8 0.8 0.8 1" />
-	<parameter name="MatSpecColor" value="0.3 0.3 0.3 16" />
 	<parameter name="MatEmissiveColor" value="0 0 0 1" />
+	<parameter name="MatEnvMapColor" value="1 1 1" />
+	<parameter name="MatSpecColor" value="0.4 0.4 0.4 16" />
+	<cull value="ccw" />
+	<shadowcull value="ccw" />
+	<fill value="solid" />
+	<depthbias constant="0" slopescaled="0" />
 </material>

+ 2 - 2
Roboman3DNew/Resources/Models/Materials/Robot_01_mat.material.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "5a0d4366667e45c47e76ee41f9940f8b",
-	"timestamp": 1435099792,
+	"guid": "75252c6d50e5b9694e30345c8aae1952",
+	"timestamp": 1436395079,
 	"MaterialImporter": {}
 }

+ 2 - 2
Roboman3DNew/Resources/Models/Pallet.fbx.asset

@@ -1,9 +1,9 @@
 {
 	"version": 1,
-	"guid": "ad2c76fe46576d767eafbcf64bcbd49b",
+	"guid": "57fddae4d4352ac0b9c3036f28f9e62b",
 	"timestamp": 1435187661,
 	"ModelImporter": {
-		"scale": 3,
+		"scale": 4,
 		"importAnimations": false,
 		"animInfo": []
 	}

BIN
Roboman3DNew/Resources/Models/Plane.blend


+ 10 - 0
Roboman3DNew/Resources/Models/Plane.blend.asset

@@ -0,0 +1,10 @@
+{
+	"version": 1,
+	"guid": "895f519a3a33e921a43471088cba958b",
+	"timestamp": 1436585400,
+	"ModelImporter": {
+		"scale": 1,
+		"importAnimations": false,
+		"animInfo": []
+	}
+}

+ 1 - 31
Roboman3DNew/Resources/Models/Robo_01.fbx.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "4227e17e4cf0c4d682228a56588e7e36",
+	"guid": "e30fa79a0b75b75cbe5b03a73baa28a5",
 	"timestamp": 1421011930,
 	"ModelImporter": {
 		"scale": 0.5,
@@ -11,11 +11,6 @@
 				"startTime": 1,
 				"endTime": 49
 			},
-			{
-				"name": "Jump_Fall",
-				"startTime": 65,
-				"endTime": 80
-			},
 			{
 				"name": "Walk",
 				"startTime": 81,
@@ -25,31 +20,6 @@
 				"name": "Run",
 				"startTime": 108,
 				"endTime": 124
-			},
-			{
-				"name": "Crouch_Walk",
-				"startTime": 125,
-				"endTime": 150
-			},
-			{
-				"name": "Crouch_Idle",
-				"startTime": 152,
-				"endTime": 200
-			},
-			{
-				"name": "Attack_Idle",
-				"startTime": 210,
-				"endTime": 215
-			},
-			{
-				"name": "Attack_Run",
-				"startTime": 282,
-				"endTime": 297
-			},
-			{
-				"name": "Attack_Jump_Fall",
-				"startTime": 235,
-				"endTime": 254
 			}
 		]
 	}

+ 2 - 2
Roboman3DNew/Resources/Modules.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "685d97c1f8356cfe54797e8c629ebd6f",
-	"timestamp": 1435273400,
+	"guid": "2d68f589bf60bf7dd429f660f25ca57d",
+	"timestamp": 1436376093,
 	"FolderImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Modules/gl-matrix.js.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "06bcbcbcc2a4a832a70738ebceec1bb0",
+	"guid": "94c30c2d41da7ffd51dec8ba99455756",
 	"timestamp": 1423523004,
 	"JavascriptImporter": {}
 }

+ 6 - 0
Roboman3DNew/Resources/Prefabs.asset

@@ -0,0 +1,6 @@
+{
+	"version": 1,
+	"guid": "1795b1cc596f4b279f781c9461680c45",
+	"timestamp": 1436585839,
+	"FolderImporter": {}
+}

+ 22 - 0
Roboman3DNew/Resources/Prefabs/Crate.prefab

@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<node id="4240">
+	<attribute name="Is Enabled" value="true" />
+	<attribute name="Name" value="Crate_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab_Prefab" />
+	<attribute name="Position" value="0 0 0" />
+	<attribute name="Rotation" value="1 0 0 0" />
+	<attribute name="Scale" value="1 1 1" />
+	<attribute name="Variables" />
+	<component type="StaticModel" id="3575">
+		<attribute name="Model" value="Model;Cache/36ba46e851eaa3896f434f50d34cbda6.mdl" />
+		<attribute name="Material" value="Material;Models/Materials/Crate.Basic.material" />
+		<attribute name="Cast Shadows" value="true" />
+	</component>
+	<component type="CollisionShape" id="3576">
+		<attribute name="Size" value="2 2 2" />
+	</component>
+	<component type="RigidBody" id="3577">
+		<attribute name="Physics Position" value="-11.9868 11.3833 -31.8202" />
+		<attribute name="Mass" value="1" />
+		<attribute name="Friction" value="1" />
+	</component>
+</node>

+ 6 - 0
Roboman3DNew/Resources/Prefabs/Crate.prefab.asset

@@ -0,0 +1,6 @@
+{
+	"version": 1,
+	"guid": "072bfd07fa9aa112119abb43bb133c47",
+	"timestamp": 1436570738,
+	"PrefabImporter": {}
+}

+ 21 - 0
Roboman3DNew/Resources/Prefabs/Pallet.prefab

@@ -0,0 +1,21 @@
+<?xml version="1.0"?>
+<node id="3331">
+	<attribute name="Is Enabled" value="true" />
+	<attribute name="Name" value="Pallet" />
+	<attribute name="Position" value="0 0 0" />
+	<attribute name="Rotation" value="1 0 0 0" />
+	<attribute name="Scale" value="1 1 1" />
+	<attribute name="Variables" />
+	<component type="StaticModel" id="2168">
+		<attribute name="Model" value="Model;Cache/57fddae4d4352ac0b9c3036f28f9e62b.mdl" />
+		<attribute name="Material" value="Material;Models/Materials/Pallet.material" />
+		<attribute name="Cast Shadows" value="true" />
+	</component>
+	<component type="CollisionShape" id="2171">
+		<attribute name="Size" value="4 0.5 4" />
+	</component>
+	<component type="RigidBody" id="2172">
+		<attribute name="Physics Position" value="-6.54802 1.10328 6.034" />
+		<attribute name="Mass" value="1" />
+	</component>
+</node>

+ 6 - 0
Roboman3DNew/Resources/Prefabs/Pallet.prefab.asset

@@ -0,0 +1,6 @@
+{
+	"version": 1,
+	"guid": "9e1083378dc59da1d98981cf2acf9f7c",
+	"timestamp": 1436496579,
+	"PrefabImporter": {}
+}

+ 195 - 0
Roboman3DNew/Resources/Prefabs/Robo_01.prefab

@@ -0,0 +1,195 @@
+<?xml version="1.0"?>
+<node id="3691">
+	<attribute name="Is Enabled" value="true" />
+	<attribute name="Name" value="Robo_01" />
+	<attribute name="Position" value="0.277899 0.610095 -4.34694" />
+	<attribute name="Rotation" value="1 0 0 0" />
+	<attribute name="Scale" value="1 1 1" />
+	<attribute name="Variables" />
+	<component type="AnimatedModel" id="2244">
+		<attribute name="Model" value="Model;Cache/e30fa79a0b75b75cbe5b03a73baa28a5.mdl" />
+		<attribute name="Material" value="Material;Models/Materials/Robot_01_mat.material" />
+		<attribute name="Cast Shadows" value="true" />
+		<attribute name="Bone Animation Enabled">
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+			<variant type="Bool" value="true" />
+		</attribute>
+		<attribute name="Animation States">
+			<variant type="Int" value="0" />
+		</attribute>
+	</component>
+	<component type="AnimationController" id="2245">
+		<attribute name="Node Animation States">
+			<variant type="Int" value="0" />
+		</attribute>
+		<attribute name="Animation Resources" value="Animation;e30fa79a0b75b75cbe5b03a73baa28a5_Idle.ani;e30fa79a0b75b75cbe5b03a73baa28a5_Walk.ani;e30fa79a0b75b75cbe5b03a73baa28a5_Run.ani" />
+	</component>
+	<component type="JSComponent" id="2246">
+		<attribute name="ComponentFile" value="JSComponentFile;Components/RoboMan.js" />
+	</component>
+</node>

+ 6 - 0
Roboman3DNew/Resources/Prefabs/Robo_01.prefab.asset

@@ -0,0 +1,6 @@
+{
+	"version": 1,
+	"guid": "fd7bc91efd0b91d949c35435539dcbc8",
+	"timestamp": 1436645979,
+	"PrefabImporter": {}
+}

+ 16 - 0
Roboman3DNew/Resources/Prefabs/Water.prefab

@@ -0,0 +1,16 @@
+<?xml version="1.0"?>
+<node id="374">
+	<attribute name="Is Enabled" value="true" />
+	<attribute name="Name" value="Water" />
+	<attribute name="Position" value="0 0 0" />
+	<attribute name="Rotation" value="1 0 0 0" />
+	<attribute name="Scale" value="1 1 1" />
+	<attribute name="Variables" />
+	<component type="StaticModel" id="1979">
+		<attribute name="Model" value="Model;Cache/895f519a3a33e921a43471088cba958b.mdl" />
+		<attribute name="Material" value="Material;Models/Materials/DefaultMaterial.material" />
+	</component>
+	<component type="JSComponent" id="1984">
+		<attribute name="Component Name" value="Water" />
+	</component>
+</node>

+ 6 - 0
Roboman3DNew/Resources/Prefabs/Water.prefab.asset

@@ -0,0 +1,6 @@
+{
+	"version": 1,
+	"guid": "59441bd8e6b45f7db38165c3cfca4255",
+	"timestamp": 1436586220,
+	"PrefabImporter": {}
+}

+ 2 - 2
Roboman3DNew/Resources/Scenes.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "0f7bb7dbc435eabbd14911f36d941a91",
-	"timestamp": 1435276484,
+	"guid": "39542c62040785a46f37e07e6b6f99ce",
+	"timestamp": 1436570669,
 	"FolderImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Scenes/EmptyScene.scene.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "2b57156dac6c9397d456684d35d9ff8d",
+	"guid": "937d43f30dd15e2581bac7095b19f77d",
 	"timestamp": 1435078907,
 	"SceneImporter": {}
 }

+ 25 - 1616
Roboman3DNew/Resources/Scenes/Test.scene

@@ -5,9 +5,9 @@
 	<attribute name="Smoothing Constant" value="50" />
 	<attribute name="Snap Threshold" value="5" />
 	<attribute name="Elapsed Time" value="0" />
-	<attribute name="Next Replicated Node ID" value="393" />
-	<attribute name="Next Replicated Component ID" value="2031" />
-	<attribute name="Next Local Node ID" value="16778663" />
+	<attribute name="Next Replicated Node ID" value="390" />
+	<attribute name="Next Replicated Component ID" value="1994" />
+	<attribute name="Next Local Node ID" value="16778496" />
 	<attribute name="Next Local Component ID" value="16777216" />
 	<attribute name="Variables" />
 	<attribute name="Variable Names" value="" />
@@ -44,1637 +44,46 @@
 			<attribute name="Depth Slope Bias" value="0.001" />
 		</component>
 	</node>
-	<node id="375">
-		<attribute name="Is Enabled" value="true" />
-		<attribute name="Name" value="Crate" />
-		<attribute name="Position" value="0.194905 0.384087 0.0938559" />
-		<attribute name="Rotation" value="1 0 0 0" />
-		<attribute name="Scale" value="1 1 1" />
-		<attribute name="Variables" />
-		<component type="StaticModel" id="2001">
-			<attribute name="Model" value="Model;Cache/8b3330eed90250c4481639992bbb2bab.mdl" />
-			<attribute name="Material" value="Material;Models/Materials/Crate.Basic.material" />
-			<attribute name="Can Be Occluded" value="false" />
-			<attribute name="Cast Shadows" value="true" />
-		</component>
-		<component type="CollisionShape" id="2002">
-			<attribute name="Size" value="2 2 2" />
-		</component>
-		<component type="RigidBody" id="2003">
-			<attribute name="Physics Position" value="0.194905 0.384087 0.0938559" />
-			<attribute name="Mass" value="1" />
-		</component>
-	</node>
-	<node id="377">
-		<attribute name="Is Enabled" value="true" />
-		<attribute name="Name" value="Crate" />
-		<attribute name="Position" value="-2.50119 0.193884 -0.207637" />
-		<attribute name="Rotation" value="0.943567 0 -0.331181 0" />
-		<attribute name="Scale" value="1 1 1" />
-		<attribute name="Variables" />
-		<component type="StaticModel" id="2005">
-			<attribute name="Model" value="Model;Cache/8b3330eed90250c4481639992bbb2bab.mdl" />
-			<attribute name="Material" value="Material;Models/Materials/Crate.Basic.material" />
-			<attribute name="Cast Shadows" value="true" />
-		</component>
-		<component type="CollisionShape" id="2006">
-			<attribute name="Size" value="2 2 2" />
-		</component>
-		<component type="RigidBody" id="2007">
-			<attribute name="Physics Rotation" value="0.943567 0 -0.331181 0" />
-			<attribute name="Physics Position" value="-2.50119 0.193884 -0.207637" />
-			<attribute name="Mass" value="1" />
-			<attribute name="Friction" value="1" />
-		</component>
-	</node>
-	<node id="378">
-		<attribute name="Is Enabled" value="true" />
-		<attribute name="Name" value="Crate" />
-		<attribute name="Position" value="2.65011 0.519228 -0.326666" />
-		<attribute name="Rotation" value="1 0 0 0" />
-		<attribute name="Scale" value="1 1 1" />
-		<attribute name="Variables" />
-		<component type="StaticModel" id="2008">
-			<attribute name="Model" value="Model;Cache/8b3330eed90250c4481639992bbb2bab.mdl" />
-			<attribute name="Material" value="Material;Models/Materials/Crate.Basic.material" />
-			<attribute name="Cast Shadows" value="true" />
-		</component>
-		<component type="CollisionShape" id="2009">
-			<attribute name="Size" value="2 2 2" />
-		</component>
-		<component type="RigidBody" id="2010">
-			<attribute name="Physics Position" value="2.65011 0.519228 -0.326666" />
-			<attribute name="Mass" value="1" />
-		</component>
-	</node>
-	<node id="382">
+	<node id="361">
 		<attribute name="Is Enabled" value="true" />
 		<attribute name="Name" value="Ground" />
-		<attribute name="Position" value="-1.48961 -1.3577 -6.45019" />
+		<attribute name="Position" value="0 -7.02201 0" />
 		<attribute name="Rotation" value="1 0 0 0" />
 		<attribute name="Scale" value="50 1 50" />
 		<attribute name="Variables" />
-		<component type="StaticModel" id="2014">
-			<attribute name="Model" value="Model;Cache/3308cea3fc45bb44637cae192a6cf124.mdl" />
+		<component type="StaticModel" id="1973">
+			<attribute name="Model" value="Model;Cache/15934bd919b214d7f7810775e5d852d3.mdl" />
 			<attribute name="Material" value="Material;Models/Materials/DefaultMaterial.material" />
 		</component>
-		<component type="CollisionShape" id="2015">
-			<attribute name="Size" value="50 1 50" />
-		</component>
-		<component type="RigidBody" id="2016">
-			<attribute name="Physics Position" value="-1.48961 -1.3577 -6.45019" />
-			<attribute name="Friction" value="1" />
+		<component type="CollisionShape" id="1974" />
+		<component type="RigidBody" id="1975">
+			<attribute name="Physics Position" value="0 -7.02201 0" />
 		</component>
 	</node>
-	<node id="384">
+	<node id="383">
 		<attribute name="Is Enabled" value="true" />
-		<attribute name="Name" value="Robo_01" />
-		<attribute name="Position" value="0.280245 -0.620866 6.61936" />
-		<attribute name="Rotation" value="1 0 -0 0" />
-		<attribute name="Scale" value="1 1 1" />
+		<attribute name="Name" value="Plane" />
+		<attribute name="Position" value="0 -5.96666 -4.61191e-06" />
+		<attribute name="Rotation" value="0.707107 0.707107 0 0" />
+		<attribute name="Scale" value="50 50 1" />
 		<attribute name="Variables" />
-		<component type="AnimatedModel" id="2018">
-			<attribute name="Model" value="Model;Cache/4227e17e4cf0c4d682228a56588e7e36.mdl" />
-			<attribute name="Material" value="Material;Models/Materials/Robot_01_mat.material" />
-			<attribute name="Cast Shadows" value="true" />
-			<attribute name="Bone Animation Enabled">
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-				<variant type="Bool" value="true" />
-			</attribute>
-			<attribute name="Animation States">
-				<variant type="Int" value="0" />
-			</attribute>
-		</component>
-		<component type="AnimationController" id="2019">
-			<attribute name="Node Animation States">
-				<variant type="Int" value="0" />
-			</attribute>
-			<attribute name="Animation Resources" value="Animation;4227e17e4cf0c4d682228a56588e7e36_Idle.ani;4227e17e4cf0c4d682228a56588e7e36_Jump_Fall.ani;4227e17e4cf0c4d682228a56588e7e36_Walk.ani;4227e17e4cf0c4d682228a56588e7e36_Run.ani;4227e17e4cf0c4d682228a56588e7e36_Crouch_Walk.ani;4227e17e4cf0c4d682228a56588e7e36_Crouch_Idle.ani;4227e17e4cf0c4d682228a56588e7e36_Attack_Idle.ani;4227e17e4cf0c4d682228a56588e7e36_Attack_Run.ani;4227e17e4cf0c4d682228a56588e7e36_Attack_Jump_Fall.ani" />
+		<component type="StaticModel" id="1988">
+			<attribute name="Model" value="Model;Cache/895f519a3a33e921a43471088cba958b.mdl" />
+			<attribute name="Material" value="Material;Models/Materials/DefaultMaterial.material" />
 		</component>
-		<component type="JSComponent" id="2021">
-			<attribute name="Component Name" value="RoboMan" />
+		<component type="JSComponent" id="1989">
+			<attribute name="ComponentFile" value="JSComponentFile;Components/Water.js" />
 		</component>
-		<node id="16778496">
-			<attribute name="Is Enabled" value="true" />
-			<attribute name="Name" value="Body_Root_$AssimpFbx$_Translation" />
-			<attribute name="Position" value="0 0.27492 0.000320574" />
-			<attribute name="Rotation" value="1 0 0 0" />
-			<attribute name="Scale" value="1 1 1" />
-			<attribute name="Variables" />
-			<node id="16778497">
-				<attribute name="Is Enabled" value="true" />
-				<attribute name="Name" value="Body_Root_$AssimpFbx$_PreRotation" />
-				<attribute name="Position" value="0 0 -0" />
-				<attribute name="Rotation" value="0.501435 -0.498561 -0.501435 0.498561" />
-				<attribute name="Scale" value="1 1 1" />
-				<attribute name="Variables" />
-				<node id="16778498">
-					<attribute name="Is Enabled" value="true" />
-					<attribute name="Name" value="Body_Root_$AssimpFbx$_Rotation" />
-					<attribute name="Position" value="0 0 -0" />
-					<attribute name="Rotation" value="1 0 0 0" />
-					<attribute name="Scale" value="1 1 1" />
-					<attribute name="Variables" />
-					<node id="16778499">
-						<attribute name="Is Enabled" value="true" />
-						<attribute name="Name" value="Body_Root_$AssimpFbx$_Scaling" />
-						<attribute name="Position" value="0 0 -0" />
-						<attribute name="Rotation" value="1 0 0 0" />
-						<attribute name="Scale" value="1 1 1" />
-						<attribute name="Variables" />
-						<node id="16778500">
-							<attribute name="Is Enabled" value="true" />
-							<attribute name="Name" value="Body_Root" />
-							<attribute name="Position" value="0 0 -0" />
-							<attribute name="Rotation" value="1 0 0 0" />
-							<attribute name="Scale" value="1 1 1" />
-							<attribute name="Variables" />
-							<node id="16778501">
-								<attribute name="Is Enabled" value="true" />
-								<attribute name="Name" value="Body_Chest_$AssimpFbx$_Translation" />
-								<attribute name="Position" value="0.354335 -2.1684e-18 -2.40741e-34" />
-								<attribute name="Rotation" value="1 0 0 0" />
-								<attribute name="Scale" value="1 1 1" />
-								<attribute name="Variables" />
-								<node id="16778502">
-									<attribute name="Is Enabled" value="true" />
-									<attribute name="Name" value="Body_Chest_$AssimpFbx$_Rotation" />
-									<attribute name="Position" value="0 0 -0" />
-									<attribute name="Rotation" value="1 0 0 0" />
-									<attribute name="Scale" value="1 1 1" />
-									<attribute name="Variables" />
-									<node id="16778503">
-										<attribute name="Is Enabled" value="true" />
-										<attribute name="Name" value="Body_Chest_$AssimpFbx$_Scaling" />
-										<attribute name="Position" value="0 0 -0" />
-										<attribute name="Rotation" value="1 0 0 0" />
-										<attribute name="Scale" value="1 1 1" />
-										<attribute name="Variables" />
-										<node id="16778504">
-											<attribute name="Is Enabled" value="true" />
-											<attribute name="Name" value="Body_Chest" />
-											<attribute name="Position" value="0 0 -0" />
-											<attribute name="Rotation" value="1 0 0 0" />
-											<attribute name="Scale" value="1 1 1" />
-											<attribute name="Variables" />
-											<node id="16778505">
-												<attribute name="Is Enabled" value="true" />
-												<attribute name="Name" value="Body_Neck_$AssimpFbx$_Translation" />
-												<attribute name="Position" value="0.37062 4.17361e-15 2.36473e-19" />
-												<attribute name="Rotation" value="1 0 0 0" />
-												<attribute name="Scale" value="1 1 1" />
-												<attribute name="Variables" />
-												<node id="16778506">
-													<attribute name="Is Enabled" value="true" />
-													<attribute name="Name" value="Body_Neck_$AssimpFbx$_PreRotation" />
-													<attribute name="Position" value="0 0 -0" />
-													<attribute name="Rotation" value="-0.5 -0.5 -0.5 0.5" />
-													<attribute name="Scale" value="1 1 1" />
-													<attribute name="Variables" />
-													<node id="16778507">
-														<attribute name="Is Enabled" value="true" />
-														<attribute name="Name" value="Body_Neck_$AssimpFbx$_Rotation" />
-														<attribute name="Position" value="0 0 -0" />
-														<attribute name="Rotation" value="1 0 0 0" />
-														<attribute name="Scale" value="1 1 1" />
-														<attribute name="Variables" />
-														<node id="16778508">
-															<attribute name="Is Enabled" value="true" />
-															<attribute name="Name" value="Body_Neck_$AssimpFbx$_Scaling" />
-															<attribute name="Position" value="0 0 -0" />
-															<attribute name="Rotation" value="1 0 0 0" />
-															<attribute name="Scale" value="1 1 1" />
-															<attribute name="Variables" />
-															<node id="16778509">
-																<attribute name="Is Enabled" value="true" />
-																<attribute name="Name" value="Body_Neck" />
-																<attribute name="Position" value="0 0 -0" />
-																<attribute name="Rotation" value="1 0 0 0" />
-																<attribute name="Scale" value="1 1 1" />
-																<attribute name="Variables" />
-																<node id="16778510">
-																	<attribute name="Is Enabled" value="true" />
-																	<attribute name="Name" value="Head_Root_$AssimpFbx$_Translation" />
-																	<attribute name="Position" value="2.40375e-17 0.0631275 -0.00203637" />
-																	<attribute name="Rotation" value="1 0 0 0" />
-																	<attribute name="Scale" value="1 1 1" />
-																	<attribute name="Variables" />
-																	<node id="16778511">
-																		<attribute name="Is Enabled" value="true" />
-																		<attribute name="Name" value="Head_Root_$AssimpFbx$_PreRotation" />
-																		<attribute name="Position" value="0 0 -0" />
-																		<attribute name="Rotation" value="0.501631 -0.498363 -0.501631 0.498363" />
-																		<attribute name="Scale" value="1 1 1" />
-																		<attribute name="Variables" />
-																		<node id="16778512">
-																			<attribute name="Is Enabled" value="true" />
-																			<attribute name="Name" value="Head_Root_$AssimpFbx$_Rotation" />
-																			<attribute name="Position" value="0 0 -0" />
-																			<attribute name="Rotation" value="1 0 0 0" />
-																			<attribute name="Scale" value="1 1 1" />
-																			<attribute name="Variables" />
-																			<node id="16778513">
-																				<attribute name="Is Enabled" value="true" />
-																				<attribute name="Name" value="Head_Root_$AssimpFbx$_Scaling" />
-																				<attribute name="Position" value="0 0 -0" />
-																				<attribute name="Rotation" value="1 0 0 0" />
-																				<attribute name="Scale" value="1 1 1" />
-																				<attribute name="Variables" />
-																				<node id="16778514">
-																					<attribute name="Is Enabled" value="true" />
-																					<attribute name="Name" value="Head_Root" />
-																					<attribute name="Position" value="0 0 -0" />
-																					<attribute name="Rotation" value="1 0 0 0" />
-																					<attribute name="Scale" value="1 1 1" />
-																					<attribute name="Variables" />
-																					<node id="16778515">
-																						<attribute name="Is Enabled" value="true" />
-																						<attribute name="Name" value="Head_mid_$AssimpFbx$_Translation" />
-																						<attribute name="Position" value="0.311572 6.76542e-17 1.38366e-16" />
-																						<attribute name="Rotation" value="1 0 0 0" />
-																						<attribute name="Scale" value="1 1 1" />
-																						<attribute name="Variables" />
-																						<node id="16778516">
-																							<attribute name="Is Enabled" value="true" />
-																							<attribute name="Name" value="Head_mid_$AssimpFbx$_PreRotation" />
-																							<attribute name="Position" value="0 0 -0" />
-																							<attribute name="Rotation" value="4.37105e-08 0.999979 0.00651459 2.84762e-10" />
-																							<attribute name="Scale" value="1 1 1" />
-																							<attribute name="Variables" />
-																							<node id="16778517">
-																								<attribute name="Is Enabled" value="true" />
-																								<attribute name="Name" value="Head_mid_$AssimpFbx$_Rotation" />
-																								<attribute name="Position" value="0 0 -0" />
-																								<attribute name="Rotation" value="1 0 0 0" />
-																								<attribute name="Scale" value="1 1 1" />
-																								<attribute name="Variables" />
-																								<node id="16778518">
-																									<attribute name="Is Enabled" value="true" />
-																									<attribute name="Name" value="Head_mid_$AssimpFbx$_Scaling" />
-																									<attribute name="Position" value="0 0 -0" />
-																									<attribute name="Rotation" value="1 0 0 0" />
-																									<attribute name="Scale" value="1 1 1" />
-																									<attribute name="Variables" />
-																									<node id="16778519">
-																										<attribute name="Is Enabled" value="true" />
-																										<attribute name="Name" value="Head_mid" />
-																										<attribute name="Position" value="0 0 -0" />
-																										<attribute name="Rotation" value="1 0 0 0" />
-																										<attribute name="Scale" value="1 1 1" />
-																										<attribute name="Variables" />
-																										<node id="16778520">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Head_Tip_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="0.313608 1.24987e-15 -1.38804e-16" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778521">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Head_Tip_$AssimpFbx$_Rotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="1 0 0 0" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778522">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Head_Tip_$AssimpFbx$_Scaling" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="1 0 0 0" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778523">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Head_Tip" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778524">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Antenna_Root" />
-																															<attribute name="Position" value="0.0834913 7.49039e-16 -3.70826e-17" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778525">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Antenna_01" />
-																																<attribute name="Position" value="0.142546 1.27123e-15 -6.33117e-17" />
-																																<attribute name="Rotation" value="1 0 0 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778526">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Antenna_02" />
-																																	<attribute name="Position" value="0.105891 9.49207e-16 -4.70316e-17" />
-																																	<attribute name="Rotation" value="1 0 0 0" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778527">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Antenna_03" />
-																																		<attribute name="Position" value="0.103855 0.00203637 -4.66085e-17" />
-																																		<attribute name="Rotation" value="1 0 0 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																										<node id="16778528">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Eye_Zoom" />
-																											<attribute name="Position" value="0.00568586 -0.562014 1.31953e-16" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																										</node>
-																									</node>
-																								</node>
-																							</node>
-																						</node>
-																					</node>
-																				</node>
-																			</node>
-																		</node>
-																	</node>
-																</node>
-																<node id="16778529">
-																	<attribute name="Is Enabled" value="true" />
-																	<attribute name="Name" value="Hand_L_Root_$AssimpFbx$_Translation" />
-																	<attribute name="Position" value="0.688507 -0.248277 0.0101865" />
-																	<attribute name="Rotation" value="1 0 0 0" />
-																	<attribute name="Scale" value="1 1 1" />
-																	<attribute name="Variables" />
-																	<node id="16778530">
-																		<attribute name="Is Enabled" value="true" />
-																		<attribute name="Name" value="Hand_L_Root_$AssimpFbx$_PreRotation" />
-																		<attribute name="Position" value="0 0 -0" />
-																		<attribute name="Rotation" value="0.515359 0.484154 -0.515359 -0.484154" />
-																		<attribute name="Scale" value="1 1 1" />
-																		<attribute name="Variables" />
-																		<node id="16778531">
-																			<attribute name="Is Enabled" value="true" />
-																			<attribute name="Name" value="Hand_L_Root_$AssimpFbx$_Rotation" />
-																			<attribute name="Position" value="0 0 -0" />
-																			<attribute name="Rotation" value="0.983669 0 0.179986 0" />
-																			<attribute name="Scale" value="1 1 1" />
-																			<attribute name="Variables" />
-																			<node id="16778532">
-																				<attribute name="Is Enabled" value="true" />
-																				<attribute name="Name" value="Hand_L_Root_$AssimpFbx$_Scaling" />
-																				<attribute name="Position" value="0 0 -0" />
-																				<attribute name="Rotation" value="1 0 0 0" />
-																				<attribute name="Scale" value="1 1 1" />
-																				<attribute name="Variables" />
-																				<node id="16778533">
-																					<attribute name="Is Enabled" value="true" />
-																					<attribute name="Name" value="Hand_L_Root" />
-																					<attribute name="Position" value="0 0 -0" />
-																					<attribute name="Rotation" value="1 0 0 0" />
-																					<attribute name="Scale" value="1 1 1" />
-																					<attribute name="Variables" />
-																					<node id="16778534">
-																						<attribute name="Is Enabled" value="true" />
-																						<attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_Translation" />
-																						<attribute name="Position" value="0.171454 -1.73472e-18 3.80705e-17" />
-																						<attribute name="Rotation" value="1 0 0 0" />
-																						<attribute name="Scale" value="1 1 1" />
-																						<attribute name="Variables" />
-																						<node id="16778535">
-																							<attribute name="Is Enabled" value="true" />
-																							<attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_PreRotation" />
-																							<attribute name="Position" value="0 0 -0" />
-																							<attribute name="Rotation" value="3.33313e-08 -0.646952 0.76253 2.82792e-08" />
-																							<attribute name="Scale" value="1 1 1" />
-																							<attribute name="Variables" />
-																							<node id="16778536">
-																								<attribute name="Is Enabled" value="true" />
-																								<attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_Rotation" />
-																								<attribute name="Position" value="0 0 -0" />
-																								<attribute name="Rotation" value="1 0 0 0" />
-																								<attribute name="Scale" value="1 1 1" />
-																								<attribute name="Variables" />
-																								<node id="16778537">
-																									<attribute name="Is Enabled" value="true" />
-																									<attribute name="Name" value="Hand_L_Mid_$AssimpFbx$_Scaling" />
-																									<attribute name="Position" value="0 0 -0" />
-																									<attribute name="Rotation" value="1 0 0 0" />
-																									<attribute name="Scale" value="1 1 1" />
-																									<attribute name="Variables" />
-																									<node id="16778538">
-																										<attribute name="Is Enabled" value="true" />
-																										<attribute name="Name" value="Hand_L_Mid" />
-																										<attribute name="Position" value="0 0 -0" />
-																										<attribute name="Rotation" value="1 0 0 0" />
-																										<attribute name="Scale" value="1 1 1" />
-																										<attribute name="Variables" />
-																										<node id="16778539">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="0.196925 0.00213594 -0.00571767" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778540">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="0.951929 0 0 -0.30632" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778541">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.969601 0.205306 0.130239 -0.0275772" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778542">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_L_Thumb_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778543">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_L_Thumb_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778544">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_Translation" />
-																																<attribute name="Position" value="0.0828152 -4.85723e-17 -5.05642e-18" />
-																																<attribute name="Rotation" value="1 0 0 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778545">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_PreRotation" />
-																																	<attribute name="Position" value="0 0 -0" />
-																																	<attribute name="Rotation" value="0.970707 0 0 -0.240265" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778546">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_Rotation" />
-																																		<attribute name="Position" value="0 0 -0" />
-																																		<attribute name="Rotation" value="1 0 0 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																		<node id="16778547">
-																																			<attribute name="Is Enabled" value="true" />
-																																			<attribute name="Name" value="Hand_L_Thumb_02_$AssimpFbx$_Scaling" />
-																																			<attribute name="Position" value="0 0 -0" />
-																																			<attribute name="Rotation" value="1 0 0 0" />
-																																			<attribute name="Scale" value="1 1 1" />
-																																			<attribute name="Variables" />
-																																			<node id="16778548">
-																																				<attribute name="Is Enabled" value="true" />
-																																				<attribute name="Name" value="Hand_L_Thumb_02" />
-																																				<attribute name="Position" value="0 0 -0" />
-																																				<attribute name="Rotation" value="1 0 0 0" />
-																																				<attribute name="Scale" value="1 1 1" />
-																																				<attribute name="Variables" />
-																																				<node id="16778549">
-																																					<attribute name="Is Enabled" value="true" />
-																																					<attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_Translation" />
-																																					<attribute name="Position" value="0.0885896 -6.93889e-17 -1.13575e-17" />
-																																					<attribute name="Rotation" value="1 0 0 0" />
-																																					<attribute name="Scale" value="1 1 1" />
-																																					<attribute name="Variables" />
-																																					<node id="16778550">
-																																						<attribute name="Is Enabled" value="true" />
-																																						<attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_PreRotation" />
-																																						<attribute name="Position" value="0 0 -0" />
-																																						<attribute name="Rotation" value="-0.448965 -0.443282 0.550909 0.546288" />
-																																						<attribute name="Scale" value="1 1 1" />
-																																						<attribute name="Variables" />
-																																						<node id="16778551">
-																																							<attribute name="Is Enabled" value="true" />
-																																							<attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_Rotation" />
-																																							<attribute name="Position" value="0 0 -0" />
-																																							<attribute name="Rotation" value="1 0 0 0" />
-																																							<attribute name="Scale" value="1 1 1" />
-																																							<attribute name="Variables" />
-																																							<node id="16778552">
-																																								<attribute name="Is Enabled" value="true" />
-																																								<attribute name="Name" value="Hand_L_Thumb_03_$AssimpFbx$_Scaling" />
-																																								<attribute name="Position" value="0 0 -0" />
-																																								<attribute name="Rotation" value="1 0 0 0" />
-																																								<attribute name="Scale" value="1 1 1" />
-																																								<attribute name="Variables" />
-																																								<node id="16778553">
-																																									<attribute name="Is Enabled" value="true" />
-																																									<attribute name="Name" value="Hand_L_Thumb_03" />
-																																									<attribute name="Position" value="0 0 -0" />
-																																									<attribute name="Rotation" value="1 0 0 0" />
-																																									<attribute name="Scale" value="1 1 1" />
-																																									<attribute name="Variables" />
-																																									<node id="16778554">
-																																										<attribute name="Is Enabled" value="true" />
-																																										<attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_Translation" />
-																																										<attribute name="Position" value="5.22294e-17 -6.29497e-18 -0.0913784" />
-																																										<attribute name="Rotation" value="1 0 0 0" />
-																																										<attribute name="Scale" value="1 1 1" />
-																																										<attribute name="Variables" />
-																																										<node id="16778555">
-																																											<attribute name="Is Enabled" value="true" />
-																																											<attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_PreRotation" />
-																																											<attribute name="Position" value="0 0 -0" />
-																																											<attribute name="Rotation" value="0.584191 0.404845 0.400673 0.578171" />
-																																											<attribute name="Scale" value="1 1 1" />
-																																											<attribute name="Variables" />
-																																											<node id="16778556">
-																																												<attribute name="Is Enabled" value="true" />
-																																												<attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_Rotation" />
-																																												<attribute name="Position" value="0 0 -0" />
-																																												<attribute name="Rotation" value="1 0 0 0" />
-																																												<attribute name="Scale" value="1 1 1" />
-																																												<attribute name="Variables" />
-																																												<node id="16778557">
-																																													<attribute name="Is Enabled" value="true" />
-																																													<attribute name="Name" value="Hand_L_Thumb_04_$AssimpFbx$_Scaling" />
-																																													<attribute name="Position" value="0 0 -0" />
-																																													<attribute name="Rotation" value="1 0 0 0" />
-																																													<attribute name="Scale" value="1 1 1" />
-																																													<attribute name="Variables" />
-																																													<node id="16778558">
-																																														<attribute name="Is Enabled" value="true" />
-																																														<attribute name="Name" value="Hand_L_Thumb_04" />
-																																														<attribute name="Position" value="0 0 -0" />
-																																														<attribute name="Rotation" value="1 0 0 0" />
-																																														<attribute name="Scale" value="1 1 1" />
-																																														<attribute name="Variables" />
-																																													</node>
-																																												</node>
-																																											</node>
-																																										</node>
-																																									</node>
-																																								</node>
-																																							</node>
-																																						</node>
-																																					</node>
-																																				</node>
-																																			</node>
-																																		</node>
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																										<node id="16778559">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="0.122803 -0.121508 -1.47262e-17" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778560">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="0.691042 0 0 -0.722815" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778561">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.992946 0 0.118564 0" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778562">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_L_Finger1_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778563">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_L_Finger1_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778564">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_Translation" />
-																																<attribute name="Position" value="0.10865 -2.94903e-17 3.27408e-33" />
-																																<attribute name="Rotation" value="1 0 0 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778565">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_PreRotation" />
-																																	<attribute name="Position" value="0 0 -0" />
-																																	<attribute name="Rotation" value="4.36819e-08 0.999324 -0.0367508 -1.60643e-09" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778566">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_Rotation" />
-																																		<attribute name="Position" value="0 0 -0" />
-																																		<attribute name="Rotation" value="0.993732 0 -0.111789 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																		<node id="16778567">
-																																			<attribute name="Is Enabled" value="true" />
-																																			<attribute name="Name" value="Hand_L_Finger1_02_$AssimpFbx$_Scaling" />
-																																			<attribute name="Position" value="0 0 -0" />
-																																			<attribute name="Rotation" value="1 0 0 0" />
-																																			<attribute name="Scale" value="1 1 1" />
-																																			<attribute name="Variables" />
-																																			<node id="16778568">
-																																				<attribute name="Is Enabled" value="true" />
-																																				<attribute name="Name" value="Hand_L_Finger1_02" />
-																																				<attribute name="Position" value="0 0 -0" />
-																																				<attribute name="Rotation" value="1 0 0 0" />
-																																				<attribute name="Scale" value="1 1 1" />
-																																				<attribute name="Variables" />
-																																				<node id="16778569">
-																																					<attribute name="Is Enabled" value="true" />
-																																					<attribute name="Name" value="Hand_L_Finger1_03" />
-																																					<attribute name="Position" value="0.0886292 -7.17742e-17 -7.22754e-19" />
-																																					<attribute name="Rotation" value="0.997365 0 0.0725466 0" />
-																																					<attribute name="Scale" value="1 1 1" />
-																																					<attribute name="Variables" />
-																																					<node id="16778570">
-																																						<attribute name="Is Enabled" value="true" />
-																																						<attribute name="Name" value="Hand_L_Finger1_04" />
-																																						<attribute name="Position" value="0.0701748 -0.00578561 0.0210096" />
-																																						<attribute name="Rotation" value="1 0 0 0" />
-																																						<attribute name="Scale" value="1 1 1" />
-																																						<attribute name="Variables" />
-																																					</node>
-																																				</node>
-																																			</node>
-																																		</node>
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																										<node id="16778571">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="-0.00515991 -0.107306 0.0170403" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778572">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="0.675235 0 0 -0.737602" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778573">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.998724 0 0.0505027 0" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778574">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_L_Finger2_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778575">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_L_Finger2_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778576">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_Translation" />
-																																<attribute name="Position" value="0.117655 -1.71304e-17 -1.30624e-17" />
-																																<attribute name="Rotation" value="1 0 0 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778577">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_PreRotation" />
-																																	<attribute name="Position" value="0 0 -0" />
-																																	<attribute name="Rotation" value="0.999837 0 0 0.0180762" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778578">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_Rotation" />
-																																		<attribute name="Position" value="0 0 -0" />
-																																		<attribute name="Rotation" value="0.981596 0 0.190971 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																		<node id="16778579">
-																																			<attribute name="Is Enabled" value="true" />
-																																			<attribute name="Name" value="Hand_L_Finger2_02_$AssimpFbx$_Scaling" />
-																																			<attribute name="Position" value="0 0 -0" />
-																																			<attribute name="Rotation" value="1 0 0 0" />
-																																			<attribute name="Scale" value="1 1 1" />
-																																			<attribute name="Variables" />
-																																			<node id="16778580">
-																																				<attribute name="Is Enabled" value="true" />
-																																				<attribute name="Name" value="Hand_L_Finger2_02" />
-																																				<attribute name="Position" value="0 0 -0" />
-																																				<attribute name="Rotation" value="1 0 0 0" />
-																																				<attribute name="Scale" value="1 1 1" />
-																																				<attribute name="Variables" />
-																																				<node id="16778581">
-																																					<attribute name="Is Enabled" value="true" />
-																																					<attribute name="Name" value="Hand_L_Finger2_03" />
-																																					<attribute name="Position" value="0.0933122 -2.68882e-17 -1.07274e-17" />
-																																					<attribute name="Rotation" value="0.99621 0 0.0869791 0" />
-																																					<attribute name="Scale" value="1 1 1" />
-																																					<attribute name="Variables" />
-																																					<node id="16778582">
-																																						<attribute name="Is Enabled" value="true" />
-																																						<attribute name="Name" value="Hand_L_Finger2_04" />
-																																						<attribute name="Position" value="0.074925 -0.000615954 -4.45502e-07" />
-																																						<attribute name="Rotation" value="1 0 0 0" />
-																																						<attribute name="Scale" value="1 1 1" />
-																																						<attribute name="Variables" />
-																																					</node>
-																																				</node>
-																																			</node>
-																																		</node>
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																										<node id="16778583">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="-0.134524 -0.0846236 -1.97544e-17" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778584">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="3.30616e-08 -0.654155 0.75636 2.8594e-08" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778585">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.997215 0 -0.0745846 0" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778586">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_L_Finger3_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778587">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_L_Finger3_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778588">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_L_Finger3_02" />
-																																<attribute name="Position" value="0.105522 -1.30104e-17 -3.85186e-33" />
-																																<attribute name="Rotation" value="0.983836 0 0.17907 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778589">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_L_Finger3_03" />
-																																	<attribute name="Position" value="0.0617601 -0.00763952 0.054363" />
-																																	<attribute name="Rotation" value="1 0 0 0" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778590">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_L_Finger3_04" />
-																																		<attribute name="Position" value="0.0615271 -0.0122172 0.0543709" />
-																																		<attribute name="Rotation" value="1 0 0 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																									</node>
-																								</node>
-																							</node>
-																						</node>
-																					</node>
-																				</node>
-																			</node>
-																		</node>
-																	</node>
-																</node>
-																<node id="16778591">
-																	<attribute name="Is Enabled" value="true" />
-																	<attribute name="Name" value="Hand_R_Root_$AssimpFbx$_Translation" />
-																	<attribute name="Position" value="-0.700426 -0.248279 0.0101865" />
-																	<attribute name="Rotation" value="1 0 0 0" />
-																	<attribute name="Scale" value="1 1 1" />
-																	<attribute name="Variables" />
-																	<node id="16778592">
-																		<attribute name="Is Enabled" value="true" />
-																		<attribute name="Name" value="Hand_R_Root_$AssimpFbx$_PreRotation" />
-																		<attribute name="Position" value="0 0 -0" />
-																		<attribute name="Rotation" value="0.484154 -0.515359 -0.484154 0.515359" />
-																		<attribute name="Scale" value="1 1 1" />
-																		<attribute name="Variables" />
-																		<node id="16778593">
-																			<attribute name="Is Enabled" value="true" />
-																			<attribute name="Name" value="Hand_R_Root_$AssimpFbx$_Rotation" />
-																			<attribute name="Position" value="0 0 -0" />
-																			<attribute name="Rotation" value="0.983669 0 0.179986 0" />
-																			<attribute name="Scale" value="1 1 1" />
-																			<attribute name="Variables" />
-																			<node id="16778594">
-																				<attribute name="Is Enabled" value="true" />
-																				<attribute name="Name" value="Hand_R_Root_$AssimpFbx$_Scaling" />
-																				<attribute name="Position" value="0 0 -0" />
-																				<attribute name="Rotation" value="1 0 0 0" />
-																				<attribute name="Scale" value="1 1 1" />
-																				<attribute name="Variables" />
-																				<node id="16778595">
-																					<attribute name="Is Enabled" value="true" />
-																					<attribute name="Name" value="Hand_R_Root" />
-																					<attribute name="Position" value="0 0 -0" />
-																					<attribute name="Rotation" value="1 0 0 0" />
-																					<attribute name="Scale" value="1 1 1" />
-																					<attribute name="Variables" />
-																					<node id="16778596">
-																						<attribute name="Is Enabled" value="true" />
-																						<attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_Translation" />
-																						<attribute name="Position" value="-0.171452 -2.24562e-07 4.97985e-06" />
-																						<attribute name="Rotation" value="1 0 0 0" />
-																						<attribute name="Scale" value="1 1 1" />
-																						<attribute name="Variables" />
-																						<node id="16778597">
-																							<attribute name="Is Enabled" value="true" />
-																							<attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_PreRotation" />
-																							<attribute name="Position" value="0 0 -0" />
-																							<attribute name="Rotation" value="3.33313e-08 -0.646952 0.76253 2.82792e-08" />
-																							<attribute name="Scale" value="1 1 1" />
-																							<attribute name="Variables" />
-																							<node id="16778598">
-																								<attribute name="Is Enabled" value="true" />
-																								<attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_Rotation" />
-																								<attribute name="Position" value="0 0 -0" />
-																								<attribute name="Rotation" value="1 0 0 0" />
-																								<attribute name="Scale" value="1 1 1" />
-																								<attribute name="Variables" />
-																								<node id="16778599">
-																									<attribute name="Is Enabled" value="true" />
-																									<attribute name="Name" value="Hand_R_Mid_$AssimpFbx$_Scaling" />
-																									<attribute name="Position" value="0 0 -0" />
-																									<attribute name="Rotation" value="1 0 0 0" />
-																									<attribute name="Scale" value="1 1 1" />
-																									<attribute name="Variables" />
-																									<node id="16778600">
-																										<attribute name="Is Enabled" value="true" />
-																										<attribute name="Name" value="Hand_R_Mid" />
-																										<attribute name="Position" value="0 0 -0" />
-																										<attribute name="Rotation" value="1 0 0 0" />
-																										<attribute name="Scale" value="1 1 1" />
-																										<attribute name="Variables" />
-																										<node id="16778601">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="-0.196925 -0.0021353 0.00572024" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778602">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="0.951929 0 0 -0.30632" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778603">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.969601 0.205306 0.130239 -0.0275772" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778604">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_R_Thumb_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778605">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_R_Thumb_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778606">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_Translation" />
-																																<attribute name="Position" value="-0.0828153 2.74661e-07 -6.00957e-07" />
-																																<attribute name="Rotation" value="1 0 0 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778607">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_PreRotation" />
-																																	<attribute name="Position" value="0 0 -0" />
-																																	<attribute name="Rotation" value="0.970707 0 0 -0.240265" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778608">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_Rotation" />
-																																		<attribute name="Position" value="0 0 -0" />
-																																		<attribute name="Rotation" value="1 0 0 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																		<node id="16778609">
-																																			<attribute name="Is Enabled" value="true" />
-																																			<attribute name="Name" value="Hand_R_Thumb_02_$AssimpFbx$_Scaling" />
-																																			<attribute name="Position" value="0 0 -0" />
-																																			<attribute name="Rotation" value="1 0 0 0" />
-																																			<attribute name="Scale" value="1 1 1" />
-																																			<attribute name="Variables" />
-																																			<node id="16778610">
-																																				<attribute name="Is Enabled" value="true" />
-																																				<attribute name="Name" value="Hand_R_Thumb_02" />
-																																				<attribute name="Position" value="0 0 -0" />
-																																				<attribute name="Rotation" value="1 0 0 0" />
-																																				<attribute name="Scale" value="1 1 1" />
-																																				<attribute name="Variables" />
-																																				<node id="16778611">
-																																					<attribute name="Is Enabled" value="true" />
-																																					<attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_Translation" />
-																																					<attribute name="Position" value="-0.0885893 5.62697e-08 -3.50763e-07" />
-																																					<attribute name="Rotation" value="1 0 0 0" />
-																																					<attribute name="Scale" value="1 1 1" />
-																																					<attribute name="Variables" />
-																																					<node id="16778612">
-																																						<attribute name="Is Enabled" value="true" />
-																																						<attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_PreRotation" />
-																																						<attribute name="Position" value="0 0 -0" />
-																																						<attribute name="Rotation" value="0.454294 -0.437867 0.555218 -0.54187" />
-																																						<attribute name="Scale" value="1 1 1" />
-																																						<attribute name="Variables" />
-																																						<node id="16778613">
-																																							<attribute name="Is Enabled" value="true" />
-																																							<attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_Rotation" />
-																																							<attribute name="Position" value="0 0 -0" />
-																																							<attribute name="Rotation" value="1 0 0 0" />
-																																							<attribute name="Scale" value="1 1 1" />
-																																							<attribute name="Variables" />
-																																							<node id="16778614">
-																																								<attribute name="Is Enabled" value="true" />
-																																								<attribute name="Name" value="Hand_R_Thumb_03_$AssimpFbx$_Scaling" />
-																																								<attribute name="Position" value="0 0 -0" />
-																																								<attribute name="Rotation" value="1 0 0 0" />
-																																								<attribute name="Scale" value="1 1 1" />
-																																								<attribute name="Variables" />
-																																								<node id="16778615">
-																																									<attribute name="Is Enabled" value="true" />
-																																									<attribute name="Name" value="Hand_R_Thumb_03" />
-																																									<attribute name="Position" value="0 0 -0" />
-																																									<attribute name="Rotation" value="1 0 0 0" />
-																																									<attribute name="Scale" value="1 1 1" />
-																																									<attribute name="Variables" />
-																																									<node id="16778616">
-																																										<attribute name="Is Enabled" value="true" />
-																																										<attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_Translation" />
-																																										<attribute name="Position" value="-6.98298e-17 2.07353e-16 -0.0913783" />
-																																										<attribute name="Rotation" value="1 0 0 0" />
-																																										<attribute name="Scale" value="1 1 1" />
-																																										<attribute name="Variables" />
-																																										<node id="16778617">
-																																											<attribute name="Is Enabled" value="true" />
-																																											<attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_PreRotation" />
-																																											<attribute name="Position" value="0 0 -0" />
-																																											<attribute name="Rotation" value="0.396687 -0.572428 0.589821 -0.40875" />
-																																											<attribute name="Scale" value="1 1 1" />
-																																											<attribute name="Variables" />
-																																											<node id="16778618">
-																																												<attribute name="Is Enabled" value="true" />
-																																												<attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_Rotation" />
-																																												<attribute name="Position" value="0 0 -0" />
-																																												<attribute name="Rotation" value="1 0 0 0" />
-																																												<attribute name="Scale" value="1 1 1" />
-																																												<attribute name="Variables" />
-																																												<node id="16778619">
-																																													<attribute name="Is Enabled" value="true" />
-																																													<attribute name="Name" value="Hand_R_Thumb_04_$AssimpFbx$_Scaling" />
-																																													<attribute name="Position" value="0 0 -0" />
-																																													<attribute name="Rotation" value="1 0 0 0" />
-																																													<attribute name="Scale" value="1 1 1" />
-																																													<attribute name="Variables" />
-																																													<node id="16778620">
-																																														<attribute name="Is Enabled" value="true" />
-																																														<attribute name="Name" value="Hand_R_Thumb_04" />
-																																														<attribute name="Position" value="0 0 -0" />
-																																														<attribute name="Rotation" value="1 0 0 0" />
-																																														<attribute name="Scale" value="1 1 1" />
-																																														<attribute name="Variables" />
-																																													</node>
-																																												</node>
-																																											</node>
-																																										</node>
-																																									</node>
-																																								</node>
-																																							</node>
-																																						</node>
-																																					</node>
-																																				</node>
-																																			</node>
-																																		</node>
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																										<node id="16778621">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="-0.122803 0.121509 2.34748e-06" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778622">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="0.691042 0 0 -0.722815" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778623">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.992946 0 0.118564 0" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778624">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_R_Finger1_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778625">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_R_Finger1_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778626">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_Translation" />
-																																<attribute name="Position" value="-0.108651 -5.79316e-08 -2.12683e-06" />
-																																<attribute name="Rotation" value="1 0 0 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778627">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_PreRotation" />
-																																	<attribute name="Position" value="0 0 -0" />
-																																	<attribute name="Rotation" value="-4.36819e-08 0.999324 -0.0367508 1.60643e-09" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778628">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_Rotation" />
-																																		<attribute name="Position" value="0 0 -0" />
-																																		<attribute name="Rotation" value="0.993732 0 -0.111789 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																		<node id="16778629">
-																																			<attribute name="Is Enabled" value="true" />
-																																			<attribute name="Name" value="Hand_R_Finger1_02_$AssimpFbx$_Scaling" />
-																																			<attribute name="Position" value="0 0 -0" />
-																																			<attribute name="Rotation" value="1 0 0 0" />
-																																			<attribute name="Scale" value="1 1 1" />
-																																			<attribute name="Variables" />
-																																			<node id="16778630">
-																																				<attribute name="Is Enabled" value="true" />
-																																				<attribute name="Name" value="Hand_R_Finger1_02" />
-																																				<attribute name="Position" value="0 0 -0" />
-																																				<attribute name="Rotation" value="1 0 0 0" />
-																																				<attribute name="Scale" value="1 1 1" />
-																																				<attribute name="Variables" />
-																																				<node id="16778631">
-																																					<attribute name="Is Enabled" value="true" />
-																																					<attribute name="Name" value="Hand_R_Finger1_03" />
-																																					<attribute name="Position" value="-0.0886291 -3.70895e-07 -5.41954e-07" />
-																																					<attribute name="Rotation" value="0.997365 0 0.0725466 0" />
-																																					<attribute name="Scale" value="1 1 1" />
-																																					<attribute name="Variables" />
-																																					<node id="16778632">
-																																						<attribute name="Is Enabled" value="true" />
-																																						<attribute name="Name" value="Hand_R_Finger1_04" />
-																																						<attribute name="Position" value="-0.0701745 0.00578558 -0.0210115" />
-																																						<attribute name="Rotation" value="1 0 0 0" />
-																																						<attribute name="Scale" value="1 1 1" />
-																																						<attribute name="Variables" />
-																																					</node>
-																																				</node>
-																																			</node>
-																																		</node>
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																										<node id="16778633">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="0.00515988 0.107306 -0.0170372" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778634">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="0.675235 0 0 -0.737602" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778635">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.998724 0 0.0505027 0" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778636">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_R_Finger2_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778637">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_R_Finger2_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778638">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_Translation" />
-																																<attribute name="Position" value="-0.117655 -2.80022e-08 1.07189e-06" />
-																																<attribute name="Rotation" value="1 0 0 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778639">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_PreRotation" />
-																																	<attribute name="Position" value="0 0 -0" />
-																																	<attribute name="Rotation" value="0.999837 0 0 0.0180762" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778640">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_Rotation" />
-																																		<attribute name="Position" value="0 0 -0" />
-																																		<attribute name="Rotation" value="0.981596 0 0.190971 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																		<node id="16778641">
-																																			<attribute name="Is Enabled" value="true" />
-																																			<attribute name="Name" value="Hand_R_Finger2_02_$AssimpFbx$_Scaling" />
-																																			<attribute name="Position" value="0 0 -0" />
-																																			<attribute name="Rotation" value="1 0 0 0" />
-																																			<attribute name="Scale" value="1 1 1" />
-																																			<attribute name="Variables" />
-																																			<node id="16778642">
-																																				<attribute name="Is Enabled" value="true" />
-																																				<attribute name="Name" value="Hand_R_Finger2_02" />
-																																				<attribute name="Position" value="0 0 -0" />
-																																				<attribute name="Rotation" value="1 0 0 0" />
-																																				<attribute name="Scale" value="1 1 1" />
-																																				<attribute name="Variables" />
-																																				<node id="16778643">
-																																					<attribute name="Is Enabled" value="true" />
-																																					<attribute name="Name" value="Hand_R_Finger2_03" />
-																																					<attribute name="Position" value="-0.0933123 8.47684e-08 -2.01645e-06" />
-																																					<attribute name="Rotation" value="0.99621 0 0.0869791 0" />
-																																					<attribute name="Scale" value="1 1 1" />
-																																					<attribute name="Variables" />
-																																					<node id="16778644">
-																																						<attribute name="Is Enabled" value="true" />
-																																						<attribute name="Name" value="Hand_R_Finger2_04" />
-																																						<attribute name="Position" value="-0.0749252 0.000615922 1.81407e-06" />
-																																						<attribute name="Rotation" value="1 0 0 0" />
-																																						<attribute name="Scale" value="1 1 1" />
-																																						<attribute name="Variables" />
-																																					</node>
-																																				</node>
-																																			</node>
-																																		</node>
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																										<node id="16778645">
-																											<attribute name="Is Enabled" value="true" />
-																											<attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_Translation" />
-																											<attribute name="Position" value="0.134524 0.0846249 5.0464e-06" />
-																											<attribute name="Rotation" value="1 0 0 0" />
-																											<attribute name="Scale" value="1 1 1" />
-																											<attribute name="Variables" />
-																											<node id="16778646">
-																												<attribute name="Is Enabled" value="true" />
-																												<attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_PreRotation" />
-																												<attribute name="Position" value="0 0 -0" />
-																												<attribute name="Rotation" value="3.30616e-08 -0.654155 0.75636 2.8594e-08" />
-																												<attribute name="Scale" value="1 1 1" />
-																												<attribute name="Variables" />
-																												<node id="16778647">
-																													<attribute name="Is Enabled" value="true" />
-																													<attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_Rotation" />
-																													<attribute name="Position" value="0 0 -0" />
-																													<attribute name="Rotation" value="0.997215 0 -0.0745846 0" />
-																													<attribute name="Scale" value="1 1 1" />
-																													<attribute name="Variables" />
-																													<node id="16778648">
-																														<attribute name="Is Enabled" value="true" />
-																														<attribute name="Name" value="Hand_R_Finger3_01_$AssimpFbx$_Scaling" />
-																														<attribute name="Position" value="0 0 -0" />
-																														<attribute name="Rotation" value="1 0 0 0" />
-																														<attribute name="Scale" value="1 1 1" />
-																														<attribute name="Variables" />
-																														<node id="16778649">
-																															<attribute name="Is Enabled" value="true" />
-																															<attribute name="Name" value="Hand_R_Finger3_01" />
-																															<attribute name="Position" value="0 0 -0" />
-																															<attribute name="Rotation" value="1 0 0 0" />
-																															<attribute name="Scale" value="1 1 1" />
-																															<attribute name="Variables" />
-																															<node id="16778650">
-																																<attribute name="Is Enabled" value="true" />
-																																<attribute name="Name" value="Hand_R_Finger3_02" />
-																																<attribute name="Position" value="-0.105522 -4.11669e-07 2.55474e-06" />
-																																<attribute name="Rotation" value="0.983836 0 0.17907 0" />
-																																<attribute name="Scale" value="1 1 1" />
-																																<attribute name="Variables" />
-																																<node id="16778651">
-																																	<attribute name="Is Enabled" value="true" />
-																																	<attribute name="Name" value="Hand_R_Finger3_03" />
-																																	<attribute name="Position" value="-0.0617602 0.00763944 -0.0543628" />
-																																	<attribute name="Rotation" value="1 0 0 0" />
-																																	<attribute name="Scale" value="1 1 1" />
-																																	<attribute name="Variables" />
-																																	<node id="16778652">
-																																		<attribute name="Is Enabled" value="true" />
-																																		<attribute name="Name" value="Hand_R_Finger3_04" />
-																																		<attribute name="Position" value="-0.0615264 0.0122175 -0.0543718" />
-																																		<attribute name="Rotation" value="1 0 0 0" />
-																																		<attribute name="Scale" value="1 1 1" />
-																																		<attribute name="Variables" />
-																																	</node>
-																																</node>
-																															</node>
-																														</node>
-																													</node>
-																												</node>
-																											</node>
-																										</node>
-																									</node>
-																								</node>
-																							</node>
-																						</node>
-																					</node>
-																				</node>
-																			</node>
-																		</node>
-																	</node>
-																</node>
-															</node>
-														</node>
-													</node>
-												</node>
-											</node>
-										</node>
-									</node>
-								</node>
-							</node>
-							<node id="16778653">
-								<attribute name="Is Enabled" value="true" />
-								<attribute name="Name" value="Foot_R_Root" />
-								<attribute name="Position" value="-0.107528 -0.0698558 0.270708" />
-								<attribute name="Rotation" value="1 0 0 0" />
-								<attribute name="Scale" value="1 1 1" />
-								<attribute name="Variables" />
-								<node id="16778654">
-									<attribute name="Is Enabled" value="true" />
-									<attribute name="Name" value="Foot_R_Heel" />
-									<attribute name="Position" value="-0.0993944 -0.0677726 2.67122e-17" />
-									<attribute name="Rotation" value="1 0 0 0" />
-									<attribute name="Scale" value="1 1 1" />
-									<attribute name="Variables" />
-									<node id="16778655">
-										<attribute name="Is Enabled" value="true" />
-										<attribute name="Name" value="Foot_R_Mid" />
-										<attribute name="Position" value="-0.00313643 0.191404 -5.56875e-17" />
-										<attribute name="Rotation" value="1 0 0 0" />
-										<attribute name="Scale" value="1 1 1" />
-										<attribute name="Variables" />
-										<node id="16778656">
-											<attribute name="Is Enabled" value="true" />
-											<attribute name="Name" value="Foot_R_Toe" />
-											<attribute name="Position" value="0.00321835 0.148676 -4.41053e-17" />
-											<attribute name="Rotation" value="1 0 0 0" />
-											<attribute name="Scale" value="1 1 1" />
-											<attribute name="Variables" />
-											<node id="16778657">
-												<attribute name="Is Enabled" value="true" />
-												<attribute name="Name" value="Foot_R_Tip" />
-												<attribute name="Position" value="-0.00242254 0.0671875 -1.93492e-17" />
-												<attribute name="Rotation" value="1 0 0 0" />
-												<attribute name="Scale" value="1 1 1" />
-												<attribute name="Variables" />
-											</node>
-										</node>
-									</node>
-								</node>
-							</node>
-							<node id="16778658">
-								<attribute name="Is Enabled" value="true" />
-								<attribute name="Name" value="Foot_L_Loot" />
-								<attribute name="Position" value="-0.107528 -0.0698555 -0.270708" />
-								<attribute name="Rotation" value="1 0 0 0" />
-								<attribute name="Scale" value="1 1 1" />
-								<attribute name="Variables" />
-								<node id="16778659">
-									<attribute name="Is Enabled" value="true" />
-									<attribute name="Name" value="Foot_L_Heel" />
-									<attribute name="Position" value="-0.0993942 -0.0677728 1.48283e-33" />
-									<attribute name="Rotation" value="1 0 0 0" />
-									<attribute name="Scale" value="1 1 1" />
-									<attribute name="Variables" />
-									<node id="16778660">
-										<attribute name="Is Enabled" value="true" />
-										<attribute name="Name" value="Foot_L_Mid" />
-										<attribute name="Position" value="-0.00313656 0.191404 1.66533e-16" />
-										<attribute name="Rotation" value="1 0 0 0" />
-										<attribute name="Scale" value="1 1 1" />
-										<attribute name="Variables" />
-										<node id="16778661">
-											<attribute name="Is Enabled" value="true" />
-											<attribute name="Name" value="Foot_L_Toe" />
-											<attribute name="Position" value="0.00321861 0.148676 3.72993e-17" />
-											<attribute name="Rotation" value="1 0 0 0" />
-											<attribute name="Scale" value="1 1 1" />
-											<attribute name="Variables" />
-											<node id="16778662">
-												<attribute name="Is Enabled" value="true" />
-												<attribute name="Name" value="Foot_L_Tip" />
-												<attribute name="Position" value="-0.00242267 0.0671877 1.48374e-23" />
-												<attribute name="Rotation" value="1 0 0 0" />
-												<attribute name="Scale" value="1 1 1" />
-												<attribute name="Variables" />
-											</node>
-										</node>
-									</node>
-								</node>
-							</node>
-						</node>
-					</node>
-				</node>
-			</node>
-		</node>
 	</node>
-	<node id="388">
+	<node id="386">
 		<attribute name="Is Enabled" value="true" />
-		<attribute name="Name" value="Crate" />
-		<attribute name="Position" value="2.58262 2.47247 -0.191979" />
+		<attribute name="Name" value="Robo_01" />
+		<attribute name="Position" value="0 -6.43349 0" />
 		<attribute name="Rotation" value="1 0 0 0" />
 		<attribute name="Scale" value="1 1 1" />
 		<attribute name="Variables" />
-		<component type="StaticModel" id="2024">
-			<attribute name="Model" value="Model;Cache/8b3330eed90250c4481639992bbb2bab.mdl" />
-			<attribute name="Material" value="Material;Models/Materials/Crate.Basic.material" />
-			<attribute name="Can Be Occluded" value="false" />
-			<attribute name="Cast Shadows" value="true" />
-		</component>
-		<component type="CollisionShape" id="2025">
-			<attribute name="Size" value="2 2 2" />
-		</component>
-		<component type="RigidBody" id="2026">
-			<attribute name="Physics Position" value="2.58262 2.47247 -0.191979" />
-			<attribute name="Mass" value="1" />
+		<component type="PrefabComponent" id="1992">
+			<attribute name="PrefabGUID" value="fd7bc91efd0b91d949c35435539dcbc8" />
 		</component>
 	</node>
 </scene>

+ 2 - 2
Roboman3DNew/Resources/Scenes/Test.scene.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "b3628e0f84fadb24b54bca4c6bbe0cbf",
-	"timestamp": 1435276549,
+	"guid": "627532ce83065783581852967b660c15",
+	"timestamp": 1436646623,
 	"SceneImporter": {}
 }

+ 2 - 2
Roboman3DNew/Resources/Scripts.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "5297df509cb2063be80d2ba5ca331262",
-	"timestamp": 1435261649,
+	"guid": "4d56b7fa12e72b41428c6e3f38124ea9",
+	"timestamp": 1436376093,
 	"FolderImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Scripts/main.js.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "0f9b0486cba5c7133681e721771e078f",
+	"guid": "821cb3947ce7958118cd54636d4db154",
 	"timestamp": 1435275429,
 	"JavascriptImporter": {}
 }

+ 2 - 2
Roboman3DNew/Resources/Textures.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "41b54b83f4f708802bab29ed8243e409",
-	"timestamp": 1435276848,
+	"guid": "dcf414f72523abe9a89f2dd9685a42bd",
+	"timestamp": 1436376093,
 	"FolderImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/BlueGrid.png.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "b914a05b0638f49b7763dede36fce217",
+	"guid": "f23157495cd9f8b0a41bdbf4b780b353",
 	"timestamp": 1423242905,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Crate-Bump.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "5ab3e8c6d72b5ca1a9c0af3087790baa",
+	"guid": "31b7f68671b5580c0951abb15af193a9",
 	"timestamp": 1435276848,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Crate-Diffuse.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "3faccdd6407a189c60e1e3a6fa353e6b",
+	"guid": "e6126ed129fabe92c167289aba92c051",
 	"timestamp": 1435276843,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Crate-Normal.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "fe72eee78965473636079124b84a5830",
+	"guid": "142e85dfba0ab7d971371dd25795627a",
 	"timestamp": 1435276838,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Crate-Specular.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "c5dd3fa4476138f09dc40ebea5be1cba",
+	"guid": "e4a719a307e46a878668edd4447e1e3c",
 	"timestamp": 1435276834,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Pallet-Bump.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "85efeb869e42a66ea902581759907b90",
+	"guid": "04d8b8652f43376a52054bc8b687b8c0",
 	"timestamp": 1435276829,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Pallet-Difuse.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "ed13ea12d0d0d95636109d4392f9c187",
+	"guid": "b9a3026da1599521f2dc742d9512fe99",
 	"timestamp": 1435276823,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Pallet-Normal.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "634ecc9d7fd5c0575dd83feea822e2ee",
+	"guid": "4c0c21f8c0a547acdf1c7d5abf222965",
 	"timestamp": 1435276818,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Pallet-Specular.jpg.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "411974592a076ab97aa1e51e93cc58b0",
+	"guid": "f008b9a2156cf7c89dc0a8b804b1bd89",
 	"timestamp": 1435276811,
 	"TextureImporter": {}
 }

+ 1 - 1
Roboman3DNew/Resources/Textures/Robot_01_Diffuse.png.asset

@@ -1,6 +1,6 @@
 {
 	"version": 1,
-	"guid": "db1e77e12ba4e42f4e86efd74a9b5312",
+	"guid": "63abd2ae74f973dbccbe1da6fce2ad44",
 	"timestamp": 1435276805,
 	"TextureImporter": {}
 }