mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-12-28 16:27:28 +01:00
Merge pull request #321 from Jeija/animated_turbine
Make "on" water turbine animated!
This commit is contained in:
commit
0cb286b425
@ -5,12 +5,12 @@
|
|||||||
|
|
||||||
minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
|
minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
|
||||||
drawtype = "mesh",
|
drawtype = "mesh",
|
||||||
mesh = "jeija_hydro_turbine.obj",
|
mesh = "jeija_hydro_turbine_off.obj",
|
||||||
tiles = {
|
tiles = {
|
||||||
"jeija_hydro_turbine_sides_off.png",
|
"jeija_hydro_turbine_sides_off.png",
|
||||||
"jeija_hydro_turbine_top_bottom.png",
|
"jeija_hydro_turbine_top_bottom.png",
|
||||||
"jeija_hydro_turbine_turbine_top_bottom.png",
|
"jeija_hydro_turbine_turbine_top_bottom_off.png",
|
||||||
"jeija_hydro_turbine_turbine_misc.png"
|
"jeija_hydro_turbine_turbine_misc_off.png"
|
||||||
},
|
},
|
||||||
inventory_image = "jeija_hydro_turbine_inv.png",
|
inventory_image = "jeija_hydro_turbine_inv.png",
|
||||||
wield_scale = {x=0.75, y=0.75, z=0.75},
|
wield_scale = {x=0.75, y=0.75, z=0.75},
|
||||||
@ -29,13 +29,15 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
|
|||||||
|
|
||||||
minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
|
minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
|
||||||
drawtype = "mesh",
|
drawtype = "mesh",
|
||||||
mesh = "jeija_hydro_turbine.obj",
|
mesh = "jeija_hydro_turbine_on.obj",
|
||||||
wield_scale = {x=0.75, y=0.75, z=0.75},
|
wield_scale = {x=0.75, y=0.75, z=0.75},
|
||||||
tiles = {
|
tiles = {
|
||||||
"jeija_hydro_turbine_sides_on.png",
|
"jeija_hydro_turbine_sides_on.png",
|
||||||
"jeija_hydro_turbine_top_bottom.png",
|
"jeija_hydro_turbine_top_bottom.png",
|
||||||
"jeija_hydro_turbine_turbine_top_bottom.png",
|
{ name = "jeija_hydro_turbine_turbine_top_bottom_on.png",
|
||||||
"jeija_hydro_turbine_turbine_misc.png"
|
animation = {type = "vertical_frames", aspect_w = 128, aspect_h = 16, length = 1.6} },
|
||||||
|
{ name = "jeija_hydro_turbine_turbine_misc_on.png",
|
||||||
|
animation = {type = "vertical_frames", aspect_w = 256, aspect_h = 32, length = 0.4} }
|
||||||
},
|
},
|
||||||
inventory_image = "jeija_hydro_turbine_inv.png",
|
inventory_image = "jeija_hydro_turbine_inv.png",
|
||||||
drop = "mesecons_hydroturbine:hydro_turbine_off 1",
|
drop = "mesecons_hydroturbine:hydro_turbine_off 1",
|
||||||
|
2061
mesecons_hydroturbine/models/jeija_hydro_turbine_on.obj
Normal file
2061
mesecons_hydroturbine/models/jeija_hydro_turbine_on.obj
Normal file
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 820 B After Width: | Height: | Size: 820 B |
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 496 B After Width: | Height: | Size: 496 B |
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
Loading…
Reference in New Issue
Block a user