commit 07e5b55f371b487103f35f19587daaa96dbe69e7 Author: stujones11 Date: Sat Jul 27 17:28:58 2013 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a57dbc9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +## Generic ignorable patterns and files +*~ +.*.swp +*bak* +tags +*.vim + diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..9baa488 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,15 @@ +Hovercraft for Minetest [hovercraft] +==================================== + +Source Code: Copyright (C) 2013 Stuart Jones - LGPL + +Tetxures: Copyright (C) 2013 Stuart Jones - CC-BY-SA + +Models: Copyright (C) 2013 Stuart Jones - CC-BY-SA + +Sounds: freesound.org + + Rocket Boost Engine Loop by qubodup - CC0 + CARTOON-BING-LOW by kantouth - CC-BY-3.0 + All other sounds: Copyright Stuart Jones - CC-BY-SA + diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..48edd5c --- /dev/null +++ b/README.txt @@ -0,0 +1,26 @@ +Hovercraft for Minetest [hovercraft] +==================================== + +A fun alternative mode of transport for Minetest. + +Controls +======== + + Forward (W) Thrust + Jump (Space) Jump + Mouse Move Rotate + +Know Issues +=========== + +'Bouncing' into thin air: This can simply be the result of server lag (even in singleplayer). +The client and server are out of sync. Solution, just be patient and allow the environment +to full load before preceding. + +Problems with bouncing in air and generally getting stuck, being pulled underwater and +all manner of other weirdness can also be caused by a rather nasty entity duplication bug in minetest itself. +The only solution here is to track down and remove any duplicate entities or by running /clearobjects + +Entity Duplication: See above. This usually occurs when you move a given distance from where the entity +was originally placed. The only solution right now is to restrict the hovercraft to a certain area. +For example, create a sunken race track the hovercraft cannot physically escape from. diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/depends.txt @@ -0,0 +1 @@ +default diff --git a/hover.lua b/hover.lua new file mode 100644 index 0000000..1646aca --- /dev/null +++ b/hover.lua @@ -0,0 +1,166 @@ +hover = {} + +function hover:register_hovercraft(name, def) + minetest.register_entity(name, { + physical = true, + collisionbox = {-0.8,0,-0.8, 0.8,1.2,0.8}, + visual = "mesh", + mesh = "hovercraft.x", + textures = def.textures, + max_speed = def.max_speed, + acceleration = def.acceleration, + deceleration = def.deceleration, + jump_velocity = def.jump_velocity, + fall_velocity = def.fall_velocity, + player = nil, + sound = nil, + thrust = 0, + velocity = {x=0, y=0, z=0}, + last_pos = {x=0, y=0, z=0}, + timer = 0, + on_activate = function(self, staticdata, dtime_s) + self.object:set_animation({x=0, y=24}, 30) + end, + on_rightclick = function(self, clicker) + if not clicker or not clicker:is_player() then + return + end + local pos = self.object:getpos() + if self.player and clicker == self.player then + if self.sound then + minetest.sound_stop(self.sound) + minetest.sound_play("hovercraft_thrust_fade", {object = self.object}) + self.sound = nil + end + self.thrust = 0 + self.player = nil + self.object:set_animation({x=0, y=24}, 30) + clicker:set_animation({x=0, y=0}) + clicker:set_detach() + elseif not self.player then + self.player = clicker + clicker:set_attach(self.object, "", {x=-2,y=16.5,z=0}, {x=0,y=90,z=0}) + clicker:set_animation({x=81, y=81}) + local yaw = clicker:get_look_yaw() + self.object:setyaw(yaw) + self.yaw = yaw + pos.y = pos.y + 0.5 + minetest.sound_play("hovercraft_jump", {object = self.object}) + self.object:set_animation({x=0, y=0}) + end + self.last_pos = pos + self.object:setpos(pos) + end, + on_step = function(self, dtime) + self.timer = self.timer + dtime + if self.player then + local yaw = self.player:get_look_yaw() + if not yaw then + return + end + self.object:setyaw(yaw) + local ctrl = self.player:get_player_control() + if ctrl.up then + if self.thrust < self.max_speed then + self.thrust = self.thrust + self.acceleration + end + local velocity = hover:get_velocity(self.thrust, self.velocity.y, 0, yaw) + if velocity.x < self.velocity.x then + self.velocity.x = self.velocity.x - self.acceleration + elseif velocity.x > self.velocity.x then + self.velocity.x = self.velocity.x + self.acceleration + end + if velocity.z < self.velocity.z then + self.velocity.z = self.velocity.z - self.acceleration + elseif velocity.z > self.velocity.z then + self.velocity.z = self.velocity.z + self.acceleration + end + if not self.sound then + self.object:set_animation({x=25, y=75}, 30) + self.sound = minetest.sound_play("hovercraft_thrust_loop", { + object = self.object, + loop = true, + }) + end + elseif self.thrust > 0 then + self.thrust = self.thrust - 0.1 + if self.sound then + minetest.sound_stop(self.sound) + minetest.sound_play("hovercraft_thrust_fade", {object = self.object}) + self.sound = nil + end + else + self.object:set_animation({x=0, y=0}) + self.thrust = 0 + end + if ctrl.jump and self.velocity.y == 0 then + self.velocity.y = self.jump_velocity + self.timer = 0 + minetest.sound_play("hovercraft_jump", {object = self.object}) + end + if ctrl.sneak then + self.player:set_animation({x=81, y=81}) + end + end + local pos = self.object:getpos() + if self.timer > 0.5 then + local node = minetest.env:get_node({x=pos.x, y=pos.y-0.5, z=pos.z}) + if node.name == "air" or node.name == "ignore" then + self.velocity.y = 0 - self.fall_velocity + else + self.velocity.y = 0 + pos.y = math.floor(pos.y) + 0.5 + self.object:setpos(pos) + end + self.timer = 0 + end + if self.last_pos.x == pos.x and math.abs(self.velocity.x) > 0.5 then + self.velocity.x = self.velocity.x * -0.8 + self.thrust = 0 + minetest.sound_play("hovercraft_bounce", {object = self.object}) + end + if self.last_pos.z == pos.z and math.abs(self.velocity.z) > 0.5 then + self.velocity.z = self.velocity.z * -0.8 + self.thrust = 0 + minetest.sound_play("hovercraft_bounce", {object = self.object}) + end + self.last_pos = pos + if self.velocity.x > self.deceleration then + self.velocity.x = self.velocity.x - self.deceleration + elseif self.velocity.x < 0 - self.deceleration then + self.velocity.x = self.velocity.x + self.deceleration + else + self.velocity.x = 0 + end + if self.velocity.z > self.deceleration then + self.velocity.z = self.velocity.z - self.deceleration + elseif self.velocity.z < 0 - self.deceleration then + self.velocity.z = self.velocity.z + self.deceleration + else + self.velocity.z = 0 + end + self.object:setvelocity(self.velocity) + end, + }) + minetest.register_craftitem(name, { + description = def.description, + inventory_image = def.inventory_image, + liquids_pointable = true, + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type ~= "node" then + return + end + pointed_thing.under.y = pointed_thing.under.y + 0.5 + minetest.env:add_entity(pointed_thing.under, name) + itemstack:take_item() + return itemstack + end, + }) +end + +function hover:get_velocity(vx, vy, vz, yaw) + local x = math.cos(yaw)*vx+math.cos(math.pi/2+yaw)*vz + local z = math.sin(yaw)*vx+math.sin(math.pi/2+yaw)*vz + return {x=x, y=vy, z=z} +end + diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..0825313 --- /dev/null +++ b/init.lua @@ -0,0 +1,24 @@ +dofile(minetest.get_modpath("hovercraft").."/hover.lua") + +hover:register_hovercraft("hovercraft:hover_red" ,{ + description = "Red Hovercraft", + textures = {"hovercraft_red.png"}, + inventory_image = "hovercraft_red_inv.png", + max_speed = 10, + acceleration = 0.25, + deceleration = 0.025, + jump_velocity = 4.0, + fall_velocity = 1.0, +}) + +hover:register_hovercraft("hovercraft:hover_blue" ,{ + description = "Blue Hovercraft", + textures = {"hovercraft_blue.png"}, + inventory_image = "hovercraft_blue_inv.png", + max_speed = 12, + acceleration = 0.25, + deceleration = 0.05, + jump_velocity = 4, + fall_velocity = 1, +}) + diff --git a/models/hovercraft.blend b/models/hovercraft.blend new file mode 100644 index 0000000..a66e458 Binary files /dev/null and b/models/hovercraft.blend differ diff --git a/models/hovercraft.x b/models/hovercraft.x new file mode 100644 index 0000000..d40912d --- /dev/null +++ b/models/hovercraft.x @@ -0,0 +1,2132 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 3.500000, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-2.459941, 1.000000;; + } + Frame Armature_Thruster { + FrameTransformMatrix { + 0.000000, 0.000000,-1.000000, 0.000000, + -1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -4.639344, 8.859941, 0.000000, 1.000000;; + } + } //End of Armature_Thruster + } //End of Armature_Body + Frame Hovercraft { + FrameTransformMatrix { + -0.000003,-4.000000, 0.000000, 0.000000, + 4.000000,-0.000003, 0.000000, 0.000000, + 0.000000, 0.000000, 2.581575, 0.000000, + 0.000000, 0.000000,-0.500000, 1.000000;; + } + Mesh { //Mesh Mesh + 184; + -1.874999;-1.875000;-0.774721;, + 1.875000;-1.874998;-0.774721;, + 1.874998; 1.875000;-0.774721;, + -1.875000; 1.874998;-0.774721;, + 1.874999; 1.874999; 0.387360;, + 1.875000;-1.874999; 0.387360;, + -1.874998;-1.875000; 0.387360;, + -1.874999; 1.874999; 0.387360;, + 1.874998; 1.875000;-0.774721;, + 1.874999; 1.874999; 0.387360;, + -1.874999; 1.874999; 0.387360;, + -1.875000; 1.874998;-0.774721;, + 1.875000;-1.874998;-0.774721;, + 1.875000;-1.874999; 0.387360;, + 1.874999; 1.874999; 0.387360;, + 1.874998; 1.875000;-0.774721;, + -1.874999;-1.875000;-0.774721;, + -1.874998;-1.875000; 0.387360;, + 1.875000;-1.874999; 0.387360;, + 1.875000;-1.874998;-0.774721;, + -1.874998;-1.875000; 0.387360;, + -1.874999;-1.875000;-0.774721;, + -1.875000; 1.874998;-0.774721;, + -1.874999; 1.874999; 0.387360;, + -1.999998;-2.000000;-0.581041;, + 2.000000;-1.999998;-0.581041;, + 1.999998; 2.000000;-0.581041;, + -2.000000; 1.999998;-0.581041;, + 1.999999; 1.999999; 0.193680;, + 2.000000;-1.999999; 0.193680;, + -1.999998;-2.000000; 0.193680;, + -1.999999; 1.999999; 0.193680;, + 1.999998; 2.000000;-0.581041;, + 1.999999; 1.999999; 0.193680;, + -1.999999; 1.999999; 0.193680;, + -2.000000; 1.999998;-0.581041;, + 2.000000;-1.999998;-0.581041;, + 2.000000;-1.999999; 0.193680;, + 1.999999; 1.999999; 0.193680;, + 1.999998; 2.000000;-0.581041;, + -1.999998;-2.000000;-0.581041;, + -1.999998;-2.000000; 0.193680;, + 2.000000;-1.999999; 0.193680;, + 2.000000;-1.999998;-0.581041;, + -1.999998;-2.000000; 0.193680;, + -1.999998;-2.000000;-0.581041;, + -2.000000; 1.999998;-0.581041;, + -1.999999; 1.999999; 0.193680;, + 0.500000;-1.000000; 3.200000;, + 0.500000;-2.000000; 3.200000;, + -0.500000;-2.000000; 3.200000;, + -0.500000;-1.000000; 3.200000;, + 0.500000;-2.000000; 1.700000;, + -0.500000;-2.000000; 1.700000;, + -0.500000;-2.000000; 3.200000;, + 0.500000;-2.000000; 3.200000;, + -0.500000;-2.000000; 1.700000;, + -0.500000;-1.000000; 1.700000;, + -0.500000;-1.000000; 3.200000;, + -0.500000;-2.000000; 3.200000;, + 0.500000;-2.000000; 3.200000;, + 0.500000;-1.000000; 3.200000;, + 0.500000;-1.000000; 1.700000;, + 0.500000;-2.000000; 1.700000;, + 0.500000;-1.000000; 3.200000;, + -0.500000;-1.000000; 3.200000;, + -0.500000;-1.000000; 1.700000;, + 0.500000;-1.000000; 1.700000;, + -0.500000;-2.000000; 1.700000;, + 0.500000;-2.000000; 1.700000;, + 0.500000;-1.000000; 1.700000;, + -0.500000;-1.000000; 1.700000;, + 1.000000; 1.000000; 0.676959;, + 1.000000; 0.999999; 1.100000;, + -1.000000; 1.000000; 1.100000;, + -1.000000; 1.000000; 0.676959;, + -1.000000;-1.000000; 1.100000;, + -1.000000;-1.000000; 0.677000;, + -1.000000; 1.000000; 0.676959;, + -1.000000; 1.000000; 1.100000;, + -1.000000;-1.000000; 0.677000;, + -1.000000;-1.000000; 1.100000;, + 0.999999;-1.000001; 1.100000;, + 0.999999;-1.000000; 0.677000;, + 0.999999;-1.000000; 0.677000;, + 0.999999;-1.000001; 1.100000;, + 1.000000; 0.999999; 1.100000;, + 1.000000; 1.000000; 0.676959;, + 0.999999;-1.000001; 1.100000;, + -1.000000;-1.000000; 1.100000;, + -1.000000; 1.000000; 1.100000;, + 1.000000; 0.999999; 1.100000;, + -0.500000;-1.000000; 0.677000;, + -0.500000;-1.000000; 2.900000;, + -0.750000;-1.000000; 2.900000;, + -0.750000;-1.000000; 0.677000;, + -0.750000;-1.500000; 2.900000;, + -0.750000;-1.500000; 0.677000;, + -0.750000;-1.000000; 0.677000;, + -0.750000;-1.000000; 2.900000;, + -0.500000;-1.500000; 0.677000;, + -0.500000;-1.500000; 2.900000;, + -0.500000;-1.000000; 2.900000;, + -0.500000;-1.000000; 0.677000;, + -0.500000;-1.500000; 2.900000;, + -0.750000;-1.500000; 2.900000;, + -0.750000;-1.000000; 2.900000;, + -0.500000;-1.000000; 2.900000;, + -0.750000;-1.500000; 2.900000;, + -0.500000;-1.500000; 2.900000;, + -0.500000;-1.500000; 0.677000;, + -0.750000;-1.500000; 0.677000;, + -1.500000;-1.500000; 0.387000;, + -1.500000; 1.500000; 0.387000;, + -1.500000; 1.500000; 0.677000;, + -1.500000;-1.500000; 0.677000;, + 1.500001; 1.499999; 0.387000;, + 1.499999;-1.500001; 0.387000;, + 1.499999;-1.500001; 0.677000;, + 1.500001; 1.499999; 0.677000;, + -1.500000; 1.500000; 0.677000;, + -1.500000; 1.500000; 0.387000;, + 1.500001; 1.499999; 0.387000;, + 1.500001; 1.499999; 0.677000;, + -1.000000; 1.500000; 0.677122;, + 1.000000; 1.500000; 0.676959;, + 1.000000; 1.000000; 0.676959;, + -1.000000; 1.000000; 0.676959;, + 0.999999;-1.000000; 0.677000;, + 0.999999;-1.500001; 0.677000;, + -1.000000;-1.500000; 0.677000;, + -1.000000;-1.000000; 0.677000;, + 1.499999;-1.500001; 0.387000;, + -1.500000;-1.500000; 0.387000;, + -1.500000;-1.500000; 0.677000;, + 1.499999;-1.500001; 0.677000;, + -1.500000; 1.500000; 0.677000;, + -1.000000; 1.500000; 0.677122;, + -1.000000;-1.500000; 0.677000;, + -1.500000;-1.500000; 0.677000;, + 0.499519;-1.500000; 2.900000;, + 0.750000;-1.500000; 2.900000;, + 0.750000;-1.500000; 0.677000;, + 0.499519;-1.500000; 0.677000;, + 0.750000;-1.500000; 2.900000;, + 0.499519;-1.500000; 2.900000;, + 0.499519;-1.000000; 2.900000;, + 0.750000;-1.000000; 2.900000;, + 0.750000;-1.500000; 0.677000;, + 0.750000;-1.500000; 2.900000;, + 0.750000;-1.000000; 2.900000;, + 0.750000;-1.000000; 0.677000;, + 0.499519;-1.500000; 2.900000;, + 0.499519;-1.500000; 0.677000;, + 0.499519;-1.000000; 0.677000;, + 0.499519;-1.000000; 2.900000;, + 0.750000;-1.000000; 0.677000;, + 0.750000;-1.000000; 2.900000;, + 0.499519;-1.000000; 2.900000;, + 0.499519;-1.000000; 0.677000;, + -0.374998;-1.875001; 1.898066;, + 0.375002;-1.875000; 1.898066;, + 0.375001;-1.125000; 1.898066;, + -0.374999;-1.125001; 1.898066;, + 0.375002;-1.875000; 2.982676;, + 0.375001;-1.125000; 2.982676;, + 0.375001;-1.125000; 1.898066;, + 0.375002;-1.875000; 1.898066;, + -0.374998;-1.875001; 1.898066;, + -0.374999;-1.125001; 1.898066;, + -0.374999;-1.125001; 2.982676;, + -0.374998;-1.875001; 2.982676;, + 0.375002;-1.875000; 1.898066;, + -0.374998;-1.875001; 1.898066;, + -0.374998;-1.875001; 2.982676;, + 0.375002;-1.875000; 2.982676;, + 0.375001;-1.125000; 2.982676;, + 0.375002;-1.875000; 2.982676;, + -0.374998;-1.875001; 2.982676;, + -0.374999;-1.125001; 2.982676;, + 1.499999;-1.500001; 0.677000;, + 0.999999;-1.500001; 0.677000;, + 1.000000; 1.500000; 0.676959;, + 1.500001; 1.499999; 0.677000;; + 46; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;; + MeshNormals { //Mesh Normals + 184; + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000;-0.000000; 0.000001;, + -1.000000;-0.000000; 0.000001;, + -1.000000;-0.000000; 0.000001;, + -1.000000;-0.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000;-0.000001;, + 1.000000; 0.000000;-0.000001;, + 1.000000; 0.000000;-0.000001;, + 1.000000; 0.000000;-0.000001;, + 0.000000;-1.000000;-0.000001;, + 0.000000;-1.000000;-0.000001;, + 0.000000;-1.000000;-0.000001;, + 0.000000;-1.000000;-0.000001;, + -1.000000;-0.000000; 0.000001;, + -1.000000;-0.000000; 0.000001;, + -1.000000;-0.000000; 0.000001;, + -1.000000;-0.000000; 0.000001;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 1.000000;-0.000001;-0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000041;-0.000162; 1.000000;, + 0.000041;-0.000162; 1.000000;, + 0.000041;-0.000162; 1.000000;, + 0.000041;-0.000162; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -0.000122;-0.000020; 1.000000;, + -0.000122;-0.000020; 1.000000;, + -0.000122;-0.000020; 1.000000;, + -0.000122;-0.000020; 1.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + -1.000000;-0.000001; 0.000000;, + -1.000000;-0.000001; 0.000000;, + -1.000000;-0.000001; 0.000000;, + -1.000000;-0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000041; 0.000007; 1.000000;, + -0.000041; 0.000007; 1.000000;, + -0.000041; 0.000007; 1.000000;, + -0.000041; 0.000007; 1.000000;; + 46; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 46; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Hovercraft { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 1.000000; 1.000000; 1.000000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 184; + 0.031250; 0.531250;, + 0.468750; 0.531250;, + 0.468750; 0.968750;, + 0.031250; 0.968750;, + 0.031250; 0.531250;, + 0.468750; 0.531250;, + 0.468750; 0.968750;, + 0.031250; 0.968750;, + 0.531250; 0.968750;, + 0.531250; 0.781250;, + 0.968750; 0.781250;, + 0.968750; 0.968750;, + 0.968750; 0.718750;, + 0.968750; 0.531250;, + 0.531250; 0.531250;, + 0.531250; 0.718750;, + 0.531250; 0.968750;, + 0.531250; 0.781250;, + 0.968750; 0.781250;, + 0.968750; 0.968750;, + 0.968750; 0.531250;, + 0.968750; 0.718750;, + 0.531250; 0.718750;, + 0.531250; 0.531250;, + 0.000000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 1.000000;, + 0.000000; 1.000000;, + 0.500000; 0.968750;, + 0.500000; 0.812500;, + 1.000000; 0.812500;, + 1.000000; 0.968750;, + 1.000000; 0.718750;, + 1.000000; 0.562500;, + 0.500000; 0.562500;, + 0.500000; 0.718750;, + 0.500000; 0.968750;, + 0.500000; 0.812500;, + 1.000000; 0.812500;, + 1.000000; 0.968750;, + 1.000000; 0.562500;, + 1.000000; 0.718750;, + 0.500000; 0.718750;, + 0.500000; 0.562500;, + 0.625000; 0.000000;, + 0.750000; 0.000000;, + 0.750000; 0.125000;, + 0.625000; 0.125000;, + 0.875000; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.125000;, + 0.875000; 0.125000;, + 0.625000; 0.125000;, + 0.500000; 0.125000;, + 0.500000; 0.000000;, + 0.625000; 0.000000;, + 0.875000; 0.125000;, + 0.750000; 0.125000;, + 0.750000; 0.000000;, + 0.875000; 0.000000;, + 0.625000; 0.125000;, + 0.750000; 0.125000;, + 0.750000; 0.250000;, + 0.625000; 0.250000;, + 1.000000; 0.000000;, + 1.000000; 0.125000;, + 0.875000; 0.125000;, + 0.875000; 0.000000;, + 0.078125; 0.125000;, + 0.125000; 0.125000;, + 0.125000; 0.375000;, + 0.078125; 0.375000;, + 0.375000; 0.078125;, + 0.375000; 0.125000;, + 0.125000; 0.125000;, + 0.125000; 0.078125;, + 0.421875; 0.375000;, + 0.375000; 0.375000;, + 0.375000; 0.125000;, + 0.421875; 0.125000;, + 0.375000; 0.421875;, + 0.375000; 0.375000;, + 0.125000; 0.375000;, + 0.125000; 0.421875;, + 0.375000; 0.125000;, + 0.375000; 0.375000;, + 0.125000; 0.375000;, + 0.125000; 0.125000;, + 0.500000; 0.500000;, + 0.500000; 0.296875;, + 0.546875; 0.296875;, + 0.546875; 0.500000;, + 0.609375; 0.296875;, + 0.609375; 0.500000;, + 0.546875; 0.500000;, + 0.546875; 0.296875;, + 0.718750; 0.500000;, + 0.718750; 0.296875;, + 0.656250; 0.296875;, + 0.656250; 0.500000;, + 0.609375; 0.250000;, + 0.609375; 0.296875;, + 0.546875; 0.296875;, + 0.546875; 0.250000;, + 0.609375; 0.296875;, + 0.656250; 0.296875;, + 0.656250; 0.500000;, + 0.609375; 0.500000;, + 0.937500; 0.531250;, + 0.562500; 0.531250;, + 0.562500; 0.500000;, + 0.937500; 0.500000;, + 0.562500; 0.531250;, + 0.937500; 0.531250;, + 0.937500; 0.500000;, + 0.562500; 0.500000;, + 0.937500; 0.750000;, + 0.937500; 0.781250;, + 0.562500; 0.781250;, + 0.562500; 0.750000;, + 0.000000; 0.375000;, + 0.000000; 0.125000;, + 0.078125; 0.125000;, + 0.078125; 0.375000;, + 0.421875; 0.125000;, + 0.500000; 0.125000;, + 0.500000; 0.375000;, + 0.421875; 0.375000;, + 0.937500; 0.781250;, + 0.562500; 0.781250;, + 0.562500; 0.750000;, + 0.937500; 0.750000;, + 0.062500; 0.078125;, + 0.062500; 0.000000;, + 0.437500; 0.000000;, + 0.437500; 0.078125;, + 0.859375; 0.296875;, + 0.812500; 0.296875;, + 0.812500; 0.500000;, + 0.859375; 0.500000;, + 0.859375; 0.250000;, + 0.859375; 0.296875;, + 0.921875; 0.296875;, + 0.921875; 0.250000;, + 0.750000; 0.500000;, + 0.750000; 0.296875;, + 0.812500; 0.296875;, + 0.812500; 0.500000;, + 0.859375; 0.296875;, + 0.859375; 0.500000;, + 0.921875; 0.500000;, + 0.921875; 0.296875;, + 0.968750; 0.500000;, + 0.968750; 0.296875;, + 0.921875; 0.296875;, + 0.921875; 0.500000;, + 0.609375; 0.140625;, + 0.609375; 0.234375;, + 0.515625; 0.234375;, + 0.515625; 0.140625;, + 0.609375; 0.234375;, + 0.515625; 0.234375;, + 0.515625; 0.140625;, + 0.609375; 0.140625;, + 0.609375; 0.234375;, + 0.515625; 0.234375;, + 0.515625; 0.140625;, + 0.609375; 0.140625;, + 0.984375; 0.234375;, + 0.890625; 0.234375;, + 0.890625; 0.140625;, + 0.984375; 0.140625;, + 0.515625; 0.140625;, + 0.609375; 0.140625;, + 0.609375; 0.234375;, + 0.515625; 0.234375;, + 0.062500; 0.421875;, + 0.062500; 0.500000;, + 0.437500; 0.500000;, + 0.437500; 0.421875;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 2; + } + SkinWeights { + "Armature_Thruster"; + 20; + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -4.000000, 0.000002, 0.000000, 0.000000, + -0.000002,-4.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 2.581575, 0.000000, + -0.000000,-4.639344,-6.900000, 1.000000;; + } //End of Armature_Thruster Skin Weights + SkinWeights { + "Armature_Body"; + 164; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000003,-0.000000, 4.000000, 0.000000, + 4.000000, 0.000000, 0.000003, 0.000000, + -0.000000, 2.581575, 0.000000, 0.000000, + 0.000000, 1.959941, 0.000000, 1.000000;; + } //End of Armature_Body Skin Weights + } //End of Mesh Mesh + } //End of Hovercraft + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 76; + 0;3; 0.000000, 0.000000, 3.500000;;, + 1;3; 0.000000, 0.000000, 3.500000;;, + 2;3; 0.000000, 0.000000, 3.500000;;, + 3;3; 0.000000, 0.000000, 3.500000;;, + 4;3; 0.000000, 0.000000, 3.500000;;, + 5;3; 0.000000, 0.000000, 3.500000;;, + 6;3; 0.000000, 0.000000, 3.500000;;, + 7;3; 0.000000, 0.000000, 3.500000;;, + 8;3; 0.000000, 0.000000, 3.500000;;, + 9;3; 0.000000, 0.000000, 3.500000;;, + 10;3; 0.000000, 0.000000, 3.500000;;, + 11;3; 0.000000, 0.000000, 3.500000;;, + 12;3; 0.000000, 0.000000, 3.500000;;, + 13;3; 0.000000, 0.000000, 3.500000;;, + 14;3; 0.000000, 0.000000, 3.500000;;, + 15;3; 0.000000, 0.000000, 3.500000;;, + 16;3; 0.000000, 0.000000, 3.500000;;, + 17;3; 0.000000, 0.000000, 3.500000;;, + 18;3; 0.000000, 0.000000, 3.500000;;, + 19;3; 0.000000, 0.000000, 3.500000;;, + 20;3; 0.000000, 0.000000, 3.500000;;, + 21;3; 0.000000, 0.000000, 3.500000;;, + 22;3; 0.000000, 0.000000, 3.500000;;, + 23;3; 0.000000, 0.000000, 3.500000;;, + 24;3; 0.000000, 0.000000, 3.500000;;, + 25;3; 0.000000, 0.000000, 3.500000;;, + 26;3; 0.000000, 0.000000, 3.500000;;, + 27;3; 0.000000, 0.000000, 3.500000;;, + 28;3; 0.000000, 0.000000, 3.500000;;, + 29;3; 0.000000, 0.000000, 3.500000;;, + 30;3; 0.000000, 0.000000, 3.500000;;, + 31;3; 0.000000, 0.000000, 3.500000;;, + 32;3; 0.000000, 0.000000, 3.500000;;, + 33;3; 0.000000, 0.000000, 3.500000;;, + 34;3; 0.000000, 0.000000, 3.500000;;, + 35;3; 0.000000, 0.000000, 3.500000;;, + 36;3; 0.000000, 0.000000, 3.500000;;, + 37;3; 0.000000, 0.000000, 3.500000;;, + 38;3; 0.000000, 0.000000, 3.500000;;, + 39;3; 0.000000, 0.000000, 3.500000;;, + 40;3; 0.000000, 0.000000, 3.500000;;, + 41;3; 0.000000, 0.000000, 3.500000;;, + 42;3; 0.000000, 0.000000, 3.500000;;, + 43;3; 0.000000, 0.000000, 3.500000;;, + 44;3; 0.000000, 0.000000, 3.500000;;, + 45;3; 0.000000, 0.000000, 3.500000;;, + 46;3; 0.000000, 0.000000, 3.500000;;, + 47;3; 0.000000, 0.000000, 3.500000;;, + 48;3; 0.000000, 0.000000, 3.500000;;, + 49;3; 0.000000, 0.000000, 3.500000;;, + 50;3; 0.000000, 0.000000, 3.500000;;, + 51;3; 0.000000, 0.000000, 3.500000;;, + 52;3; 0.000000, 0.000000, 3.500000;;, + 53;3; 0.000000, 0.000000, 3.500000;;, + 54;3; 0.000000, 0.000000, 3.500000;;, + 55;3; 0.000000, 0.000000, 3.500000;;, + 56;3; 0.000000, 0.000000, 3.500000;;, + 57;3; 0.000000, 0.000000, 3.500000;;, + 58;3; 0.000000, 0.000000, 3.500000;;, + 59;3; 0.000000, 0.000000, 3.500000;;, + 60;3; 0.000000, 0.000000, 3.500000;;, + 61;3; 0.000000, 0.000000, 3.500000;;, + 62;3; 0.000000, 0.000000, 3.500000;;, + 63;3; 0.000000, 0.000000, 3.500000;;, + 64;3; 0.000000, 0.000000, 3.500000;;, + 65;3; 0.000000, 0.000000, 3.500000;;, + 66;3; 0.000000, 0.000000, 3.500000;;, + 67;3; 0.000000, 0.000000, 3.500000;;, + 68;3; 0.000000, 0.000000, 3.500000;;, + 69;3; 0.000000, 0.000000, 3.500000;;, + 70;3; 0.000000, 0.000000, 3.500000;;, + 71;3; 0.000000, 0.000000, 3.500000;;, + 72;3; 0.000000, 0.000000, 3.500000;;, + 73;3; 0.000000, 0.000000, 3.500000;;, + 74;3; 0.000000, 0.000000, 3.500000;;, + 75;3; 0.000000, 0.000000, 3.500000;;; + } + AnimationKey { //Rotation + 0; + 76; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 76; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 76; + 0;3; -0.000000, 0.000000,-2.459941;;, + 1;3; -0.000000, 0.000000,-2.455327;;, + 2;3; -0.000000, 0.000000,-2.441401;;, + 3;3; -0.000000, 0.000000,-2.418439;;, + 4;3; -0.000000, 0.000000,-2.387453;;, + 5;3; -0.000000, 0.000000,-2.350351;;, + 6;3; -0.000000, 0.000000,-2.309918;;, + 7;3; -0.000000, 0.000000,-2.269489;;, + 8;3; -0.000000, 0.000000,-2.232396;;, + 9;3; -0.000000, 0.000000,-2.201421;;, + 10;3; -0.000000, 0.000000,-2.178471;;, + 11;3; -0.000000, 0.000000,-2.164552;;, + 12;3; -0.000000, 0.000000,-2.159941;;, + 13;3; -0.000000, 0.000000,-2.164208;;, + 14;3; -0.000000, 0.000000,-2.175990;;, + 15;3; -0.000000, 0.000000,-2.194004;;, + 16;3; -0.000000, 0.000000,-2.217200;;, + 17;3; -0.000000, 0.000000,-2.244668;;, + 18;3; -0.000000, 0.000000,-2.275574;;, + 19;3; -0.000000, 0.000000,-2.309081;;, + 20;3; -0.000000, 0.000000,-2.344266;;, + 21;3; -0.000000, 0.000000,-2.379952;;, + 22;3; -0.000000, 0.000000,-2.414374;;, + 23;3; -0.000000, 0.000000,-2.444181;;, + 24;3; -0.000000, 0.000000,-2.459941;;, + 25;3; -0.000000, 0.000000,-2.459941;;, + 26;3; -0.000000, 0.000000,-2.459941;;, + 27;3; -0.000000, 0.000000,-2.459941;;, + 28;3; -0.000000, 0.000000,-2.459941;;, + 29;3; -0.000000, 0.000000,-2.459941;;, + 30;3; -0.000000, 0.000000,-2.459941;;, + 31;3; -0.000000, 0.000000,-2.459941;;, + 32;3; -0.000000, 0.000000,-2.459941;;, + 33;3; -0.000000, 0.000000,-2.459941;;, + 34;3; -0.000000, 0.000000,-2.459941;;, + 35;3; -0.000000, 0.000000,-2.459941;;, + 36;3; -0.000000, 0.000000,-2.459941;;, + 37;3; -0.000000, 0.000000,-2.459941;;, + 38;3; -0.000000, 0.000000,-2.459941;;, + 39;3; -0.000000, 0.000000,-2.459941;;, + 40;3; -0.000000, 0.000000,-2.459941;;, + 41;3; -0.000000, 0.000000,-2.459941;;, + 42;3; -0.000000, 0.000000,-2.459941;;, + 43;3; -0.000000, 0.000000,-2.459941;;, + 44;3; -0.000000, 0.000000,-2.459941;;, + 45;3; -0.000000, 0.000000,-2.459941;;, + 46;3; -0.000000, 0.000000,-2.459941;;, + 47;3; -0.000000, 0.000000,-2.459941;;, + 48;3; -0.000000, 0.000000,-2.459941;;, + 49;3; -0.000000, 0.000000,-2.459941;;, + 50;3; -0.000000, 0.000000,-2.459941;;, + 51;3; -0.000000, 0.000000,-2.459941;;, + 52;3; -0.000000, 0.000000,-2.459941;;, + 53;3; -0.000000, 0.000000,-2.459941;;, + 54;3; -0.000000, 0.000000,-2.459941;;, + 55;3; -0.000000, 0.000000,-2.459941;;, + 56;3; -0.000000, 0.000000,-2.459941;;, + 57;3; -0.000000, 0.000000,-2.459941;;, + 58;3; -0.000000, 0.000000,-2.459941;;, + 59;3; -0.000000, 0.000000,-2.459941;;, + 60;3; -0.000000, 0.000000,-2.459941;;, + 61;3; -0.000000, 0.000000,-2.459941;;, + 62;3; -0.000000, 0.000000,-2.459941;;, + 63;3; -0.000000, 0.000000,-2.459941;;, + 64;3; -0.000000, 0.000000,-2.459941;;, + 65;3; -0.000000, 0.000000,-2.459941;;, + 66;3; -0.000000, 0.000000,-2.459941;;, + 67;3; -0.000000, 0.000000,-2.459941;;, + 68;3; -0.000000, 0.000000,-2.459941;;, + 69;3; -0.000000, 0.000000,-2.459941;;, + 70;3; -0.000000, 0.000000,-2.459941;;, + 71;3; -0.000000, 0.000000,-2.459941;;, + 72;3; -0.000000, 0.000000,-2.459941;;, + 73;3; -0.000000, 0.000000,-2.459941;;, + 74;3; -0.000000, 0.000000,-2.459941;;, + 75;3; -0.000000, 0.000000,-2.459941;;; + } + AnimationKey { //Rotation + 0; + 76; + 0;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 1;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 2;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 3;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 4;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 5;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 6;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 7;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 8;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 9;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 10;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 11;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 12;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 13;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 14;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 15;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 16;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 17;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 18;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 19;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 20;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 21;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 22;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 23;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 24;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 25;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 26;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 27;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 28;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 29;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 30;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 31;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 32;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 33;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 34;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 35;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 36;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 37;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 38;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 39;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 40;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 41;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 42;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 43;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 44;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 45;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 46;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 47;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 48;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 49;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 50;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 51;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 52;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 53;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 54;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 55;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 56;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 57;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 58;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 59;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 60;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 61;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 62;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 63;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 64;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 65;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 66;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 67;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 68;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 69;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 70;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 71;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 72;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 73;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 74;4; -0.707107, 0.707107, 0.000000,-0.000000;;, + 75;4; -0.707107, 0.707107, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 76; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Thruster} + AnimationKey { //Position + 2; + 76; + 0;3; -4.639344, 8.859941, 0.000000;;, + 1;3; -4.639344, 8.859941, 0.000000;;, + 2;3; -4.639344, 8.859941, 0.000000;;, + 3;3; -4.639344, 8.859941, 0.000000;;, + 4;3; -4.639344, 8.859941, 0.000000;;, + 5;3; -4.639344, 8.859941, 0.000000;;, + 6;3; -4.639344, 8.859941, 0.000000;;, + 7;3; -4.639344, 8.859941, 0.000000;;, + 8;3; -4.639344, 8.859941, 0.000000;;, + 9;3; -4.639344, 8.859941, 0.000000;;, + 10;3; -4.639344, 8.859941, 0.000000;;, + 11;3; -4.639344, 8.859941, 0.000000;;, + 12;3; -4.639344, 8.859941, 0.000000;;, + 13;3; -4.639344, 8.859941, 0.000000;;, + 14;3; -4.639344, 8.859941, 0.000000;;, + 15;3; -4.639344, 8.859941, 0.000000;;, + 16;3; -4.639344, 8.859941, 0.000000;;, + 17;3; -4.639344, 8.859941, 0.000000;;, + 18;3; -4.639344, 8.859941, 0.000000;;, + 19;3; -4.639344, 8.859941, 0.000000;;, + 20;3; -4.639344, 8.859941, 0.000000;;, + 21;3; -4.639344, 8.859941, 0.000000;;, + 22;3; -4.639344, 8.859941, 0.000000;;, + 23;3; -4.639344, 8.859941, 0.000000;;, + 24;3; -4.639344, 8.859941, 0.000000;;, + 25;3; -4.639344, 8.859941, 0.000000;;, + 26;3; -4.751536, 8.859941, 0.000000;;, + 27;3; -4.926180, 8.859941, 0.000000;;, + 28;3; -5.116801, 8.859941, 0.000000;;, + 29;3; -5.313328, 8.859941, 0.000000;;, + 30;3; -5.511499, 8.859941, 0.000000;;, + 31;3; -5.708984, 8.859941, 0.000000;;, + 32;3; -5.904290, 8.859941, 0.000000;;, + 33;3; -6.096343, 8.859941, 0.000000;;, + 34;3; -6.284297, 8.859941, 0.000000;;, + 35;3; -6.467437, 8.859941, 0.000000;;, + 36;3; -6.645113, 8.859941, 0.000000;;, + 37;3; -6.816706, 8.859941, 0.000000;;, + 38;3; -6.981606, 8.859941, 0.000000;;, + 39;3; -7.139187, 8.859941, 0.000000;;, + 40;3; -7.288791, 8.859941, 0.000000;;, + 41;3; -7.429712, 8.859941, 0.000000;;, + 42;3; -7.561180, 8.859941, 0.000000;;, + 43;3; -7.682340, 8.859941, 0.000000;;, + 44;3; -7.792232, 8.859941, 0.000000;;, + 45;3; -7.889764, 8.859941, 0.000000;;, + 46;3; -7.973680, 8.859941, 0.000000;;, + 47;3; -8.042510, 8.859941, 0.000000;;, + 48;3; -8.094524, 8.859941, 0.000000;;, + 49;3; -8.127645, 8.859941, 0.000000;;, + 50;3; -8.139342, 8.859941, 0.000000;;, + 51;3; -8.127024, 8.859941, 0.000000;;, + 52;3; -8.089846, 8.859941, 0.000000;;, + 53;3; -8.027658, 8.859941, 0.000000;;, + 54;3; -7.940606, 8.859941, 0.000000;;, + 55;3; -7.829194, 8.859941, 0.000000;;, + 56;3; -7.694356, 8.859941, 0.000000;;, + 57;3; -7.537523, 8.859941, 0.000000;;, + 58;3; -7.360665, 8.859941, 0.000000;;, + 59;3; -7.166321, 8.859941, 0.000000;;, + 60;3; -6.957588, 8.859941, 0.000000;;, + 61;3; -6.738070, 8.859941, 0.000000;;, + 62;3; -6.511783, 8.859941, 0.000000;;, + 63;3; -6.283020, 8.859941, 0.000000;;, + 64;3; -6.056183, 8.859941, 0.000000;;, + 65;3; -5.835609, 8.859941, 0.000000;;, + 66;3; -5.625397, 8.859941, 0.000000;;, + 67;3; -5.429261, 8.859941, 0.000000;;, + 68;3; -5.250427, 8.859941, 0.000000;;, + 69;3; -5.091565, 8.859941, 0.000000;;, + 70;3; -4.954775, 8.859941, 0.000000;;, + 71;3; -4.841600, 8.859941, 0.000000;;, + 72;3; -4.753072, 8.859941, 0.000000;;, + 73;3; -4.689772, 8.859941, 0.000000;;, + 74;3; -4.651900, 8.859941, 0.000000;;, + 75;3; -4.639344, 8.859941, 0.000000;;; + } + AnimationKey { //Rotation + 0; + 76; + 0;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 55;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 56;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 57;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 58;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 59;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 60;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 61;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 62;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 63;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 64;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 65;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 66;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 67;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 68;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 69;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 70;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 71;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 72;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 73;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 74;4; -0.500000,-0.500000, 0.500000, 0.500000;;, + 75;4; -0.500000,-0.500000, 0.500000, 0.500000;;; + } + AnimationKey { //Scale + 1; + 76; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Hovercraft} + AnimationKey { //Position + 2; + 76; + 0;3; 0.000000, 0.000000,-0.500000;;, + 1;3; 0.000000, 0.000000,-0.500000;;, + 2;3; 0.000000, 0.000000,-0.500000;;, + 3;3; 0.000000, 0.000000,-0.500000;;, + 4;3; 0.000000, 0.000000,-0.500000;;, + 5;3; 0.000000, 0.000000,-0.500000;;, + 6;3; 0.000000, 0.000000,-0.500000;;, + 7;3; 0.000000, 0.000000,-0.500000;;, + 8;3; 0.000000, 0.000000,-0.500000;;, + 9;3; 0.000000, 0.000000,-0.500000;;, + 10;3; 0.000000, 0.000000,-0.500000;;, + 11;3; 0.000000, 0.000000,-0.500000;;, + 12;3; 0.000000, 0.000000,-0.500000;;, + 13;3; 0.000000, 0.000000,-0.500000;;, + 14;3; 0.000000, 0.000000,-0.500000;;, + 15;3; 0.000000, 0.000000,-0.500000;;, + 16;3; 0.000000, 0.000000,-0.500000;;, + 17;3; 0.000000, 0.000000,-0.500000;;, + 18;3; 0.000000, 0.000000,-0.500000;;, + 19;3; 0.000000, 0.000000,-0.500000;;, + 20;3; 0.000000, 0.000000,-0.500000;;, + 21;3; 0.000000, 0.000000,-0.500000;;, + 22;3; 0.000000, 0.000000,-0.500000;;, + 23;3; 0.000000, 0.000000,-0.500000;;, + 24;3; 0.000000, 0.000000,-0.500000;;, + 25;3; 0.000000, 0.000000,-0.500000;;, + 26;3; 0.000000, 0.000000,-0.500000;;, + 27;3; 0.000000, 0.000000,-0.500000;;, + 28;3; 0.000000, 0.000000,-0.500000;;, + 29;3; 0.000000, 0.000000,-0.500000;;, + 30;3; 0.000000, 0.000000,-0.500000;;, + 31;3; 0.000000, 0.000000,-0.500000;;, + 32;3; 0.000000, 0.000000,-0.500000;;, + 33;3; 0.000000, 0.000000,-0.500000;;, + 34;3; 0.000000, 0.000000,-0.500000;;, + 35;3; 0.000000, 0.000000,-0.500000;;, + 36;3; 0.000000, 0.000000,-0.500000;;, + 37;3; 0.000000, 0.000000,-0.500000;;, + 38;3; 0.000000, 0.000000,-0.500000;;, + 39;3; 0.000000, 0.000000,-0.500000;;, + 40;3; 0.000000, 0.000000,-0.500000;;, + 41;3; 0.000000, 0.000000,-0.500000;;, + 42;3; 0.000000, 0.000000,-0.500000;;, + 43;3; 0.000000, 0.000000,-0.500000;;, + 44;3; 0.000000, 0.000000,-0.500000;;, + 45;3; 0.000000, 0.000000,-0.500000;;, + 46;3; 0.000000, 0.000000,-0.500000;;, + 47;3; 0.000000, 0.000000,-0.500000;;, + 48;3; 0.000000, 0.000000,-0.500000;;, + 49;3; 0.000000, 0.000000,-0.500000;;, + 50;3; 0.000000, 0.000000,-0.500000;;, + 51;3; 0.000000, 0.000000,-0.500000;;, + 52;3; 0.000000, 0.000000,-0.500000;;, + 53;3; 0.000000, 0.000000,-0.500000;;, + 54;3; 0.000000, 0.000000,-0.500000;;, + 55;3; 0.000000, 0.000000,-0.500000;;, + 56;3; 0.000000, 0.000000,-0.500000;;, + 57;3; 0.000000, 0.000000,-0.500000;;, + 58;3; 0.000000, 0.000000,-0.500000;;, + 59;3; 0.000000, 0.000000,-0.500000;;, + 60;3; 0.000000, 0.000000,-0.500000;;, + 61;3; 0.000000, 0.000000,-0.500000;;, + 62;3; 0.000000, 0.000000,-0.500000;;, + 63;3; 0.000000, 0.000000,-0.500000;;, + 64;3; 0.000000, 0.000000,-0.500000;;, + 65;3; 0.000000, 0.000000,-0.500000;;, + 66;3; 0.000000, 0.000000,-0.500000;;, + 67;3; 0.000000, 0.000000,-0.500000;;, + 68;3; 0.000000, 0.000000,-0.500000;;, + 69;3; 0.000000, 0.000000,-0.500000;;, + 70;3; 0.000000, 0.000000,-0.500000;;, + 71;3; 0.000000, 0.000000,-0.500000;;, + 72;3; 0.000000, 0.000000,-0.500000;;, + 73;3; 0.000000, 0.000000,-0.500000;;, + 74;3; 0.000000, 0.000000,-0.500000;;, + 75;3; 0.000000, 0.000000,-0.500000;;; + } + AnimationKey { //Rotation + 0; + 76; + 0;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 1;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 2;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 3;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 4;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 5;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 6;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 7;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 8;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 9;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 10;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 11;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 12;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 13;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 14;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 15;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 16;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 17;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 18;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 19;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 20;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 21;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 22;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 23;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 24;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 25;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 26;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 27;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 28;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 29;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 30;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 31;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 32;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 33;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 34;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 35;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 36;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 37;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 38;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 39;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 40;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 41;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 42;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 43;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 44;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 45;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 46;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 47;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 48;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 49;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 50;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 51;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 52;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 53;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 54;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 55;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 56;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 57;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 58;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 59;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 60;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 61;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 62;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 63;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 64;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 65;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 66;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 67;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 68;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 69;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 70;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 71;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 72;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 73;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 74;4; -0.707107, 0.000000, 0.000000,-0.707107;;, + 75;4; -0.707107, 0.000000, 0.000000,-0.707107;;; + } + AnimationKey { //Scale + 1; + 76; + 0;3; 4.000000, 4.000000, 2.581575;;, + 1;3; 4.000000, 4.000000, 2.581575;;, + 2;3; 4.000000, 4.000000, 2.581575;;, + 3;3; 4.000000, 4.000000, 2.581575;;, + 4;3; 4.000000, 4.000000, 2.581575;;, + 5;3; 4.000000, 4.000000, 2.581575;;, + 6;3; 4.000000, 4.000000, 2.581575;;, + 7;3; 4.000000, 4.000000, 2.581575;;, + 8;3; 4.000000, 4.000000, 2.581575;;, + 9;3; 4.000000, 4.000000, 2.581575;;, + 10;3; 4.000000, 4.000000, 2.581575;;, + 11;3; 4.000000, 4.000000, 2.581575;;, + 12;3; 4.000000, 4.000000, 2.581575;;, + 13;3; 4.000000, 4.000000, 2.581575;;, + 14;3; 4.000000, 4.000000, 2.581575;;, + 15;3; 4.000000, 4.000000, 2.581575;;, + 16;3; 4.000000, 4.000000, 2.581575;;, + 17;3; 4.000000, 4.000000, 2.581575;;, + 18;3; 4.000000, 4.000000, 2.581575;;, + 19;3; 4.000000, 4.000000, 2.581575;;, + 20;3; 4.000000, 4.000000, 2.581575;;, + 21;3; 4.000000, 4.000000, 2.581575;;, + 22;3; 4.000000, 4.000000, 2.581575;;, + 23;3; 4.000000, 4.000000, 2.581575;;, + 24;3; 4.000000, 4.000000, 2.581575;;, + 25;3; 4.000000, 4.000000, 2.581575;;, + 26;3; 4.000000, 4.000000, 2.581575;;, + 27;3; 4.000000, 4.000000, 2.581575;;, + 28;3; 4.000000, 4.000000, 2.581575;;, + 29;3; 4.000000, 4.000000, 2.581575;;, + 30;3; 4.000000, 4.000000, 2.581575;;, + 31;3; 4.000000, 4.000000, 2.581575;;, + 32;3; 4.000000, 4.000000, 2.581575;;, + 33;3; 4.000000, 4.000000, 2.581575;;, + 34;3; 4.000000, 4.000000, 2.581575;;, + 35;3; 4.000000, 4.000000, 2.581575;;, + 36;3; 4.000000, 4.000000, 2.581575;;, + 37;3; 4.000000, 4.000000, 2.581575;;, + 38;3; 4.000000, 4.000000, 2.581575;;, + 39;3; 4.000000, 4.000000, 2.581575;;, + 40;3; 4.000000, 4.000000, 2.581575;;, + 41;3; 4.000000, 4.000000, 2.581575;;, + 42;3; 4.000000, 4.000000, 2.581575;;, + 43;3; 4.000000, 4.000000, 2.581575;;, + 44;3; 4.000000, 4.000000, 2.581575;;, + 45;3; 4.000000, 4.000000, 2.581575;;, + 46;3; 4.000000, 4.000000, 2.581575;;, + 47;3; 4.000000, 4.000000, 2.581575;;, + 48;3; 4.000000, 4.000000, 2.581575;;, + 49;3; 4.000000, 4.000000, 2.581575;;, + 50;3; 4.000000, 4.000000, 2.581575;;, + 51;3; 4.000000, 4.000000, 2.581575;;, + 52;3; 4.000000, 4.000000, 2.581575;;, + 53;3; 4.000000, 4.000000, 2.581575;;, + 54;3; 4.000000, 4.000000, 2.581575;;, + 55;3; 4.000000, 4.000000, 2.581575;;, + 56;3; 4.000000, 4.000000, 2.581575;;, + 57;3; 4.000000, 4.000000, 2.581575;;, + 58;3; 4.000000, 4.000000, 2.581575;;, + 59;3; 4.000000, 4.000000, 2.581575;;, + 60;3; 4.000000, 4.000000, 2.581575;;, + 61;3; 4.000000, 4.000000, 2.581575;;, + 62;3; 4.000000, 4.000000, 2.581575;;, + 63;3; 4.000000, 4.000000, 2.581575;;, + 64;3; 4.000000, 4.000000, 2.581575;;, + 65;3; 4.000000, 4.000000, 2.581575;;, + 66;3; 4.000000, 4.000000, 2.581575;;, + 67;3; 4.000000, 4.000000, 2.581575;;, + 68;3; 4.000000, 4.000000, 2.581575;;, + 69;3; 4.000000, 4.000000, 2.581575;;, + 70;3; 4.000000, 4.000000, 2.581575;;, + 71;3; 4.000000, 4.000000, 2.581575;;, + 72;3; 4.000000, 4.000000, 2.581575;;, + 73;3; 4.000000, 4.000000, 2.581575;;, + 74;3; 4.000000, 4.000000, 2.581575;;, + 75;3; 4.000000, 4.000000, 2.581575;;; + } + } +} //End of AnimationSet diff --git a/sounds/hovercraft_bounce.ogg b/sounds/hovercraft_bounce.ogg new file mode 100644 index 0000000..ec63515 Binary files /dev/null and b/sounds/hovercraft_bounce.ogg differ diff --git a/sounds/hovercraft_jump.ogg b/sounds/hovercraft_jump.ogg new file mode 100644 index 0000000..851c42a Binary files /dev/null and b/sounds/hovercraft_jump.ogg differ diff --git a/sounds/hovercraft_thrust_fade.ogg b/sounds/hovercraft_thrust_fade.ogg new file mode 100644 index 0000000..f60dd23 Binary files /dev/null and b/sounds/hovercraft_thrust_fade.ogg differ diff --git a/sounds/hovercraft_thrust_loop.ogg b/sounds/hovercraft_thrust_loop.ogg new file mode 100644 index 0000000..f99ad99 Binary files /dev/null and b/sounds/hovercraft_thrust_loop.ogg differ diff --git a/textures/hovercraft_blue.png b/textures/hovercraft_blue.png new file mode 100644 index 0000000..76d7ade Binary files /dev/null and b/textures/hovercraft_blue.png differ diff --git a/textures/hovercraft_blue_inv.png b/textures/hovercraft_blue_inv.png new file mode 100644 index 0000000..2236182 Binary files /dev/null and b/textures/hovercraft_blue_inv.png differ diff --git a/textures/hovercraft_red.png b/textures/hovercraft_red.png new file mode 100644 index 0000000..b3d8bec Binary files /dev/null and b/textures/hovercraft_red.png differ diff --git a/textures/hovercraft_red_inv.png b/textures/hovercraft_red_inv.png new file mode 100644 index 0000000..841800f Binary files /dev/null and b/textures/hovercraft_red_inv.png differ