added transparency to the water

This commit is contained in:
Looki2000 2023-02-03 08:04:38 +01:00
parent d16714b3ae
commit 98a97f4aee

View File

@ -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,
},
},