mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
fixed non-animated HL
This commit is contained in:
parent
631450c05e
commit
54a70c6246
1 changed files with 14 additions and 1 deletions
|
@ -131,17 +131,30 @@ minetest.register_node("moontest:hlsource", {
|
|||
inventory_image = minetest.inventorycube("moontest_hl.png"),
|
||||
drawtype = "liquid",
|
||||
tiles = {"moontest_hl.png"},
|
||||
special_tiles = {
|
||||
{
|
||||
image="moontest_hl_animated.png",
|
||||
backface_culling=false,
|
||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2}
|
||||
},
|
||||
{
|
||||
image="moontest_hl_animated.png",
|
||||
backface_culling=true,
|
||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2}
|
||||
},
|
||||
},
|
||||
alpha = 224,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
buildable_to = true,
|
||||
liquidtype = "source",
|
||||
liquid_alternative_flowing = "moontest:hlflowing",
|
||||
liquid_alternative_source = "moontest:hlsource",
|
||||
liquid_viscosity = 1,
|
||||
post_effect_color = {a=224, r=115, g=55, b=24},
|
||||
groups = {water=3, liquid=3, puts_out_fire=1},
|
||||
groups = {water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1},
|
||||
})
|
||||
|
||||
minetest.register_node("moontest:soil", {
|
||||
|
|
Loading…
Add table
Reference in a new issue