Fix incorrect liquid backface culling

This commit is contained in:
Wuzzy 2020-01-19 22:56:37 +01:00
parent 112574792d
commit bc7b86b61a
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ minetest.register_node("mcl_core:water_flowing", {
},
{
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}
},
},
@ -112,7 +112,7 @@ minetest.register_node("mcl_core:lava_flowing", {
},
{
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}
},
},

View File

@ -41,7 +41,7 @@ flowing.special_tiles = {
},
{
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}
},
}