diff options
| author | sfan5 <sfan5@live.de> | 2021-01-17 02:25:33 +0100 |
|---|---|---|
| committer | sfan5 <sfan5@live.de> | 2021-01-29 17:34:41 +0100 |
| commit | 5c005ad081a23a1c048ef2c1066f60e0e041c956 (patch) | |
| tree | 6f9e8bb21077b459b483c2a2750c8db1069d5913 /games/devtest/mods/testnodes/liquids.lua | |
| parent | 83229921e5f378625d9ef63ede3dffbe778e1798 (diff) | |
| download | minetest-5c005ad081a23a1c048ef2c1066f60e0e041c956.tar.xz | |
devtest: Fix deprecated alpha usage
Diffstat (limited to 'games/devtest/mods/testnodes/liquids.lua')
| -rw-r--r-- | games/devtest/mods/testnodes/liquids.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/devtest/mods/testnodes/liquids.lua b/games/devtest/mods/testnodes/liquids.lua index abef9e0b7..3d2ea17f5 100644 --- a/games/devtest/mods/testnodes/liquids.lua +++ b/games/devtest/mods/testnodes/liquids.lua @@ -9,7 +9,7 @@ for d=0, 8 do {name = "testnodes_liquidsource_r"..d..".png", backface_culling = false}, {name = "testnodes_liquidsource_r"..d..".png", backface_culling = true}, }, - alpha = 192, + use_texture_alpha = "blend", paramtype = "light", walkable = false, buildable_to = true, @@ -28,7 +28,7 @@ for d=0, 8 do {name = "testnodes_liquidflowing_r"..d..".png", backface_culling = false}, {name = "testnodes_liquidflowing_r"..d..".png", backface_culling = false}, }, - alpha = 192, + use_texture_alpha = "blend", paramtype = "light", paramtype2 = "flowingliquid", walkable = false, @@ -49,7 +49,7 @@ for d=0, 8 do {name = "testnodes_liquidsource_r"..d..".png"..mod, backface_culling = false}, {name = "testnodes_liquidsource_r"..d..".png"..mod, backface_culling = true}, }, - alpha = 192, + use_texture_alpha = "blend", paramtype = "light", walkable = false, buildable_to = true, @@ -68,7 +68,7 @@ for d=0, 8 do {name = "testnodes_liquidflowing_r"..d..".png"..mod, backface_culling = false}, {name = "testnodes_liquidflowing_r"..d..".png"..mod, backface_culling = false}, }, - alpha = 192, + use_texture_alpha = "blend", paramtype = "light", paramtype2 = "flowingliquid", walkable = false, |
