Object doesn't show "inside" textures
Hi everyone,
I'm trying to make my own boat mod (based on minetest boat) and created a model with blender for it. Sadly it doesn't show the textures completely:
It shows only the texture from outside, but not inside.
My Code:
Did you get an idea? Thank's a lot! :)
cheers
schnico
I'm trying to make my own boat mod (based on minetest boat) and created a model with blender for it. Sadly it doesn't show the textures completely:
It shows only the texture from outside, but not inside.
My 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
local boat = {
physical = true,
collisionbox = {-0.5, -0.35, -0.5, 0.5, 0.3, 0.5},
visual = "mesh",
mesh = "simple.obj",
textures = {"simply.png"},
visual_size = {x=10, y=10},
driver = nil,
v = 0,
last_v = 0,
removed = false,
seats = {
[1] = {
pos=nil,
player=nil,
},
[2] = {
pos=nil,
player=nil,
},
[3] = {
pos=nil,
player=nil,
},
[4] = {
pos=nil,
player=nil,
},
}
}
Did you get an idea? Thank's a lot! :)
cheers
schnico