Re: Add "o" to OBJWriter output
For anyone wondering, this can be wordarounded in Blender by simply turning on backface culling for the ceiling material.The only thing I can see to change now is to have rooms separate the floor and ceiling, otherwise you can't easily see the aerial view without messing around
Code: Select all
Room3D room3D = new Room3D(room, home, false, true);
Node floor = room3D.getChild(0);
writer.writeNode(floor);
if (room.isCeilingVisible()) {
Node ceiling = room3D.getChild(1);
writer.writeNode(ceiling);
}