Add a transparent node

This commit is contained in:
Functioning Member of Society 2022-11-22 14:44:44 -05:00
parent 59562a6a9c
commit ad7931a469
7 changed files with 11 additions and 0 deletions

View File

@ -362,6 +362,17 @@ minetest.register_node("poop:flux_capacitor", {
drop = 'poop:Poop', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:transparent", {
description = "Transparent",
drawtype = "glasslike",
tiles = {"transparent.png"},
paramtype = "light",
is_ground_content = false,
sunlight_propagates = true,
sounds = default.node_sound_glass_defaults(),
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_alias("mapgen_stone", "poop:floor")
local pooped_things = 0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 712 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 768 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 B