Skip to content

Commit fec43a3

Browse files
author
Vanessa Ezekowitz
committed
reworked hydroturbine model for the same reasons
also shrunk the base part down by a very tiny amount to help avoid z-fighting with neighboring water (scaled to 0.9995 percent)
1 parent 5612f84 commit fec43a3

9 files changed

+277
-254
lines changed

mesecons_hydroturbine/init.lua

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@
66
minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
77
drawtype = "mesh",
88
mesh = "jeija_hydro_turbine.obj",
9-
tiles = {"jeija_hydro_turbine_off.png"},
9+
tiles = {
10+
"jeija_hydro_turbine_sides_off.png",
11+
"jeija_hydro_turbine_top_bottom.png",
12+
"jeija_hydro_turbine_turbine_top_bottom.png",
13+
"jeija_hydro_turbine_turbine_misc.png"
14+
},
1015
inventory_image = "jeija_hydro_turbine_inv.png",
1116
wield_scale = {x=0.75, y=0.75, z=0.75},
1217
groups = {dig_immediate=2},
13-
description="Water Turbine",
18+
description="Water Turbine",
1419
paramtype = "light",
1520
selection_box = {
1621
type = "fixed",
@@ -26,7 +31,12 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
2631
drawtype = "mesh",
2732
mesh = "jeija_hydro_turbine.obj",
2833
wield_scale = {x=0.75, y=0.75, z=0.75},
29-
tiles = {"jeija_hydro_turbine_on.png"},
34+
tiles = {
35+
"jeija_hydro_turbine_sides_on.png",
36+
"jeija_hydro_turbine_top_bottom.png",
37+
"jeija_hydro_turbine_turbine_top_bottom.png",
38+
"jeija_hydro_turbine_turbine_misc.png"
39+
},
3040
inventory_image = "jeija_hydro_turbine_inv.png",
3141
drop = "mesecons_hydroturbine:hydro_turbine_off 1",
3242
groups = {dig_immediate=2,not_in_creative_inventory=1},

0 commit comments

Comments
 (0)