mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-03-21 15:21:21 +00:00
Waterlily: Avoid z-fighting of base texture with water surface
Avoid z-fighting visible from below. Raise the nodebox base 1/64th of a node.
This commit is contained in:
parent
e3dd3d19cd
commit
f6dfa4a1cb
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ minetest.register_node("flowers:waterlily", {
|
||||||
node_placement_prediction = "",
|
node_placement_prediction = "",
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {-0.5, -0.5, -0.5, 0.5, -15 / 32, 0.5}
|
fixed = {-0.5, -31 / 64, -0.5, 0.5, -15 / 32, 0.5}
|
||||||
},
|
},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
|
Loading…
Add table
Reference in a new issue