diff --git a/init.lua b/init.lua index 42a74d8..2893611 100644 --- a/init.lua +++ b/init.lua @@ -1393,7 +1393,14 @@ minetest.after( 5, colormachine.init ); minetest.register_node("colormachine:colormachine", { description = "spray booth", - tiles = {"default_chest.png"}, + tiles = { + "colormachine_top.png", + "colormachine_bottom.png", + "colormachine_side.png", + "colormachine_side.png", + "colormachine_side.png", + "colormachine_front.png", + }, paramtype2 = "facedir", groups = {cracky=2}, diff --git a/textures/colormachine_bottom.png b/textures/colormachine_bottom.png new file mode 100644 index 0000000..7c429f9 Binary files /dev/null and b/textures/colormachine_bottom.png differ diff --git a/textures/colormachine_front.png b/textures/colormachine_front.png new file mode 100644 index 0000000..7a4dadb Binary files /dev/null and b/textures/colormachine_front.png differ diff --git a/textures/colormachine_front_active.png b/textures/colormachine_front_active.png new file mode 100644 index 0000000..745095a Binary files /dev/null and b/textures/colormachine_front_active.png differ diff --git a/textures/colormachine_side.png b/textures/colormachine_side.png new file mode 100644 index 0000000..cdcc981 Binary files /dev/null and b/textures/colormachine_side.png differ diff --git a/textures/colormachine_top.png b/textures/colormachine_top.png new file mode 100644 index 0000000..3de0266 Binary files /dev/null and b/textures/colormachine_top.png differ diff --git a/textures/colormachine_top_active.png b/textures/colormachine_top_active.png new file mode 100644 index 0000000..8eded03 Binary files /dev/null and b/textures/colormachine_top_active.png differ