Texturing issue
Hey all,
I'm having a major issue with texturing, I'll show you a screenshot:

The textures (top/bottom):

Sides:

Code:
I'm having a major issue with texturing, I'll show you a screenshot:

The textures (top/bottom):

Sides:

Code:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
-- Doctor Who mod for Minetest
--
-- Main coder: Joel Leclerc
local dr_who = {}
dr_who_mod_prefix = "dr_who"
function dr_who:gen_name(n)
return dr_who_mod_prefix .. ":" .. n
end
minetest.register_node(dr_who:gen_name("tardis_box"), {
drawtype = "nodebox",
description = "TARDIS",
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
tiles = {"tardis_bottom.png", "tardis_bottom.png", "tardis_front.png", "tardis_front.png", "tardis_front.png", "tardis_front.png"},
selection_box = {
type = "fixed",
fixed = {
{ -0.5, -0.5, -0.5, 1.5, 2.5, 1.5 }
}
},
node_box = {
type = "fixed",
fixed = {
{ -0.5, -0.5, -0.5, 1.5, 2.5, 1.5 }
}
}
})