summaryrefslogtreecommitdiff
path: root/games/devtest/mods/testnodes/drawtypes.lua
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-01-17 02:25:33 +0100
committersfan5 <sfan5@live.de>2021-01-29 17:34:41 +0100
commit5c005ad081a23a1c048ef2c1066f60e0e041c956 (patch)
tree6f9e8bb21077b459b483c2a2750c8db1069d5913 /games/devtest/mods/testnodes/drawtypes.lua
parent83229921e5f378625d9ef63ede3dffbe778e1798 (diff)
downloadminetest-5c005ad081a23a1c048ef2c1066f60e0e041c956.tar.gz
minetest-5c005ad081a23a1c048ef2c1066f60e0e041c956.tar.bz2
minetest-5c005ad081a23a1c048ef2c1066f60e0e041c956.zip
devtest: Fix deprecated alpha usage
Diffstat (limited to 'games/devtest/mods/testnodes/drawtypes.lua')
-rw-r--r--games/devtest/mods/testnodes/drawtypes.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/games/devtest/mods/testnodes/drawtypes.lua b/games/devtest/mods/testnodes/drawtypes.lua
index d71c3a121..ff970144d 100644
--- a/games/devtest/mods/testnodes/drawtypes.lua
+++ b/games/devtest/mods/testnodes/drawtypes.lua
@@ -364,7 +364,7 @@ for r = 0, 8 do
{name="testnodes_liquidsource_r"..r..".png^[colorize:#FFFFFF:100", backface_culling=false},
{name="testnodes_liquidsource_r"..r..".png^[colorize:#FFFFFF:100", backface_culling=true},
},
- use_texture_alpha = true,
+ use_texture_alpha = "blend",
walkable = false,
@@ -386,7 +386,7 @@ for r = 0, 8 do
{name="testnodes_liquidflowing_r"..r..".png^[colorize:#FFFFFF:100", backface_culling=false},
{name="testnodes_liquidflowing_r"..r..".png^[colorize:#FFFFFF:100", backface_culling=false},
},
- use_texture_alpha = true,
+ use_texture_alpha = "blend",
walkable = false,
@@ -411,7 +411,7 @@ minetest.register_node("testnodes:liquid_waving", {
{name="testnodes_liquidsource.png^[colorize:#0000FF:127", backface_culling=false},
{name="testnodes_liquidsource.png^[colorize:#0000FF:127", backface_culling=true},
},
- use_texture_alpha = true,
+ use_texture_alpha = "blend",
waving = 3,
@@ -434,7 +434,7 @@ minetest.register_node("testnodes:liquid_flowing_waving", {
{name="testnodes_liquidflowing.png^[colorize:#0000FF:127", backface_culling=false},
{name="testnodes_liquidflowing.png^[colorize:#0000FF:127", backface_culling=false},
},
- use_texture_alpha = true,
+ use_texture_alpha = "blend",
waving = 3,