diff --git a/init.lua b/init.lua index 675c0b1..f8721c9 100644 --- a/init.lua +++ b/init.lua @@ -231,6 +231,7 @@ for i = 1, #vines do paramtype = "light", paramtype2 = "facedir", tiles = {vines[i].texture}, + use_texture_alpha = true, inventory_image = vines[i].texture, wield_image = vines[i].texture, node_box = { @@ -259,21 +260,27 @@ local panels = { {"dye:green", "dye:red", "dye:orange"}, } }, - {name= "wrought_lattice_bottom", description= "Ancient Wrought Lattice (Bottom)",textures={front="jonez_wrought_lattice_bottom.png", edge="jonez_panes_edge.png"}, + {name= "wrought_lattice_bottom", description= "Ancient Wrought Lattice (Bottom)", + textures={front="jonez_wrought_lattice_bottom.png", edge="jonez_panes_edge.png"}, + use_texture_alpha = true, recipe = { {'', '', ''}, {'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:tin_ingot', 'default:steel_ingot'}, } }, - {name= "palace_window_top", description= "Palace Window (Top)",textures={front="jonez_palace_window_top.png", edge="default_wood.png"}, + {name= "palace_window_top", description= "Palace Window (Top)", + textures={front="jonez_palace_window_top.png", edge="default_wood.png"}, + use_texture_alpha = true, recipe = { {'', 'xpanes:pane_flat', ''}, {'', 'xpanes:pane_flat', ''}, {'', '', ''}, } }, - {name= "palace_window_bottom", description= "Palace Window (Bottom)",textures={front="jonez_palace_window_bottom.png", edge="default_wood.png"}, + {name= "palace_window_bottom", description= "Palace Window (Bottom)", + textures={front="jonez_palace_window_bottom.png", edge="default_wood.png"}, + use_texture_alpha = true, recipe = { {'', '', ''}, {'', 'xpanes:pane_flat', ''}, @@ -286,6 +293,7 @@ for j=1, #panels do xpanes.register_pane(panels[j].name, { description = S(panels[j].description), textures = {panels[j].textures.front, nil, panels[j].textures.edge}, + use_texture_alpha = panels[j].use_texture_alpha, inventory_image = panels[j].textures.front, wield_image = panels[j].textures.front, sounds = default.node_sound_glass_defaults(), @@ -439,6 +447,7 @@ minetest.register_node("jonez:wrought_lattice_top", { "jonez_wrought_lattice_top.png", "jonez_wrought_lattice_top.png" }, + use_texture_alpha = true, }) minetest.register_craft({ diff --git a/textures/jonez_climbing_rose.png b/textures/jonez_climbing_rose.png index 21945a0..548f064 100644 Binary files a/textures/jonez_climbing_rose.png and b/textures/jonez_climbing_rose.png differ diff --git a/textures/jonez_palace_window_bottom.png b/textures/jonez_palace_window_bottom.png index 7e61ff7..c33e541 100644 Binary files a/textures/jonez_palace_window_bottom.png and b/textures/jonez_palace_window_bottom.png differ diff --git a/textures/jonez_palace_window_top.png b/textures/jonez_palace_window_top.png index c0bb510..24b2829 100644 Binary files a/textures/jonez_palace_window_top.png and b/textures/jonez_palace_window_top.png differ diff --git a/textures/jonez_ruin_creeper.png b/textures/jonez_ruin_creeper.png index d6e7ff9..adf141c 100644 Binary files a/textures/jonez_ruin_creeper.png and b/textures/jonez_ruin_creeper.png differ diff --git a/textures/jonez_ruin_vine.png b/textures/jonez_ruin_vine.png index dba4849..23c9e56 100644 Binary files a/textures/jonez_ruin_vine.png and b/textures/jonez_ruin_vine.png differ diff --git a/textures/jonez_sweedish_ivy.png b/textures/jonez_sweedish_ivy.png index 280f4c4..e115aee 100644 Binary files a/textures/jonez_sweedish_ivy.png and b/textures/jonez_sweedish_ivy.png differ diff --git a/textures/jonez_wrought_lattice_bottom.png b/textures/jonez_wrought_lattice_bottom.png index 175ce36..bbde9ce 100644 Binary files a/textures/jonez_wrought_lattice_bottom.png and b/textures/jonez_wrought_lattice_bottom.png differ diff --git a/textures/jonez_wrought_lattice_top.png b/textures/jonez_wrought_lattice_top.png index b3c5e4e..73a16d1 100644 Binary files a/textures/jonez_wrought_lattice_top.png and b/textures/jonez_wrought_lattice_top.png differ