From 98a97f4aee89aac1747e95fe60d2fd057039a15c Mon Sep 17 00:00:00 2001 From: Looki2000 Date: Fri, 3 Feb 2023 08:04:38 +0100 Subject: [PATCH] added transparency to the water --- mods/amogus_blocks/init.lua | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mods/amogus_blocks/init.lua b/mods/amogus_blocks/init.lua index 8b706f3..dce84cb 100644 --- a/mods/amogus_blocks/init.lua +++ b/mods/amogus_blocks/init.lua @@ -255,6 +255,8 @@ minetest.register_node("amogus_blocks:wood", { -- groups = {water = 3, liquid = 3, puts_out_fire = 1}, --}) + + minetest.register_node("amogus_blocks:water_source", { description = "Water Source", drawtype = "liquid", @@ -262,11 +264,11 @@ minetest.register_node("amogus_blocks:water_source", { tiles = { { - name = "water.png", + name = "water.png^[opacity:127]", backface_culling = false, }, { - name = "water.png", + name = "water.png^[opacity:127]", backface_culling = true, }, }, @@ -293,14 +295,14 @@ minetest.register_node("amogus_blocks:water_flowing", { drawtype = "flowingliquid", waving = 3, - tiles = {"water.png"}, + tiles = {"water.png^[opacity:127]"}, special_tiles = { { - name = "water.png", + name = "water.png^[opacity:127]", backface_culling = false, }, { - name = "water.png", + name = "water.png^[opacity:127]", backface_culling = true, }, },