mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-10 18:21:05 +01:00
Fix incorrect liquid backface culling
This commit is contained in:
parent
112574792d
commit
bc7b86b61a
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ minetest.register_node("mcl_core:water_flowing", {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
image="default_water_flowing_animated.png",
|
image="default_water_flowing_animated.png",
|
||||||
backface_culling=true,
|
backface_culling=false,
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=4.0}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=4.0}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -112,7 +112,7 @@ minetest.register_node("mcl_core:lava_flowing", {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
image="default_lava_flowing_animated.png",
|
image="default_lava_flowing_animated.png",
|
||||||
backface_culling=true,
|
backface_culling=false,
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=6.6}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=6.6}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -41,7 +41,7 @@ flowing.special_tiles = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
image="default_river_water_flowing_animated.png",
|
image="default_river_water_flowing_animated.png",
|
||||||
backface_culling=true,
|
backface_culling=false,
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=4.0}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=4.0}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue