When importing sketchup models into irrlicht, the lines I had on the edges (and other places, really) disappear. Is there any way to export the models with those lines?
Where in the process are the lines lost? In exporting? Or is it that Irrlicht doesn't support them?
Btw, I'm using the .OBJ file format.
Thanks.
Importing google sketchup models with those lines?
Could you further explain what you mean by lines? I'm guessing the wireframes? You'll have to turn on wireframe display in irrlicht.
//Edit
Try with:
//Edit
Try with:
Code: Select all
yourNode->setDebugDataVisible(scene::EDS_MESH_WIRE_OVERLAY);
We've already tried that, and it didn't work.Core Xii wrote:When exporting, hit the "Options..." button and check "Export edges", that might work.
I've been told that the problem is that Irrlicht only stores information for triangles when loading a model, so any "lines" on the modelling program are lost. I believe it shouldn't be much of a problem if properly textured, though. We'll see.
Deesines' method should work, but I really think the lines should be part of the texture, they are only in the editor to help you model and should not be exported. If you are relying on them to make the model look good then you are a little confused I think. Good luck
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Oh, no. Deesine's method should work if I wanted the wireframe to be show. And that is not it. Anyways, textures will do, as previously said.BlindSide wrote:Deesines' method should work, but I really think the lines should be part of the texture, they are only in the editor to help you model and should not be exported. If you are relying on them to make the model look good then you are a little confused I think. Good luck