1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-23 15:40:18 +02:00

use mesh node for analog clocks

This commit is contained in:
Vanessa Ezekowitz
2014-12-13 18:21:52 -05:00
parent 6bf754d38d
commit a72f806130
14 changed files with 246 additions and 18 deletions

View File

@ -1,14 +1,8 @@
minetest.register_node("homedecor:analog_clock_plastic", {
description = "Analog clock (plastic)",
drawtype = "nodebox",
tiles = {
"homedecor_analog_clock_plastic_edges.png",
"homedecor_analog_clock_plastic_edges.png",
"homedecor_analog_clock_plastic_edges.png",
"homedecor_analog_clock_plastic_edges.png",
"homedecor_analog_clock_plastic_back.png",
"homedecor_analog_clock_plastic_front.png"
},
drawtype = "mesh",
mesh = "homedecor_analog_clock.obj",
tiles = { "homedecor_analog_clock_plastic.png" },
inventory_image = "homedecor_analog_clock_plastic_inv.png",
paramtype = "light",
paramtype2 = "facedir",
@ -31,15 +25,9 @@ minetest.register_node("homedecor:analog_clock_plastic", {
minetest.register_node("homedecor:analog_clock_wood", {
description = "Analog clock (wood)",
drawtype = "nodebox",
tiles = {
"homedecor_analog_clock_wood_edges.png",
"homedecor_analog_clock_wood_edges.png",
"homedecor_analog_clock_wood_edges.png",
"homedecor_analog_clock_wood_edges.png",
"homedecor_analog_clock_wood_back.png",
"homedecor_analog_clock_wood_front.png"
},
drawtype = "mesh",
mesh = "homedecor_analog_clock.obj",
tiles = { "homedecor_analog_clock_wood.png" },
inventory_image = "homedecor_analog_clock_wood_inv.png",
paramtype = "light",
paramtype2 = "facedir",