From 2ebefb332f191c184586a3354912fd7eae7c8738 Mon Sep 17 00:00:00 2001 From: sys4 Date: Sat, 6 Mar 2021 17:04:41 +0100 Subject: [PATCH] Add use_texture_alpha to avoid warnings from 3d_armor_stand --- 3d_armor_stand/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/3d_armor_stand/init.lua b/3d_armor_stand/init.lua index 743ab3a..612345b 100644 --- a/3d_armor_stand/init.lua +++ b/3d_armor_stand/init.lua @@ -153,6 +153,7 @@ minetest.register_node("3d_armor_stand:armor_stand", { drawtype = "mesh", mesh = "3d_armor_stand.obj", tiles = {"3d_armor_stand.png"}, + use_texture_alpha = "clip", paramtype = "light", paramtype2 = "facedir", walkable = false, @@ -221,6 +222,7 @@ minetest.register_node("3d_armor_stand:locked_armor_stand", { drawtype = "mesh", mesh = "3d_armor_stand.obj", tiles = {"3d_armor_stand_locked.png"}, + use_texture_alpha = "clip", paramtype = "light", paramtype2 = "facedir", walkable = false,