Initial commit
This commit is contained in:
commit
a8cc8c8a1b
0
modpack.txt
Normal file
0
modpack.txt
Normal file
84
ufos/init.lua
Normal file
84
ufos/init.lua
Normal file
@ -0,0 +1,84 @@
|
||||
|
||||
local UFO_SPEED = 1
|
||||
local UFO_TURN_SPEED = 2
|
||||
|
||||
local ufo = {
|
||||
physical = true,
|
||||
collisionbox = {-1.5,-.5,-1.5, 1.5,2,1.5},
|
||||
visual = "mesh",
|
||||
mesh = "ufo.x",
|
||||
textures = {"ufo.png"},
|
||||
|
||||
driver = nil,
|
||||
v = 0
|
||||
}
|
||||
function ufo:on_rightclick (clicker)
|
||||
if not clicker or not clicker:is_player() then
|
||||
return
|
||||
end
|
||||
if self.driver and clicker == self.driver then
|
||||
self.driver = nil
|
||||
clicker:set_detach()
|
||||
elseif not self.driver then
|
||||
self.driver = clicker
|
||||
clicker:set_attach(self.object, "", {x=0,y=5,z=0}, {x=0,y=0,z=0})
|
||||
end
|
||||
end
|
||||
|
||||
function ufo:on_activate (staticdata, dtime_s)
|
||||
self.object:set_armor_groups({immortal=1})
|
||||
end
|
||||
|
||||
function ufo:on_punch (puncher, time_from_last_punch, tool_capabilities, direction)
|
||||
self.object:remove()
|
||||
if puncher and puncher:is_player() then
|
||||
puncher:get_inventory():add_item("main", "ufos:ufo")
|
||||
end
|
||||
end
|
||||
|
||||
function ufo:on_step (dtime)
|
||||
if self.driver then
|
||||
local ctrl = self.driver:get_player_control()
|
||||
local vel = {x=0,y=0,z=0}
|
||||
if ctrl.up then
|
||||
vel.x = math.cos(self.object:getyaw()+math.pi/2)*UFO_SPEED
|
||||
vel.z = math.sin(self.object:getyaw()+math.pi/2)*UFO_SPEED
|
||||
end
|
||||
if ctrl.down then
|
||||
vel.x = -self.object:getvelocity().x
|
||||
vel.z = -self.object:getvelocity().z
|
||||
end
|
||||
if ctrl.jump then
|
||||
vel.y = UFO_SPEED
|
||||
end
|
||||
if ctrl.sneak then
|
||||
vel.y = -UFO_SPEED
|
||||
end
|
||||
self.object:setacceleration(vel)
|
||||
if ctrl.left then
|
||||
self.object:setyaw(self.object:getyaw()+math.pi/120*UFO_TURN_SPEED)
|
||||
end
|
||||
if ctrl.right then
|
||||
self.object:setyaw(self.object:getyaw()-math.pi/120*UFO_TURN_SPEED)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_entity("ufos:ufo", ufo)
|
||||
|
||||
|
||||
minetest.register_craftitem("ufos:ufo", {
|
||||
description = "ufo",
|
||||
inventory_image = "ufo.png",
|
||||
wield_image = "ufo.png",
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
if pointed_thing.type ~= "node" then
|
||||
return
|
||||
end
|
||||
minetest.env:add_entity(pointed_thing.above, "ufos:ufo")
|
||||
itemstack:take_item()
|
||||
return itemstack
|
||||
end,
|
||||
})
|
||||
|
BIN
ufos/models/ufo.blend
Normal file
BIN
ufos/models/ufo.blend
Normal file
Binary file not shown.
BIN
ufos/models/ufo.png
Normal file
BIN
ufos/models/ufo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.0 KiB |
652
ufos/models/ufo.x
Normal file
652
ufos/models/ufo.x
Normal file
@ -0,0 +1,652 @@
|
||||
xof 0303txt 0032
|
||||
|
||||
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 Cube_001 {
|
||||
FrameTransformMatrix {
|
||||
-10.000000, 0.000000, 0.000002, 0.000000,
|
||||
0.000000,10.000000, 0.000000, 0.000000,
|
||||
-0.000002, 0.000000,-10.000000, 0.000000,
|
||||
0.000000, 0.000000,15.000000, 1.000000;;
|
||||
}
|
||||
Mesh { //Cube_004 Mesh
|
||||
72;
|
||||
-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.833333; 1.000000;,
|
||||
-1.000000; 1.000000; 1.000000;,
|
||||
-0.833333; 1.000000; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-1.000000;-1.000000; 1.000000;,
|
||||
-1.000000;-0.833333; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
-0.833333;-1.000000; 1.000000;,
|
||||
-1.000000;-0.833333; 1.000000;,
|
||||
-1.000000; 0.833333; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
0.833333;-1.000000; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
1.000000;-0.833333; 1.000000;,
|
||||
1.000000;-1.000000; 1.000000;,
|
||||
-0.833333;-1.000000; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
0.833333;-1.000000; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
1.000000; 0.833333; 1.000000;,
|
||||
1.000000;-0.833333; 1.000000;,
|
||||
0.833333;-0.833333;-0.600000;,
|
||||
0.833333; 0.833333;-0.600000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
0.833333; 1.000000; 1.000000;,
|
||||
1.000000; 1.000000; 1.000000;,
|
||||
1.000000; 0.833333; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-0.833333; 1.000000; 1.000000;,
|
||||
0.833333; 1.000000; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
-0.833333;-0.833333;-0.600000;,
|
||||
-0.833333; 0.833333;-0.600000;,
|
||||
0.833333; 0.833333;-0.600000;,
|
||||
0.833333;-0.833333;-0.600000;,
|
||||
0.833333; 0.833333;-0.600000;,
|
||||
-0.833333; 0.833333;-0.600000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
-0.833333; 0.833333;-0.600000;,
|
||||
-0.833333;-0.833333;-0.600000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-0.833333;-0.833333;-0.600000;,
|
||||
0.833333;-0.833333;-0.600000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;;
|
||||
18;
|
||||
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;;
|
||||
MeshNormals { //Cube_004 Normals
|
||||
72;
|
||||
-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;-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; 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; 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; 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;,
|
||||
-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; 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;;
|
||||
18;
|
||||
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;;
|
||||
} //End of Cube_004 Normals
|
||||
MeshMaterialList { //Cube_004 Material List
|
||||
1;
|
||||
18;
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0;;
|
||||
Material Material {
|
||||
0.640000; 0.640000; 0.640000; 1.000000;;
|
||||
96.078431;
|
||||
0.500000; 0.500000; 0.500000;;
|
||||
0.000000; 0.000000; 0.000000;;
|
||||
TextureFilename {"ufo.png";}
|
||||
}
|
||||
} //End of Cube_004 Material List
|
||||
MeshTextureCoords { //Cube_004 UV Coordinates
|
||||
72;
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 0.000000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 0.000000;,
|
||||
0.000000; 0.000000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 0.000000;,
|
||||
1.000000; 0.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;;
|
||||
} //End of Cube_004 UV Coordinates
|
||||
} //End of Cube_004 Mesh
|
||||
} //End of Cube_001
|
||||
Frame Cube {
|
||||
FrameTransformMatrix {
|
||||
10.000000, 0.000000, 0.000000, 0.000000,
|
||||
0.000000,10.000000, 0.000000, 0.000000,
|
||||
0.000000, 0.000000, 5.000000, 0.000000,
|
||||
0.000000, 0.000000, 0.000000, 1.000000;;
|
||||
}
|
||||
Mesh { //Cube_004 Mesh
|
||||
83;
|
||||
-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.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; 1.000000;-1.000000;,
|
||||
-1.000000; 1.000000;-1.000000;,
|
||||
-1.000000;-1.000000;-1.000000;,
|
||||
-1.000000; 0.833333; 1.000000;,
|
||||
-1.000000; 1.000000; 1.000000;,
|
||||
-0.833333; 1.000000; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-1.000000;-1.000000; 1.000000;,
|
||||
-1.000000;-0.833333; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
-0.833333;-1.000000; 1.000000;,
|
||||
-1.000000;-0.833333; 1.000000;,
|
||||
-1.000000; 0.833333; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
0.833333;-1.000000; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
1.000000;-0.833333; 1.000000;,
|
||||
1.000000;-1.000000; 1.000000;,
|
||||
-0.833333;-1.000000; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
0.833333;-1.000000; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
1.000000; 0.833333; 1.000000;,
|
||||
1.000000;-0.833333; 1.000000;,
|
||||
0.833333;-0.833333;-0.600000;,
|
||||
0.833333; 0.833333;-0.600000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
0.833333; 1.000000; 1.000000;,
|
||||
1.000000; 1.000000; 1.000000;,
|
||||
1.000000; 0.833333; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-0.833333; 1.000000; 1.000000;,
|
||||
0.833333; 1.000000; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
-0.833333;-0.833333;-0.600000;,
|
||||
-0.833333; 0.833333;-0.600000;,
|
||||
0.833333; 0.833333;-0.600000;,
|
||||
0.833333;-0.833333;-0.600000;,
|
||||
0.833333; 0.833333;-0.600000;,
|
||||
-0.833333; 0.833333;-0.600000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
0.833333; 0.833333; 1.000000;,
|
||||
-0.833333; 0.833333;-0.600000;,
|
||||
-0.833333;-0.833333;-0.600000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
-0.833333; 0.833333; 1.000000;,
|
||||
-0.833333;-0.833333;-0.600000;,
|
||||
0.833333;-0.833333;-0.600000;,
|
||||
0.833333;-0.833333; 1.000000;,
|
||||
-0.833333;-0.833333; 1.000000;,
|
||||
0.000000; 1.000000;-1.000000;,
|
||||
0.000000; 2.000000; 0.333333;,
|
||||
-1.000000; 1.000000; 1.000000;,
|
||||
1.000000; 1.000000; 1.000000;,
|
||||
0.000000; 2.000000; 0.333333;,
|
||||
0.000000; 1.000000;-1.000000;,
|
||||
-1.000000; 1.000000; 1.000000;,
|
||||
0.000000; 2.000000; 0.333333;,
|
||||
1.000000; 1.000000; 1.000000;;
|
||||
21;
|
||||
4;0;1;2;3;,
|
||||
4;4;5;6;7;,
|
||||
4;8;9;10;11;,
|
||||
5;12;13;14;15;16;,
|
||||
5;17;18;19;20;21;,
|
||||
4;22;23;24;25;,
|
||||
4;26;27;28;29;,
|
||||
4;30;31;32;33;,
|
||||
4;34;35;36;37;,
|
||||
4;38;39;40;41;,
|
||||
4;42;43;44;45;,
|
||||
4;46;47;48;49;,
|
||||
4;50;51;52;53;,
|
||||
4;54;55;56;57;,
|
||||
4;58;59;60;61;,
|
||||
4;62;63;64;65;,
|
||||
4;66;67;68;69;,
|
||||
4;70;71;72;73;,
|
||||
3;74;75;76;,
|
||||
3;77;78;79;,
|
||||
3;80;81;82;;
|
||||
MeshNormals { //Cube_004 Normals
|
||||
83;
|
||||
-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;-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;-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; 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; 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; 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;,
|
||||
-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; 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;,
|
||||
-0.768221; 0.512148;-0.384111;,
|
||||
-0.768221; 0.512148;-0.384111;,
|
||||
-0.768221; 0.512148;-0.384111;,
|
||||
0.768221; 0.512148;-0.384111;,
|
||||
0.768221; 0.512148;-0.384111;,
|
||||
0.768221; 0.512148;-0.384111;,
|
||||
0.000000; 0.554700; 0.832050;,
|
||||
0.000000; 0.554700; 0.832050;,
|
||||
0.000000; 0.554700; 0.832050;;
|
||||
21;
|
||||
4;0;1;2;3;,
|
||||
4;4;5;6;7;,
|
||||
4;8;9;10;11;,
|
||||
5;12;13;14;15;16;,
|
||||
5;17;18;19;20;21;,
|
||||
4;22;23;24;25;,
|
||||
4;26;27;28;29;,
|
||||
4;30;31;32;33;,
|
||||
4;34;35;36;37;,
|
||||
4;38;39;40;41;,
|
||||
4;42;43;44;45;,
|
||||
4;46;47;48;49;,
|
||||
4;50;51;52;53;,
|
||||
4;54;55;56;57;,
|
||||
4;58;59;60;61;,
|
||||
4;62;63;64;65;,
|
||||
4;66;67;68;69;,
|
||||
4;70;71;72;73;,
|
||||
3;74;75;76;,
|
||||
3;77;78;79;,
|
||||
3;80;81;82;;
|
||||
} //End of Cube_004 Normals
|
||||
MeshMaterialList { //Cube_004 Material List
|
||||
1;
|
||||
21;
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0;;
|
||||
Material Material {
|
||||
0.640000; 0.640000; 0.640000; 1.000000;;
|
||||
96.078431;
|
||||
0.500000; 0.500000; 0.500000;;
|
||||
0.000000; 0.000000; 0.000000;;
|
||||
TextureFilename {"ufo.png";}
|
||||
}
|
||||
} //End of Cube_004 Material List
|
||||
MeshTextureCoords { //Cube_004 UV Coordinates
|
||||
83;
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 1.000000;,
|
||||
1.000000; 1.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 0.500000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
0.500000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 0.750000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 0.500000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
1.000000; 1.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 1.000000;,
|
||||
1.000000; 1.000000;,
|
||||
1.000000; 0.500000;,
|
||||
0.000000; 1.000000;,
|
||||
0.000000; 1.000000;,
|
||||
1.000000; 0.500000;,
|
||||
1.000000; 1.000000;;
|
||||
} //End of Cube_004 UV Coordinates
|
||||
} //End of Cube_004 Mesh
|
||||
} //End of Cube
|
||||
} //End of Root Frame
|
Loading…
x
Reference in New Issue
Block a user