Initial commit

master
v-rob 2017-12-27 13:54:23 -08:00 committed by GitHub
parent 8755d19c43
commit 65ff01a59c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
51 changed files with 9686 additions and 0 deletions

1
depends.txt Normal file
View File

@ -0,0 +1 @@
default

1
description.txt Normal file
View File

@ -0,0 +1 @@
A mod that adds decorative computers.

333
init.lua Normal file
View File

@ -0,0 +1,333 @@
local theme = {
{"3lue", "r3d"},
{"r3d", "3ellow"},
{"3ellow", "freedom"},
{"freedom", "cubic"},
{"cubic", "basic"},
{"basic", "off"},
}
for _, row in ipairs(theme) do
local theme = row[1]
local next_theme = row[2]
-- Monitor
minetest.register_node("computer_deco:monitor_"..theme, {
description = "Monitor",
tiles = {"computer_deco_monitor_screen_"..theme..".png", "computer_deco_plastic.png", "computer_deco_plastic_dark.png", "computer_deco_plastic.png"},
inventory_image = "computer_deco_monitor_inv.png",
drawtype = "mesh",
mesh = "computer_deco_monitor.obj",
paramtype = "light",
paramtype2 = "facedir",
light_source = 4,
groups = {cracky=3, not_in_creative_inventory=1},
drop = "computer_deco:monitor_off",
sounds = default.node_sound_metal_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.43, 0.5, 0.2, 0.25}
},
collision_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.43, 0.5, 0.2, 0.25}
},
on_rightclick = function ( pos, node, clicker, itemstack)
node.name = "computer_deco:monitor_"..next_theme;
minetest.set_node(pos, node);
nodeupdate(pos)
end
})
minetest.register_node("computer_deco:monitor_off", {
description = "Monitor",
tiles = {"computer_deco_black.png", "computer_deco_plastic.png", "computer_deco_plastic_dark.png", "computer_deco_plastic.png"},
inventory_image = "computer_deco_monitor_inv.png",
drawtype = "mesh",
mesh = "computer_deco_monitor.obj",
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky=3},
drop = "computer_deco:monitor_off",
sounds = default.node_sound_metal_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.43, 0.5, 0.2, 0.25}
},
collision_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.43, 0.5, 0.2, 0.25}
},
on_rightclick = function ( pos, node, clicker, itemstack)
node.name = "computer_deco:monitor_3lue";
minetest.set_node(pos, node);
nodeupdate(pos)
end
})
minetest.register_craft({
output = 'computer_deco:monitor_off',
recipe = {
{'default:steel_ingot'},
{'default:copper_ingot'},
{'default:glass'},
}
})
minetest.register_alias("computer_deco:monitor_1", "computer_deco:monitor_3lue")
minetest.register_alias("computer_deco:monitor_2", "computer_deco:monitor_r3d")
minetest.register_alias("computer_deco:monitor_3", "computer_deco:monitor_3ellow")
minetest.register_alias("computer_deco:monitor_4", "computer_deco:monitor_freedom")
-- Widescreen Monitor
minetest.register_node("computer_deco:widescreen_monitor_"..theme, {
description = "Monitor",
tiles = {"computer_deco_widescreen_monitor_screen_"..theme..".png", "computer_deco_plastic_dark.png", "computer_deco_plastic.png", "computer_deco_plastic.png"},
inventory_image = "computer_deco_widescreen_monitor_inv.png",
drawtype = "mesh",
mesh = "computer_deco_widescreen_monitor.obj",
paramtype = "light",
paramtype2 = "facedir",
light_source = 4,
groups = {cracky=3, not_in_creative_inventory=1},
drop = "computer_deco:widescreen_monitor_off",
sounds = default.node_sound_metal_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.7, -0.5, -0.43, 0.7, 0.2, 0.25}
},
collision_box = {
type = "fixed",
fixed = {-0.7, -0.5, -0.43, 0.7, 0.2, 0.25}
},
on_rightclick = function ( pos, node, clicker, itemstack)
node.name = "computer_deco:widescreen_monitor_"..next_theme;
minetest.set_node(pos, node);
nodeupdate(pos)
end
})
minetest.register_node("computer_deco:widescreen_monitor_off", {
description = "Monitor",
tiles = {"computer_deco_black.png", "computer_deco_plastic_dark.png", "computer_deco_plastic.png", "computer_deco_plastic.png"},
inventory_image = "computer_deco_widescreen_monitor_inv.png",
drawtype = "mesh",
mesh = "computer_deco_widescreen_monitor.obj",
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky=3},
drop = "computer_deco:widescreen_monitor_off",
sounds = default.node_sound_metal_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.7, -0.5, -0.43, 0.7, 0.2, 0.25}
},
collision_box = {
type = "fixed",
fixed = {-0.7, -0.5, -0.43, 0.7, 0.2, 0.25}
},
on_rightclick = function ( pos, node, clicker, itemstack)
node.name = "computer_deco:widescreen_monitor_3lue";
minetest.set_node(pos, node);
nodeupdate(pos)
end
})
minetest.register_craft({
output = 'computer_deco:widescreen_monitor_off',
recipe = {
{'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
{'', 'default:glass', ''},
}
})
minetest.register_alias("computer_deco:widescreen_monitor_1", "computer_deco:widescreen_monitor_3lue")
minetest.register_alias("computer_deco:widescreen_monitor_2", "computer_deco:widescreen_monitor_r3d")
minetest.register_alias("computer_deco:widescreen_monitor_3", "computer_deco:widescreen_monitor_3ellow")
minetest.register_alias("computer_deco:widescreen_monitor_4", "computer_deco:widescreen_monitor_freedom")
-- Laptop
minetest.register_node("computer_deco:laptop_"..theme, {
description = "Laptop",
tiles = {"computer_deco_laptop_off.png^computer_deco_laptop_screen_"..theme..".png"},
inventory_image = "computer_deco_laptop_inv.png",
drawtype = "mesh",
mesh = "computer_deco_laptop.obj",
paramtype = "light",
paramtype2 = "facedir",
light_source = 4,
groups = {cracky=3, not_in_creative_inventory=1},
drop = "computer_deco:laptop_off",
sounds = default.node_sound_metal_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.35, -0.5, -0.35, 0.35, 0.05, 0.35},
},
collision_box = {
type = "fixed",
fixed = {-0.35, -0.5, -0.35, 0.35, 0.05, 0.35},
},
on_rightclick = function ( pos, node, clicker, itemstack)
node.name = "computer_deco:laptop_"..next_theme;
minetest.set_node(pos, node);
nodeupdate(pos)
end
})
minetest.register_node("computer_deco:laptop_off", {
description = "Laptop",
tiles = {"computer_deco_laptop_off.png"},
inventory_image = "computer_deco_laptop_inv.png",
drawtype = "mesh",
mesh = "computer_deco_laptop_closed.obj",
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky=3},
drop = "computer_deco:laptop_off",
sounds = default.node_sound_metal_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.35, -0.5, -0.35, 0.35, -0.4, 0.25},
},
collision_box = {
type = "fixed",
fixed = {-0.35, -0.5, -0.35, 0.35, -0.4, 0.25},
},
on_rightclick = function ( pos, node, clicker, itemstack)
node.name = "computer_deco:laptop_open";
minetest.set_node(pos, node);
nodeupdate(pos)
end
})
minetest.register_node("computer_deco:laptop_open", {
description = "Laptop",
tiles = {"computer_deco_laptop_off.png"},
inventory_image = "computer_deco_laptop_inv.png",
drawtype = "mesh",
mesh = "computer_deco_laptop.obj",
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky=3, not_in_creative_inventory=1},
drop = "computer_deco:laptop_off",
sounds = default.node_sound_metal_defaults(),
selection_box = {
type = "fixed",
fixed = {-0.35, -0.5, -0.35, 0.35, 0.05, 0.35},
},
collision_box = {
type = "fixed",
fixed = {-0.35, -0.5, -0.35, 0.35, 0.05, 0.35},
},
on_rightclick = function ( pos, node, clicker, itemstack)
node.name = "computer_deco:laptop_3lue";
minetest.set_node(pos, node);
nodeupdate(pos)
end
})
minetest.register_craft({
output = 'computer_deco:laptop_off',
recipe = {
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
{'', 'default:glass', ''},
}
})
minetest.register_alias("computer_deco:laptop_1", "computer_deco:laptop_3lue")
minetest.register_alias("computer_deco:laptop_2", "computer_deco:laptop_r3d")
minetest.register_alias("computer_deco:laptop_3", "computer_deco:laptop_3ellow")
minetest.register_alias("computer_deco:laptop_4", "computer_deco:laptop_freedom")
end
-- Plain Keyboard
minetest.register_node("computer_deco:keyboard", {
description = ("Keyboard"),
inventory_image = "computer_deco_keyboard_inv.png",
drawtype = "mesh",
mesh = "computer_deco_keyboard.obj",
tiles = {"computer_deco_plastic_dark.png", "computer_deco_plastic.png"},
paramtype = "light",
paramtype2 = "facedir",
sounds = default.node_sound_metal_defaults(),
groups = {cracky=2, oddly_breakably_by_hand=2,},
selection_box = {
type = "fixed",
fixed = {-0.4375, -0.5, -0.4375, 0.4375, -0.4375, -0.1875},
},
collision_box = {
type = "fixed",
fixed = {-0.4375, -0.5, -0.4375, 0.4375, -0.4375, -0.1875},
}
})
minetest.register_craft({
output = 'computer_deco:keyboard',
recipe = {
{'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'},
}
})
-- Tower
minetest.register_node("computer_deco:tower", {
description = ("Tower Computer"),
inventory_image = "computer_deco_tower_inv.png",
drawtype = "mesh",
mesh = "computer_deco_tower.obj",
tiles = {"computer_deco_tower.png"},
paramtype = "light",
paramtype2 = "facedir",
sounds = default.node_sound_metal_defaults(),
groups = {cracky=2, oddly_breakably_by_hand=2,},
selection_box = {
type = "fixed",
fixed = {-0.1875, -0.5, -0.36, 0.1875, 0.34, 0.46}
},
collision_box = {
type = "fixed",
fixed = {-0.1875, -0.5, -0.36, 0.1875, 0.34, 0.46}
}
})
minetest.register_craft({
output = 'computer_deco:tower',
recipe = {
{'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
}
})
-- Router
minetest.register_node("computer_deco:router", {
description = ("Router"),
inventory_image = "computer_deco_router_inv.png",
tiles = {"computer_deco_router_top.png","computer_deco_router_top.png^[transformFY","computer_deco_router_side.png","computer_deco_router_side.png^[transformFX","computer_deco_router_back.png",
{name="computer_deco_router_front_animated.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=1.0}},},
paramtype = "light",
paramtype2 = "facedir",
sounds = default.node_sound_metal_defaults(),
groups = {cracky=2, oddly_breakably_by_hand=2,},
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-0.25, -0.5, -0.0625, 0.25, -0.375, 0.3125},
{-0.1875, -0.4375, 0.3125, -0.125, -0.1875, 0.375},
{0.125, -0.4375, 0.3125, 0.1875, -0.1875, 0.375},
{-0.0625, -0.4375, 0.3125, 0.0625, -0.25, 0.375}
}
}
})
minetest.register_craft({
output = 'computer_deco:router',
recipe = {
{'default:tin_ingot', 'default:glass', 'default:steel_ingot'},
}
})

