mirror of
https://github.com/stujones11/wield3d.git
synced 2024-11-19 22:13:46 +01:00
Rework entity attachment and character model
This commit is contained in:
parent
d2e49ec072
commit
9cf2cb9164
155
init.lua
155
init.lua
@ -1,61 +1,15 @@
|
||||
dofile(minetest.get_modpath(minetest.get_current_modname()).."/location.lua")
|
||||
|
||||
local update_time = 2 -- number of seconds between wielditem updates
|
||||
local bone = "Armature_Wield_Item"
|
||||
local location = {
|
||||
"Armature_Arm_Right", -- default bone
|
||||
{x=0.2, y=5.5, z=3}, -- default position
|
||||
{x=-100, y=225, z=90}, -- default rotation
|
||||
}
|
||||
local player_wielding = {}
|
||||
local timer = 0
|
||||
|
||||
dofile(minetest.get_modpath(minetest.get_current_modname()).."/rotation.lua")
|
||||
|
||||
minetest.register_item("wield3d:hand", {
|
||||
type = "none",
|
||||
wield_image = "wield3d_trans.png",
|
||||
})
|
||||
|
||||
minetest.register_entity("wield3d:wield_entity", {
|
||||
initial_properties = {
|
||||
physical = false,
|
||||
collisionbox = {x=0, y=0, z=0},
|
||||
visual = "wielditem",
|
||||
visual_size = {x=0.25, y=0.25},
|
||||
},
|
||||
wield_item = nil,
|
||||
player = nil,
|
||||
timer = 0,
|
||||
rotation = 0,
|
||||
on_step = function(self, dtime)
|
||||
local player = self.player
|
||||
if player == nil then
|
||||
self.object:remove()
|
||||
return
|
||||
end
|
||||
self.timer = self.timer + dtime
|
||||
if self.timer < update_time then
|
||||
return
|
||||
end
|
||||
self.timer = 0
|
||||
if minetest.env:get_player_by_name(player:get_player_name()) == nil then
|
||||
self.object:remove()
|
||||
return
|
||||
end
|
||||
local stack = player:get_wielded_item()
|
||||
local item = stack:get_name()
|
||||
if item == self.wield_item then
|
||||
return
|
||||
end
|
||||
self.wield_item = item
|
||||
if item == "" then
|
||||
item = "wield3d:hand"
|
||||
end
|
||||
local rotation = wield3d_rotation[item] or 0
|
||||
if rotation ~= self.rotation then
|
||||
self.object:setpos(player:getpos())
|
||||
self.object:set_detach()
|
||||
self.object:set_attach(player, bone, {x=0, y=0, z=0}, {x=0, y=0, z=rotation})
|
||||
self.rotation = rotation
|
||||
end
|
||||
self.object:set_properties({textures={item}})
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_on_joinplayer(function(player)
|
||||
minetest.after(1, function(player)
|
||||
local function add_wield_entity(player)
|
||||
player:set_properties({
|
||||
visual = "mesh",
|
||||
mesh = "wield3d_character.x",
|
||||
@ -63,15 +17,90 @@ minetest.register_on_joinplayer(function(player)
|
||||
})
|
||||
local pos = player:getpos()
|
||||
if pos then
|
||||
local entity = minetest.env:add_entity(pos, "wield3d:wield_entity")
|
||||
if entity then
|
||||
entity:set_attach(player, bone, {x=0, y=0, z=0}, {x=0, y=0, z=0})
|
||||
entity = entity:get_luaentity()
|
||||
entity.player = player
|
||||
local object = minetest.add_entity(pos, "wield3d:wield_entity")
|
||||
if object then
|
||||
object:set_attach(player, location[1], location[2], location[3])
|
||||
local luaentity = object:get_luaentity()
|
||||
if luaentity then
|
||||
luaentity.player = player
|
||||
return 1
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_item("wield3d:hand", {
|
||||
type = "none",
|
||||
wield_image = "wield3d_trans.png",
|
||||
})
|
||||
|
||||
minetest.register_entity("wield3d:wield_entity", {
|
||||
physical = false,
|
||||
collisionbox = {x=0, y=0, z=0},
|
||||
visual = "wielditem",
|
||||
visual_size = {x=0.25, y=0.25},
|
||||
textures = {"wield3d:hand"},
|
||||
player = nil,
|
||||
item = nil,
|
||||
timer = 0,
|
||||
location = location,
|
||||
on_step = function(self, dtime)
|
||||
self.timer = self.timer + dtime
|
||||
if self.timer > update_time then
|
||||
return
|
||||
end
|
||||
self.timer = 0
|
||||
local player = self.player
|
||||
if player then
|
||||
local pos = player:getpos()
|
||||
if pos then
|
||||
local stack = player:get_wielded_item()
|
||||
local item = stack:get_name()
|
||||
if item == self.item then
|
||||
return
|
||||
end
|
||||
self.item = item
|
||||
if item == "" then
|
||||
item = "wield3d:hand"
|
||||
end
|
||||
local loc = wield3d_location[item] or location
|
||||
if vector.equals(loc[1], self.location[1]) == false
|
||||
or vector.equals(loc[2], self.location[2]) == false
|
||||
or vector.equals(loc[3], self.location[3]) == false then
|
||||
self.object:setpos(pos)
|
||||
self.object:set_detach()
|
||||
self.object:set_attach(player, loc[1], loc[2], loc[3])
|
||||
self.location = loc
|
||||
end
|
||||
self.object:set_properties({textures={item}})
|
||||
return
|
||||
end
|
||||
end
|
||||
minetest.log("error", "wield3d failed to attach wielditem")
|
||||
end, player)
|
||||
self.object:remove()
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_globalstep(function(dtime)
|
||||
timer = timer + dtime
|
||||
if timer > update_time then
|
||||
for _,player in ipairs(minetest.get_connected_players()) do
|
||||
local name = player:get_player_name()
|
||||
if name then
|
||||
if not player_wielding[name] then
|
||||
if add_wield_entity(player) then
|
||||
player_wielding[name] = 1
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
timer = 0
|
||||
end
|
||||
end)
|
||||
|
||||
minetest.register_on_leaveplayer(function(player)
|
||||
local name = player:get_player_name()
|
||||
if name then
|
||||
player_wielding[name] = nil
|
||||
end
|
||||
end)
|
||||
|
||||
|
32
location.lua
Normal file
32
location.lua
Normal file
@ -0,0 +1,32 @@
|
||||
-- Wielded Item Location Overrides - [item_name] = {bone, position, rotation}
|
||||
|
||||
local bone = "Armature_Arm_Right"
|
||||
|
||||
wield3d_location = {
|
||||
["default:torch"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["default:sapling"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["flowers:dandelion_white"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["flowers:dandelion_yellow"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["flowers:geranium"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["flowers:rose"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["flowers:tulip"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["flowers:viola"] = {bone, {x=0.2, y=5.5, z=3}, {x=-100, y=182, z=83}},
|
||||
["default:shovel_wood"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["default:shovel_stone"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["default:shovel_steel"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["default:shovel_bronze"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["default:shovel_mese"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["default:shovel_diamond"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["bucket:bucket_empty"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["bucket:bucket_water"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["bucket:bucket_lava"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["screwdriver:screwdriver"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["screwdriver:screwdriver1"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["screwdriver:screwdriver2"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["screwdriver:screwdriver3"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["screwdriver:screwdriver4"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["vessels:glass_bottle"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["vessels:drinking_glass"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
["vessels:steel_bottle"] = {bone, {x=0, y=5.5, z=3}, {x=-90, y=137, z=83}},
|
||||
}
|
||||
|
@ -52,14 +52,6 @@ Frame Root {
|
||||
-0.027164, 0.003951,-0.999623, 0.000000,
|
||||
-2.000000, 6.750000,-0.000000, 1.000000;;
|
||||
}
|
||||
Frame Armature_Wield_Item {
|
||||
FrameTransformMatrix {
|
||||
-0.083563,-0.706832, 0.702428, 0.000000,
|
||||
0.120308, 0.692582, 0.711236, 0.000000,
|
||||
-0.989213, 0.143940, 0.027163, 0.000000,
|
||||
0.001191, 6.349710, 2.794358, 1.000000;;
|
||||
}
|
||||
} //End of Armature_Wield_Item
|
||||
} //End of Armature_Arm_Right
|
||||
Frame Armature_Arm_Left {
|
||||
FrameTransformMatrix {
|
||||
@ -748,118 +740,6 @@ Frame Root {
|
||||
3;
|
||||
6;
|
||||
}
|
||||
SkinWeights {
|
||||
"Armature_Arm_Left";
|
||||
24;
|
||||
72,
|
||||
73,
|
||||
74,
|
||||
75,
|
||||
76,
|
||||
77,
|
||||
78,
|
||||
79,
|
||||
112,
|
||||
113,
|
||||
114,
|
||||
115,
|
||||
120,
|
||||
121,
|
||||
122,
|
||||
123,
|
||||
128,
|
||||
129,
|
||||
130,
|
||||
131,
|
||||
136,
|
||||
137,
|
||||
138,
|
||||
139;
|
||||
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.989214, 0.143940, 0.027164, 0.000000,
|
||||
-0.027450,-0.000000, 0.999623, 0.000000,
|
||||
0.143886,-0.989587, 0.003951, 0.000000,
|
||||
-3.920884,13.071540,-0.107668, 1.000000;;
|
||||
} //End of Armature_Arm_Left Skin Weights
|
||||
SkinWeights {
|
||||
"Armature_Leg_Left";
|
||||
24;
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
64,
|
||||
65,
|
||||
66,
|
||||
67,
|
||||
80,
|
||||
81,
|
||||
82,
|
||||
83,
|
||||
88,
|
||||
89,
|
||||
90,
|
||||
91,
|
||||
124,
|
||||
125,
|
||||
126,
|
||||
127,
|
||||
140,
|
||||
141,
|
||||
142,
|
||||
143;
|
||||
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.000000,-0.000000, 0.000000,
|
||||
0.000000, 0.000000, 1.000000, 0.000000,
|
||||
-0.000000,-1.000000, 0.000000, 0.000000,
|
||||
-1.000000, 6.750000,-0.000001, 1.000000;;
|
||||
} //End of Armature_Leg_Left Skin Weights
|
||||
SkinWeights {
|
||||
"Armature_Leg_Right";
|
||||
24;
|
||||
@ -1132,6 +1012,118 @@ Frame Root {
|
||||
-0.143886,-0.989587, 0.003951, 0.000000,
|
||||
3.920884,13.071540,-0.107668, 1.000000;;
|
||||
} //End of Armature_Arm_Right Skin Weights
|
||||
SkinWeights {
|
||||
"Armature_Arm_Left";
|
||||
24;
|
||||
72,
|
||||
73,
|
||||
74,
|
||||
75,
|
||||
76,
|
||||
77,
|
||||
78,
|
||||
79,
|
||||
112,
|
||||
113,
|
||||
114,
|
||||
115,
|
||||
120,
|
||||
121,
|
||||
122,
|
||||
123,
|
||||
128,
|
||||
129,
|
||||
130,
|
||||
131,
|
||||
136,
|
||||
137,
|
||||
138,
|
||||
139;
|
||||
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.989214, 0.143940, 0.027164, 0.000000,
|
||||
-0.027450,-0.000000, 0.999623, 0.000000,
|
||||
0.143886,-0.989587, 0.003951, 0.000000,
|
||||
-3.920884,13.071540,-0.107668, 1.000000;;
|
||||
} //End of Armature_Arm_Left Skin Weights
|
||||
SkinWeights {
|
||||
"Armature_Leg_Left";
|
||||
24;
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
64,
|
||||
65,
|
||||
66,
|
||||
67,
|
||||
80,
|
||||
81,
|
||||
82,
|
||||
83,
|
||||
88,
|
||||
89,
|
||||
90,
|
||||
91,
|
||||
124,
|
||||
125,
|
||||
126,
|
||||
127,
|
||||
140,
|
||||
141,
|
||||
142,
|
||||
143;
|
||||
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.000000,-0.000000, 0.000000,
|
||||
0.000000, 0.000000, 1.000000, 0.000000,
|
||||
-0.000000,-1.000000, 0.000000, 0.000000,
|
||||
-1.000000, 6.750000,-0.000001, 1.000000;;
|
||||
} //End of Armature_Leg_Left Skin Weights
|
||||
} //End of Mesh Mesh
|
||||
} //End of Player
|
||||
} //End of Armature
|
||||
@ -3849,684 +3841,6 @@ AnimationSet {
|
||||
220;3; 1.000000, 1.000000, 1.000000;;;
|
||||
}
|
||||
}
|
||||
Animation {
|
||||
{Armature_Wield_Item}
|
||||
AnimationKey { //Position
|
||||
2;
|
||||
221;
|
||||
0;3; 0.001191, 6.349710, 2.794358;;,
|
||||
1;3; 0.001191, 6.349710, 2.794357;;,
|
||||
2;3; 0.001191, 6.349710, 2.794357;;,
|
||||
3;3; 0.001191, 6.349711, 2.794357;;,
|
||||
4;3; 0.001191, 6.349709, 2.794357;;,
|
||||
5;3; 0.001191, 6.349709, 2.794357;;,
|
||||
6;3; 0.001191, 6.349709, 2.794357;;,
|
||||
7;3; 0.001191, 6.349710, 2.794357;;,
|
||||
8;3; 0.001191, 6.349709, 2.794357;;,
|
||||
9;3; 0.001191, 6.349710, 2.794357;;,
|
||||
10;3; 0.001191, 6.349710, 2.794357;;,
|
||||
11;3; 0.001191, 6.349710, 2.794358;;,
|
||||
12;3; 0.001191, 6.349710, 2.794357;;,
|
||||
13;3; 0.001191, 6.349710, 2.794357;;,
|
||||
14;3; 0.001191, 6.349710, 2.794357;;,
|
||||
15;3; 0.001191, 6.349709, 2.794357;;,
|
||||
16;3; 0.001191, 6.349710, 2.794358;;,
|
||||
17;3; 0.001191, 6.349710, 2.794357;;,
|
||||
18;3; 0.001191, 6.349710, 2.794357;;,
|
||||
19;3; 0.001191, 6.349710, 2.794357;;,
|
||||
20;3; 0.001191, 6.349710, 2.794357;;,
|
||||
21;3; 0.001191, 6.349710, 2.794357;;,
|
||||
22;3; 0.001191, 6.349710, 2.794357;;,
|
||||
23;3; 0.001191, 6.349710, 2.794357;;,
|
||||
24;3; 0.001191, 6.349710, 2.794358;;,
|
||||
25;3; 0.001191, 6.349709, 2.794357;;,
|
||||
26;3; 0.001191, 6.349710, 2.794358;;,
|
||||
27;3; 0.001191, 6.349710, 2.794357;;,
|
||||
28;3; 0.001191, 6.349710, 2.794357;;,
|
||||
29;3; 0.001191, 6.349709, 2.794358;;,
|
||||
30;3; 0.001191, 6.349710, 2.794357;;,
|
||||
31;3; 0.001191, 6.349710, 2.794357;;,
|
||||
32;3; 0.001191, 6.349709, 2.794357;;,
|
||||
33;3; 0.001191, 6.349710, 2.794357;;,
|
||||
34;3; 0.001191, 6.349708, 2.794358;;,
|
||||
35;3; 0.001191, 6.349709, 2.794357;;,
|
||||
36;3; 0.001191, 6.349709, 2.794357;;,
|
||||
37;3; 0.001191, 6.349711, 2.794357;;,
|
||||
38;3; 0.001191, 6.349710, 2.794357;;,
|
||||
39;3; 0.001191, 6.349710, 2.794357;;,
|
||||
40;3; 0.001191, 6.349710, 2.794358;;,
|
||||
41;3; 0.001191, 6.349710, 2.794357;;,
|
||||
42;3; 0.001191, 6.349710, 2.794357;;,
|
||||
43;3; 0.001191, 6.349711, 2.794357;;,
|
||||
44;3; 0.001191, 6.349709, 2.794357;;,
|
||||
45;3; 0.001191, 6.349709, 2.794357;;,
|
||||
46;3; 0.001191, 6.349708, 2.794357;;,
|
||||
47;3; 0.001191, 6.349710, 2.794357;;,
|
||||
48;3; 0.001191, 6.349709, 2.794357;;,
|
||||
49;3; 0.001191, 6.349710, 2.794357;;,
|
||||
50;3; 0.001191, 6.349710, 2.794357;;,
|
||||
51;3; 0.001191, 6.349709, 2.794357;;,
|
||||
52;3; 0.001191, 6.349710, 2.794358;;,
|
||||
53;3; 0.001191, 6.349710, 2.794357;;,
|
||||
54;3; 0.001191, 6.349710, 2.794357;;,
|
||||
55;3; 0.001191, 6.349709, 2.794357;;,
|
||||
56;3; 0.001191, 6.349710, 2.794358;;,
|
||||
57;3; 0.001191, 6.349710, 2.794357;;,
|
||||
58;3; 0.001191, 6.349710, 2.794357;;,
|
||||
59;3; 0.001191, 6.349710, 2.794357;;,
|
||||
60;3; 0.001191, 6.349710, 2.794357;;,
|
||||
61;3; 0.001191, 6.349710, 2.794357;;,
|
||||
62;3; 0.001191, 6.349710, 2.794357;;,
|
||||
63;3; 0.001191, 6.349709, 2.794358;;,
|
||||
64;3; 0.001191, 6.349709, 2.794357;;,
|
||||
65;3; 0.001191, 6.349710, 2.794357;;,
|
||||
66;3; 0.001191, 6.349710, 2.794357;;,
|
||||
67;3; 0.001191, 6.349710, 2.794357;;,
|
||||
68;3; 0.001191, 6.349709, 2.794357;;,
|
||||
69;3; 0.001191, 6.349710, 2.794357;;,
|
||||
70;3; 0.001191, 6.349709, 2.794357;;,
|
||||
71;3; 0.001191, 6.349710, 2.794357;;,
|
||||
72;3; 0.001191, 6.349710, 2.794357;;,
|
||||
73;3; 0.001191, 6.349709, 2.794357;;,
|
||||
74;3; 0.001191, 6.349710, 2.794357;;,
|
||||
75;3; 0.001191, 6.349710, 2.794357;;,
|
||||
76;3; 0.001191, 6.349709, 2.794357;;,
|
||||
77;3; 0.001191, 6.349710, 2.794357;;,
|
||||
78;3; 0.001191, 6.349710, 2.794357;;,
|
||||
79;3; 0.001191, 6.349710, 2.794357;;,
|
||||
80;3; 0.001191, 6.349710, 2.794358;;,
|
||||
81;3; 0.001191, 6.349710, 2.794358;;,
|
||||
82;3; 0.001191, 6.349710, 2.794357;;,
|
||||
83;3; 0.001191, 6.349709, 2.794357;;,
|
||||
84;3; 0.001191, 6.349710, 2.794357;;,
|
||||
85;3; 0.001190, 6.349709, 2.794357;;,
|
||||
86;3; 0.001191, 6.349710, 2.794357;;,
|
||||
87;3; 0.001191, 6.349710, 2.794357;;,
|
||||
88;3; 0.001191, 6.349710, 2.794357;;,
|
||||
89;3; 0.001191, 6.349710, 2.794357;;,
|
||||
90;3; 0.001191, 6.349710, 2.794357;;,
|
||||
91;3; 0.001191, 6.349710, 2.794357;;,
|
||||
92;3; 0.001191, 6.349710, 2.794357;;,
|
||||
93;3; 0.001191, 6.349709, 2.794357;;,
|
||||
94;3; 0.001191, 6.349710, 2.794357;;,
|
||||
95;3; 0.001191, 6.349710, 2.794357;;,
|
||||
96;3; 0.001191, 6.349709, 2.794357;;,
|
||||
97;3; 0.001191, 6.349710, 2.794357;;,
|
||||
98;3; 0.001191, 6.349710, 2.794358;;,
|
||||
99;3; 0.001191, 6.349710, 2.794357;;,
|
||||
100;3; 0.001191, 6.349710, 2.794357;;,
|
||||
101;3; 0.001191, 6.349710, 2.794357;;,
|
||||
102;3; 0.001191, 6.349710, 2.794357;;,
|
||||
103;3; 0.001191, 6.349710, 2.794357;;,
|
||||
104;3; 0.001191, 6.349710, 2.794357;;,
|
||||
105;3; 0.001191, 6.349710, 2.794358;;,
|
||||
106;3; 0.001191, 6.349709, 2.794357;;,
|
||||
107;3; 0.001191, 6.349710, 2.794358;;,
|
||||
108;3; 0.001191, 6.349709, 2.794357;;,
|
||||
109;3; 0.001191, 6.349710, 2.794357;;,
|
||||
110;3; 0.001191, 6.349710, 2.794358;;,
|
||||
111;3; 0.001191, 6.349710, 2.794357;;,
|
||||
112;3; 0.001191, 6.349709, 2.794357;;,
|
||||
113;3; 0.001191, 6.349709, 2.794357;;,
|
||||
114;3; 0.001191, 6.349710, 2.794357;;,
|
||||
115;3; 0.001191, 6.349710, 2.794357;;,
|
||||
116;3; 0.001191, 6.349710, 2.794357;;,
|
||||
117;3; 0.001191, 6.349710, 2.794357;;,
|
||||
118;3; 0.001191, 6.349710, 2.794357;;,
|
||||
119;3; 0.001191, 6.349710, 2.794357;;,
|
||||
120;3; 0.001191, 6.349710, 2.794357;;,
|
||||
121;3; 0.001191, 6.349710, 2.794358;;,
|
||||
122;3; 0.001191, 6.349710, 2.794357;;,
|
||||
123;3; 0.001191, 6.349710, 2.794357;;,
|
||||
124;3; 0.001191, 6.349710, 2.794357;;,
|
||||
125;3; 0.001191, 6.349710, 2.794357;;,
|
||||
126;3; 0.001191, 6.349710, 2.794357;;,
|
||||
127;3; 0.001191, 6.349710, 2.794357;;,
|
||||
128;3; 0.001191, 6.349710, 2.794357;;,
|
||||
129;3; 0.001191, 6.349709, 2.794357;;,
|
||||
130;3; 0.001191, 6.349709, 2.794357;;,
|
||||
131;3; 0.001191, 6.349710, 2.794357;;,
|
||||
132;3; 0.001191, 6.349710, 2.794357;;,
|
||||
133;3; 0.001191, 6.349710, 2.794357;;,
|
||||
134;3; 0.001191, 6.349709, 2.794357;;,
|
||||
135;3; 0.001191, 6.349710, 2.794358;;,
|
||||
136;3; 0.001191, 6.349709, 2.794357;;,
|
||||
137;3; 0.001191, 6.349710, 2.794358;;,
|
||||
138;3; 0.001191, 6.349710, 2.794357;;,
|
||||
139;3; 0.001191, 6.349710, 2.794357;;,
|
||||
140;3; 0.001191, 6.349710, 2.794357;;,
|
||||
141;3; 0.001191, 6.349710, 2.794357;;,
|
||||
142;3; 0.001191, 6.349710, 2.794357;;,
|
||||
143;3; 0.001191, 6.349710, 2.794358;;,
|
||||
144;3; 0.001191, 6.349710, 2.794357;;,
|
||||
145;3; 0.001191, 6.349710, 2.794357;;,
|
||||
146;3; 0.001191, 6.349710, 2.794357;;,
|
||||
147;3; 0.001191, 6.349710, 2.794357;;,
|
||||
148;3; 0.001191, 6.349709, 2.794357;;,
|
||||
149;3; 0.001191, 6.349710, 2.794357;;,
|
||||
150;3; 0.001191, 6.349710, 2.794357;;,
|
||||
151;3; 0.001191, 6.349709, 2.794357;;,
|
||||
152;3; 0.001190, 6.349710, 2.794358;;,
|
||||
153;3; 0.001191, 6.349710, 2.794357;;,
|
||||
154;3; 0.001191, 6.349710, 2.794357;;,
|
||||
155;3; 0.001191, 6.349710, 2.794358;;,
|
||||
156;3; 0.001191, 6.349710, 2.794357;;,
|
||||
157;3; 0.001191, 6.349710, 2.794357;;,
|
||||
158;3; 0.001191, 6.349710, 2.794357;;,
|
||||
159;3; 0.001191, 6.349710, 2.794357;;,
|
||||
160;3; 0.001191, 6.349710, 2.794357;;,
|
||||
161;3; 0.001191, 6.349710, 2.794358;;,
|
||||
162;3; 0.001191, 6.349709, 2.794357;;,
|
||||
163;3; 0.001191, 6.349709, 2.794357;;,
|
||||
164;3; 0.001191, 6.349709, 2.794357;;,
|
||||
165;3; 0.001191, 6.349709, 2.794357;;,
|
||||
166;3; 0.001191, 6.349709, 2.794357;;,
|
||||
167;3; 0.001191, 6.349709, 2.794357;;,
|
||||
168;3; 0.001191, 6.349710, 2.794358;;,
|
||||
169;3; 0.001191, 6.349709, 2.794357;;,
|
||||
170;3; 0.001191, 6.349709, 2.794357;;,
|
||||
171;3; 0.001191, 6.349710, 2.794357;;,
|
||||
172;3; 0.001191, 6.349709, 2.794358;;,
|
||||
173;3; 0.001191, 6.349709, 2.794358;;,
|
||||
174;3; 0.001191, 6.349710, 2.794358;;,
|
||||
175;3; 0.001191, 6.349710, 2.794357;;,
|
||||
176;3; 0.001191, 6.349709, 2.794357;;,
|
||||
177;3; 0.001191, 6.349709, 2.794357;;,
|
||||
178;3; 0.001191, 6.349710, 2.794358;;,
|
||||
179;3; 0.001191, 6.349710, 2.794357;;,
|
||||
180;3; 0.001191, 6.349709, 2.794358;;,
|
||||
181;3; 0.001191, 6.349710, 2.794357;;,
|
||||
182;3; 0.001191, 6.349710, 2.794357;;,
|
||||
183;3; 0.001191, 6.349710, 2.794357;;,
|
||||
184;3; 0.001191, 6.349710, 2.794357;;,
|
||||
185;3; 0.001191, 6.349710, 2.794357;;,
|
||||
186;3; 0.001191, 6.349710, 2.794357;;,
|
||||
187;3; 0.001191, 6.349709, 2.794357;;,
|
||||
188;3; 0.001191, 6.349710, 2.794358;;,
|
||||
189;3; 0.001191, 6.349709, 2.794358;;,
|
||||
190;3; 0.001191, 6.349710, 2.794358;;,
|
||||
191;3; 0.001191, 6.349710, 2.794357;;,
|
||||
192;3; 0.001191, 6.349710, 2.794355;;,
|
||||
193;3; 0.001191, 6.349710, 2.794358;;,
|
||||
194;3; 0.001191, 6.349709, 2.794357;;,
|
||||
195;3; 0.001191, 6.349709, 2.794357;;,
|
||||
196;3; 0.001191, 6.349710, 2.794358;;,
|
||||
197;3; 0.001191, 6.349710, 2.794358;;,
|
||||
198;3; 0.001191, 6.349710, 2.794357;;,
|
||||
199;3; 0.001191, 6.349709, 2.794358;;,
|
||||
200;3; 0.001191, 6.349710, 2.794357;;,
|
||||
201;3; 0.001191, 6.349710, 2.794356;;,
|
||||
202;3; 0.001191, 6.349710, 2.794358;;,
|
||||
203;3; 0.001191, 6.349710, 2.794358;;,
|
||||
204;3; 0.001191, 6.349709, 2.794358;;,
|
||||
205;3; 0.001191, 6.349710, 2.794358;;,
|
||||
206;3; 0.001191, 6.349710, 2.794358;;,
|
||||
207;3; 0.001191, 6.349710, 2.794356;;,
|
||||
208;3; 0.001191, 6.349710, 2.794357;;,
|
||||
209;3; 0.001191, 6.349710, 2.794357;;,
|
||||
210;3; 0.001191, 6.349709, 2.794357;;,
|
||||
211;3; 0.001191, 6.349710, 2.794357;;,
|
||||
212;3; 0.001191, 6.349710, 2.794357;;,
|
||||
213;3; 0.001191, 6.349710, 2.794356;;,
|
||||
214;3; 0.001191, 6.349710, 2.794358;;,
|
||||
215;3; 0.001191, 6.349710, 2.794358;;,
|
||||
216;3; 0.001191, 6.349709, 2.794357;;,
|
||||
217;3; 0.001191, 6.349710, 2.794357;;,
|
||||
218;3; 0.001191, 6.349710, 2.794357;;,
|
||||
219;3; 0.001191, 6.349710, 2.794357;;,
|
||||
220;3; 0.001191, 6.349710, 2.794357;;;
|
||||
}
|
||||
AnimationKey { //Rotation
|
||||
0;
|
||||
221;
|
||||
0;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
1;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
2;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
3;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
4;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
5;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
6;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
7;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
8;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
9;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
10;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
11;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
12;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
13;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
14;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
15;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
16;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
17;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
18;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
19;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
20;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
21;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
22;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
23;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
24;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
25;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
26;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
27;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
28;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
29;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
30;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
31;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
32;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
33;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
34;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
35;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
36;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
37;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
38;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
39;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
40;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
41;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
42;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
43;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
44;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
45;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
46;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
47;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
48;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
49;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
50;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
51;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
52;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
53;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
54;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
55;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
56;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
57;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
58;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
59;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
60;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
61;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
62;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
63;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
64;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
65;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
66;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
67;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
68;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
69;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
70;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
71;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
72;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
73;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
74;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
75;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
76;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
77;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
78;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
79;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
80;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
81;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
82;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
83;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
84;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
85;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
86;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
87;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
88;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
89;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
90;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
91;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
92;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
93;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
94;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
95;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
96;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
97;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
98;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
99;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
100;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
101;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
102;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
103;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
104;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
105;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
106;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
107;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
108;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
109;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
110;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
111;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
112;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
113;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
114;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
115;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
116;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
117;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
118;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
119;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
120;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
121;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
122;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
123;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
124;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
125;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
126;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
127;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
128;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
129;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
130;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
131;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
132;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
133;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
134;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
135;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
136;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
137;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
138;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
139;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
140;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
141;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
142;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
143;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
144;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
145;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
146;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
147;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
148;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
149;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
150;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
151;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
152;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
153;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
154;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
155;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
156;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
157;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
158;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
159;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
160;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
161;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
162;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
163;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
164;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
165;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
166;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
167;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
168;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
169;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
170;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
171;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
172;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
173;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
174;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
175;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
176;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
177;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
178;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
179;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
180;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
181;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
182;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
183;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
184;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
185;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
186;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
187;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
188;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
189;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
190;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
191;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
192;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
193;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
194;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
195;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
196;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
197;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
198;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
199;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
200;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
201;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
202;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
203;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
204;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
205;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
206;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
207;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
208;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
209;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
210;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
211;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
212;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
213;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
214;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
215;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
216;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
217;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
218;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
219;4; -0.639567, 0.221750,-0.661245,-0.323320;;,
|
||||
220;4; -0.639567, 0.221750,-0.661245,-0.323320;;;
|
||||
}
|
||||
AnimationKey { //Scale
|
||||
1;
|
||||
221;
|
||||
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;;,
|
||||
76;3; 1.000000, 1.000000, 1.000000;;,
|
||||
77;3; 1.000000, 1.000000, 1.000000;;,
|
||||
78;3; 1.000000, 1.000000, 1.000000;;,
|
||||
79;3; 1.000000, 1.000000, 1.000000;;,
|
||||
80;3; 1.000000, 1.000000, 1.000000;;,
|
||||
81;3; 1.000000, 1.000000, 1.000000;;,
|
||||
82;3; 1.000000, 1.000000, 1.000000;;,
|
||||
83;3; 1.000000, 1.000000, 1.000000;;,
|
||||
84;3; 1.000000, 1.000000, 1.000000;;,
|
||||
85;3; 1.000000, 1.000000, 1.000000;;,
|
||||
86;3; 1.000000, 1.000000, 1.000000;;,
|
||||
87;3; 1.000000, 1.000000, 1.000000;;,
|
||||
88;3; 1.000000, 1.000000, 1.000000;;,
|
||||
89;3; 1.000000, 1.000000, 1.000000;;,
|
||||
90;3; 1.000000, 1.000000, 1.000000;;,
|
||||
91;3; 1.000000, 1.000000, 1.000000;;,
|
||||
92;3; 1.000000, 1.000000, 1.000000;;,
|
||||
93;3; 1.000000, 1.000000, 1.000000;;,
|
||||
94;3; 1.000000, 1.000000, 1.000000;;,
|
||||
95;3; 1.000000, 1.000000, 1.000000;;,
|
||||
96;3; 1.000000, 1.000000, 1.000000;;,
|
||||
97;3; 1.000000, 1.000000, 1.000000;;,
|
||||
98;3; 1.000000, 1.000000, 1.000000;;,
|
||||
99;3; 1.000000, 1.000000, 1.000000;;,
|
||||
100;3; 1.000000, 1.000000, 1.000000;;,
|
||||
101;3; 1.000000, 1.000000, 1.000000;;,
|
||||
102;3; 1.000000, 1.000000, 1.000000;;,
|
||||
103;3; 1.000000, 1.000000, 1.000000;;,
|
||||
104;3; 1.000000, 1.000000, 1.000000;;,
|
||||
105;3; 1.000000, 1.000000, 1.000000;;,
|
||||
106;3; 1.000000, 1.000000, 1.000000;;,
|
||||
107;3; 1.000000, 1.000000, 1.000000;;,
|
||||
108;3; 1.000000, 1.000000, 1.000000;;,
|
||||
109;3; 1.000000, 1.000000, 1.000000;;,
|
||||
110;3; 1.000000, 1.000000, 1.000000;;,
|
||||
111;3; 1.000000, 1.000000, 1.000000;;,
|
||||
112;3; 1.000000, 1.000000, 1.000000;;,
|
||||
113;3; 1.000000, 1.000000, 1.000000;;,
|
||||
114;3; 1.000000, 1.000000, 1.000000;;,
|
||||
115;3; 1.000000, 1.000000, 1.000000;;,
|
||||
116;3; 1.000000, 1.000000, 1.000000;;,
|
||||
117;3; 1.000000, 1.000000, 1.000000;;,
|
||||
118;3; 1.000000, 1.000000, 1.000000;;,
|
||||
119;3; 1.000000, 1.000000, 1.000000;;,
|
||||
120;3; 1.000000, 1.000000, 1.000000;;,
|
||||
121;3; 1.000000, 1.000000, 1.000000;;,
|
||||
122;3; 1.000000, 1.000000, 1.000000;;,
|
||||
123;3; 1.000000, 1.000000, 1.000000;;,
|
||||
124;3; 1.000000, 1.000000, 1.000000;;,
|
||||
125;3; 1.000000, 1.000000, 1.000000;;,
|
||||
126;3; 1.000000, 1.000000, 1.000000;;,
|
||||
127;3; 1.000000, 1.000000, 1.000000;;,
|
||||
128;3; 1.000000, 1.000000, 1.000000;;,
|
||||
129;3; 1.000000, 1.000000, 1.000000;;,
|
||||
130;3; 1.000000, 1.000000, 1.000000;;,
|
||||
131;3; 1.000000, 1.000000, 1.000000;;,
|
||||
132;3; 1.000000, 1.000000, 1.000000;;,
|
||||
133;3; 1.000000, 1.000000, 1.000000;;,
|
||||
134;3; 1.000000, 1.000000, 1.000000;;,
|
||||
135;3; 1.000000, 1.000000, 1.000000;;,
|
||||
136;3; 1.000000, 1.000000, 1.000000;;,
|
||||
137;3; 1.000000, 1.000000, 1.000000;;,
|
||||
138;3; 1.000000, 1.000000, 1.000000;;,
|
||||
139;3; 1.000000, 1.000000, 1.000000;;,
|
||||
140;3; 1.000000, 1.000000, 1.000000;;,
|
||||
141;3; 1.000000, 1.000000, 1.000000;;,
|
||||
142;3; 1.000000, 1.000000, 1.000000;;,
|
||||
143;3; 1.000000, 1.000000, 1.000000;;,
|
||||
144;3; 1.000000, 1.000000, 1.000000;;,
|
||||
145;3; 1.000000, 1.000000, 1.000000;;,
|
||||
146;3; 1.000000, 1.000000, 1.000000;;,
|
||||
147;3; 1.000000, 1.000000, 1.000000;;,
|
||||
148;3; 1.000000, 1.000000, 1.000000;;,
|
||||
149;3; 1.000000, 1.000000, 1.000000;;,
|
||||
150;3; 1.000000, 1.000000, 1.000000;;,
|
||||
151;3; 1.000000, 1.000000, 1.000000;;,
|
||||
152;3; 1.000000, 1.000000, 1.000000;;,
|
||||
153;3; 1.000000, 1.000000, 1.000000;;,
|
||||
154;3; 1.000000, 1.000000, 1.000000;;,
|
||||
155;3; 1.000000, 1.000000, 1.000000;;,
|
||||
156;3; 1.000000, 1.000000, 1.000000;;,
|
||||
157;3; 1.000000, 1.000000, 1.000000;;,
|
||||
158;3; 1.000000, 1.000000, 1.000000;;,
|
||||
159;3; 1.000000, 1.000000, 1.000000;;,
|
||||
160;3; 1.000000, 1.000000, 1.000000;;,
|
||||
161;3; 1.000000, 1.000000, 1.000000;;,
|
||||
162;3; 1.000000, 1.000000, 1.000000;;,
|
||||
163;3; 1.000000, 1.000000, 1.000000;;,
|
||||
164;3; 1.000000, 1.000000, 1.000000;;,
|
||||
165;3; 1.000000, 1.000000, 1.000000;;,
|
||||
166;3; 1.000000, 1.000000, 1.000000;;,
|
||||
167;3; 1.000000, 1.000000, 1.000000;;,
|
||||
168;3; 1.000000, 1.000000, 1.000000;;,
|
||||
169;3; 1.000000, 1.000000, 1.000000;;,
|
||||
170;3; 1.000000, 1.000000, 1.000000;;,
|
||||
171;3; 1.000000, 1.000000, 1.000000;;,
|
||||
172;3; 1.000000, 1.000000, 1.000000;;,
|
||||
173;3; 1.000000, 1.000000, 1.000000;;,
|
||||
174;3; 1.000000, 1.000000, 1.000000;;,
|
||||
175;3; 1.000000, 1.000000, 1.000000;;,
|
||||
176;3; 1.000000, 1.000000, 1.000000;;,
|
||||
177;3; 1.000000, 1.000000, 1.000000;;,
|
||||
178;3; 1.000000, 1.000000, 1.000000;;,
|
||||
179;3; 1.000000, 1.000000, 1.000000;;,
|
||||
180;3; 1.000000, 1.000000, 1.000000;;,
|
||||
181;3; 1.000000, 1.000000, 1.000000;;,
|
||||
182;3; 1.000000, 1.000000, 1.000000;;,
|
||||
183;3; 1.000000, 1.000000, 1.000000;;,
|
||||
184;3; 1.000000, 1.000000, 1.000000;;,
|
||||
185;3; 1.000000, 1.000000, 1.000000;;,
|
||||
186;3; 1.000000, 1.000000, 1.000000;;,
|
||||
187;3; 1.000000, 1.000000, 1.000000;;,
|
||||
188;3; 1.000000, 1.000000, 1.000000;;,
|
||||
189;3; 1.000000, 1.000000, 1.000000;;,
|
||||
190;3; 1.000000, 1.000000, 1.000000;;,
|
||||
191;3; 1.000000, 1.000000, 1.000000;;,
|
||||
192;3; 1.000000, 1.000000, 1.000000;;,
|
||||
193;3; 1.000000, 1.000000, 1.000000;;,
|
||||
194;3; 1.000000, 1.000000, 1.000000;;,
|
||||
195;3; 1.000000, 1.000000, 1.000000;;,
|
||||
196;3; 1.000000, 1.000000, 1.000000;;,
|
||||
197;3; 1.000000, 1.000000, 1.000000;;,
|
||||
198;3; 1.000000, 1.000000, 1.000000;;,
|
||||
199;3; 1.000000, 1.000000, 1.000000;;,
|
||||
200;3; 1.000000, 1.000000, 1.000000;;,
|
||||
201;3; 1.000000, 1.000000, 1.000000;;,
|
||||
202;3; 1.000000, 1.000000, 1.000000;;,
|
||||
203;3; 1.000000, 1.000000, 1.000000;;,
|
||||
204;3; 1.000000, 1.000000, 1.000000;;,
|
||||
205;3; 1.000000, 1.000000, 1.000000;;,
|
||||
206;3; 1.000000, 1.000000, 1.000000;;,
|
||||
207;3; 1.000000, 1.000000, 1.000000;;,
|
||||
208;3; 1.000000, 1.000000, 1.000000;;,
|
||||
209;3; 1.000000, 1.000000, 1.000000;;,
|
||||
210;3; 1.000000, 1.000000, 1.000000;;,
|
||||
211;3; 1.000000, 1.000000, 1.000000;;,
|
||||
212;3; 1.000000, 1.000000, 1.000000;;,
|
||||
213;3; 1.000000, 1.000000, 1.000000;;,
|
||||
214;3; 1.000000, 1.000000, 1.000000;;,
|
||||
215;3; 1.000000, 1.000000, 1.000000;;,
|
||||
216;3; 1.000000, 1.000000, 1.000000;;,
|
||||
217;3; 1.000000, 1.000000, 1.000000;;,
|
||||
218;3; 1.000000, 1.000000, 1.000000;;,
|
||||
219;3; 1.000000, 1.000000, 1.000000;;,
|
||||
220;3; 1.000000, 1.000000, 1.000000;;;
|
||||
}
|
||||
}
|
||||
Animation {
|
||||
{Armature_Arm_Left}
|
||||
AnimationKey { //Position
|
||||
|
30
rotation.lua
30
rotation.lua
@ -1,30 +0,0 @@
|
||||
-- Wielded Item Rotation Overrides - [item_name]=degrees,
|
||||
|
||||
wield3d_rotation = {
|
||||
["default:torch"]=315,
|
||||
["default:sapling"]=315,
|
||||
["flowers:dandelion_white"]=315,
|
||||
["flowers:dandelion_yellow"]=315,
|
||||
["flowers:geranium"]=315,
|
||||
["flowers:rose"]=315,
|
||||
["flowers:tulip"]=315,
|
||||
["flowers:viola"]=315,
|
||||
["default:shovel_wood"]=270,
|
||||
["default:shovel_stone"]=270,
|
||||
["default:shovel_steel"]=270,
|
||||
["default:shovel_bronze"]=270,
|
||||
["default:shovel_mese"]=270,
|
||||
["default:shovel_diamond"]=270,
|
||||
["bucket:bucket_empty"]=270,
|
||||
["bucket:bucket_water"]=270,
|
||||
["bucket:bucket_lava"]=270,
|
||||
["screwdriver:screwdriver"]=270,
|
||||
["screwdriver:screwdriver1"]=270,
|
||||
["screwdriver:screwdriver2"]=270,
|
||||
["screwdriver:screwdriver3"]=270,
|
||||
["screwdriver:screwdriver4"]=270,
|
||||
["vessels:glass_bottle"]=270,
|
||||
["vessels:drinking_glass"]=270,
|
||||
["vessels:steel_bottle"]=270,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user