forked from VoxeLibre/VoxeLibre
Fix incorrect liquid backface culling
This commit is contained in:
parent
112574792d
commit
bc7b86b61a
|
@ -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 New Issue