63
license.txt Normal file
View File

@ -0,0 +1,63 @@
LICENSE FOR CODE:
=================
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
LICENSE FOR MEDIA:
==================
Licenses of media (textures, models and sounds)
-----------------------------------------------
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
You are free to:
Share — copy and redistribute the material in any medium or format.
Adapt — remix, transform, and build upon the material for any purpose, even commercially.
The licensor cannot revoke these freedoms as long as you follow the license terms.
Under the following terms:
Attribution — You must give appropriate credit, provide a link to the license, and
indicate if changes were made. You may do so in any reasonable manner, but not in any way
that suggests the licensor endorses you or your use.
ShareAlike — If you remix, transform, or build upon the material, you must distribute
your contributions under the same license as the original.
No additional restrictions — You may not apply legal terms or technological measures that
legally restrict others from doing anything the license permits.
Notices:
You do not have to comply with the license for elements of the material in the public
domain or where your use is permitted by an applicable exception or limitation.
No warranties are given. The license may not give you all of the permissions necessary
for your intended use. For example, other rights such as publicity, privacy, or moral
rights may limit how you use the material.
For more details:
http://creativecommons.org/licenses/by-sa/3.0/

1
mod.conf Normal file
View File

@ -0,0 +1 @@
name = computer_deco

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,124 @@
# Blender v2.69 (sub 0) OBJ File: ''
# www.blender.org
mtllib computer_laptop.mtl
o Cube.001
v -0.340277 0.022636 0.335290
v -0.340277 0.013075 0.362499
v 0.332320 0.022636 0.335292
v 0.332320 -0.432772 0.182772
v 0.332320 0.013075 0.362501
v -0.340276 -0.499994 -0.312651
v -0.340276 -0.432772 -0.312651
v 0.332321 -0.499994 -0.312650
v -0.340277 -0.499994 0.182771
v 0.332320 -0.499994 0.182772
v -0.340277 -0.432772 0.182771
v -0.340278 -0.432772 0.209979
v 0.332320 -0.432772 0.209981
v 0.332320 -0.499994 0.209981
v -0.340278 -0.499994 0.209979
v -0.319957 -0.417924 0.194820
v -0.319957 -0.001053 0.334433
v 0.312000 -0.417925 0.194821
v -0.340277 -0.432772 -0.159321
v 0.332321 -0.432772 -0.312650
v 0.311999 -0.001054 0.334434
v 0.332321 -0.432772 -0.159320
vt 0.682604 0.005242
vt 0.682603 0.021207
vt 0.310265 0.005245
vt 0.044426 0.009206
vt 0.310266 0.021211
vt 0.753340 0.119988
vt 0.810356 0.119988
vt 0.753340 0.597765
vt 0.856851 0.982221
vt 0.745750 0.982220
vt 0.856851 0.831387
vt 0.948453 0.009205
vt 0.878028 0.982221
vt 0.878028 0.831387
vt 0.983700 0.982221
vt 0.862953 0.831387
vt 0.862953 0.982221
vt 0.728292 0.490807
vt 0.728292 0.989869
vt 0.010900 0.490807
vt 0.831643 0.129995
vt 0.982007 0.129995
vt 0.831643 0.789586
vt 0.758249 0.754841
vt 0.758228 0.812823
vt 0.756060 0.752868
vt 0.798519 0.812617
vt 0.756052 0.814797
vt 0.798577 0.754909
vt 0.800285 0.814587
vt 0.707729 0.114386
vt 0.707729 0.471212
vt 0.006162 0.114385
vt 0.345650 0.099088
vt 0.497058 0.032709
vt 0.497058 0.099088
vt 0.990661 0.099453
vt 0.838275 0.032645
vt 0.990661 0.032645
vt 0.007709 0.008663
vt 0.012705 0.022873
vt 0.983559 0.009737
vt 0.943457 0.023414
vt 0.049421 0.023416
vt 0.810356 0.597766
vt 0.745750 0.831387
vt 0.983700 0.831387
vt 0.010900 0.989869
vt 0.982007 0.789586
vt 0.800332 0.752938
vt 0.006162 0.471212
vt 0.007844 0.099088
vt 0.007844 0.032709
vt 0.498289 0.099453
vt 0.498289 0.032646
vt 0.978563 0.023946
usemtl Material.001
s off
f 1/1 2/2 3/3
f 4/4 3/3 5/5
f 6/6 7/7 8/8
f 9/9 6/10 10/11
f 1/1 11/12 2/2
f 12/13 13/14 2/15
f 13/14 12/13 14/16
f 9/9 10/11 15/17
f 16/18 17/19 18/20
f 7/21 19/22 20/23
f 21/24 17/25 3/26
f 16/27 1/28 17/25
f 18/29 21/24 3/26
f 16/27 18/29 11/30
f 19/31 11/32 22/33
f 22/34 8/35 20/36
f 6/37 19/38 7/39
f 10/40 4/4 14/41
f 11/12 9/42 12/43
f 2/2 5/5 3/3
f 13/44 4/4 5/5
f 7/7 20/45 8/8
f 6/10 8/46 10/11
f 11/12 12/43 2/2
f 13/14 5/47 2/15
f 12/13 15/17 14/16
f 10/11 14/16 15/17
f 17/19 21/48 18/20
f 19/22 22/49 20/23
f 17/25 1/28 3/26
f 11/30 1/28 16/27
f 4/50 18/29 3/26
f 18/29 4/50 11/30
f 11/32 4/51 22/33
f 4/52 10/53 8/35
f 22/34 4/52 8/35
f 9/54 11/55 6/37
f 11/55 19/38 6/37
f 4/4 13/44 14/41
f 9/42 15/56 12/43

View File

@ -0,0 +1,138 @@
# Blender v2.69 (sub 0) OBJ File: ''
# www.blender.org
mtllib computer_laptop_closed.mtl
o Cube.001
v 0.332320 -0.432772 0.182772
v -0.340276 -0.499994 -0.312651
v -0.340276 -0.432772 -0.312651
v 0.332321 -0.499994 -0.312650
v -0.340277 -0.499994 0.182771
v 0.332320 -0.499994 0.182772
v -0.340277 -0.432772 0.182771
v -0.340278 -0.432772 0.209979
v 0.332320 -0.432772 0.209981
v 0.332320 -0.499994 0.209981
v -0.340278 -0.499994 0.209979
v -0.340277 -0.432772 -0.159321
v 0.332321 -0.432772 -0.312650
v 0.332321 -0.432772 -0.159320
v -0.339100 -0.432290 -0.312591
v -0.339100 -0.401111 -0.312123
v 0.331143 -0.432288 -0.312592
v 0.331143 -0.432434 0.206702
v 0.331143 -0.401109 -0.312123
v -0.339100 -0.432435 0.206702
v -0.339101 -0.404537 0.197368
v 0.331143 -0.404535 0.197367
v -0.318852 -0.425175 0.187344
v -0.318852 -0.425042 -0.288007
v 0.310895 -0.425173 0.187344
v 0.310894 -0.425040 -0.288006
vt 0.753340 0.119988
vt 0.810356 0.119988
vt 0.753340 0.597765
vt 0.856851 0.982221
vt 0.745750 0.982220
vt 0.856851 0.831387
vt 0.878028 0.831387
vt 0.878028 0.982221
vt 0.862953 0.831387
vt 0.862953 0.982221
vt 0.858063 0.829423
vt 0.885587 0.829423
vt 0.858063 0.950158
vt 0.935597 0.852882
vt 0.935597 0.922715
vt 0.798294 0.852882
vt 0.345650 0.099088
vt 0.497058 0.032709
vt 0.497058 0.099088
vt 0.990661 0.099453
vt 0.838275 0.032645
vt 0.990661 0.032645
vt 0.007709 0.008663
vt 0.044426 0.009206
vt 0.012705 0.022873
vt 0.948453 0.009205
vt 0.983559 0.009737
vt 0.943457 0.023414
vt 0.810356 0.597766
vt 0.745750 0.831387
vt 0.885587 0.950158
vt 0.912135 0.962581
vt 0.785835 0.838012
vt 0.886333 0.908011
vt 0.922048 0.840165
vt 0.798294 0.922715
vt 0.007844 0.099088
vt 0.007844 0.032709
vt 0.498289 0.099453
vt 0.498289 0.032646
vt 0.049421 0.023416
vt 0.978563 0.023946
vt 0.682604 0.005242
vt 0.682603 0.021207
vt 0.310265 0.005245
vt 0.310266 0.021211
vt 0.983700 0.982221
vt 0.922420 0.868181
vt 0.922420 0.951695
vt 0.802372 0.868181
vt 0.758249 0.754841
vt 0.758228 0.812823
vt 0.756060 0.752868
vt 0.798519 0.812617
vt 0.756052 0.814797
vt 0.798577 0.754909
vt 0.800285 0.814587
vt 0.983700 0.831387
vt 0.802372 0.951695
vt 0.800332 0.752938
vt 0.896350 0.948981
vt 0.903598 0.848845
vt 0.888354 0.925385
vt 0.811076 0.850308
usemtl Material.001
s off
f 2/1 3/2 4/3
f 5/4 2/5 6/6
f 9/7 8/8 10/9
f 5/4 6/6 11/10
f 3/11 12/12 13/13
f 12/14 7/15 14/16
f 14/17 4/18 13/19
f 2/20 12/21 3/22
f 6/23 1/24 10/25
f 7/26 5/27 8/28
f 3/2 13/29 4/3
f 2/5 4/30 6/6
f 8/8 11/10 10/9
f 6/6 10/9 11/10
f 12/12 14/31 13/13
f 8/32 9/33 1/34 7/35
f 7/15 1/36 14/16
f 1/37 6/38 4/18
f 14/17 1/37 4/18
f 5/39 7/40 2/20
f 7/40 12/21 2/20
f 1/24 9/41 10/25
f 5/27 11/42 8/28
f 15/43 16/44 17/45
f 18/24 17/45 19/46
f 15/43 20/26 16/44
f 21/8 22/7 16/47
f 23/48 24/49 25/50
f 26/51 24/52 17/53
f 23/54 15/55 24/52
f 25/56 26/51 17/53
f 23/54 25/56 20/57
f 16/44 19/46 17/45
f 22/41 18/24 19/46
f 20/26 21/28 16/44
f 22/7 19/58 16/47
f 24/49 26/59 25/50
f 24/52 15/55 17/53
f 20/57 15/55 23/54
f 18/60 25/56 17/53
f 25/56 18/60 20/57
f 21/61 20/62 18/63 22/64

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,33 @@
# Blender v2.72 (sub 0) OBJ File: ''
# www.blender.org
mtllib computer_tower.mtl
o Cube.001
v -0.182508 -0.499998 0.450000
v -0.182508 -0.499998 -0.349946
v 0.182508 -0.499998 -0.349946
v 0.182508 -0.499998 0.450000
v -0.182508 0.335734 0.450000
v 0.182508 0.335734 0.450000
v 0.182508 0.335734 -0.349946
v -0.182508 0.335734 -0.349947
vt 0.999994 0.750017
vt 0.500006 0.749983
vt 0.500002 0.499996
vt 0.999997 0.500009
vt 0.499989 0.999941
vt 0.999986 0.999931
vt 0.500005 0.000003
vt 0.000007 0.500002
vt -0.000003 0.000003
vt 0.250005 0.999991
vt 0.250005 0.499995
vt 0.999993 0.000002
vt 0.000017 0.999997
usemtl Material.001
s off
f 1/1 2/2 3/3 4/4
f 5/5 6/2 7/1 8/6
f 1/7 5/3 8/8 2/9
f 2/3 8/5 7/10 3/11
f 3/12 7/4 6/3 4/7
f 5/13 1/8 4/11 6/10

File diff suppressed because it is too large Load Diff

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 KiB

BIN
textures/Unedited/3lue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

BIN
textures/Unedited/basic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
textures/Unedited/cubic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 KiB

BIN
textures/Unedited/r3d.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 527 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 305 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 463 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 568 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 849 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB