Hey all,
I was playing around with importing this model into Irrlicht, however when I do, it's upside down. My other models I've made/rigged are fine. Been crawling through all of the parameters, applied all locations/rotations/scales, etc., but still no progress after about 2 hours of experimentation / googling.
Would appreciate it if someone could take a look!
https://s3.amazonaws.com/ezs3ac34a26aa3 ... nish.blend
Thanks,
Ronnie
[Blender] Model appearing upside down in Irrlicht
-
- Posts: 13
- Joined: Sat Apr 05, 2014 3:41 am
-
- Posts: 13
- Joined: Sat Apr 05, 2014 3:41 am
Re: [Blender] Model appearing upside down in Irrlicht
Spent the past 2 days looking into this more, and still no progress.
Hoping someone much more knowledgeable than I can help out!
Will post here if I make any breakthroughs, but not holding my breath at this point.
Hoping someone much more knowledgeable than I can help out!
Will post here if I make any breakthroughs, but not holding my breath at this point.
-
- Competition winner
- Posts: 688
- Joined: Mon Sep 10, 2012 8:51 am
Re: [Blender] Model appearing upside down in Irrlicht
I would just save it as upside down in Blender rather than trying to flip in in irrlicht. Then again, I know very little about Blender's file format, so maybe that has something to do with it.
If you try to flip it in irrlicht, you could change the vertices by flipping all the z-axis values in a for-loop. Sorry I can't offer more help.
If you try to flip it in irrlicht, you could change the vertices by flipping all the z-axis values in a for-loop. Sorry I can't offer more help.
Re: [Blender] Model appearing upside down in Irrlicht
Just scale in the Y-direction - node->setScale(1, -1, 1).
The model doesn't have any animation in Blender, does it?
The model doesn't have any animation in Blender, does it?
-
- Posts: 13
- Joined: Sat Apr 05, 2014 3:41 am
Re: [Blender] Model appearing upside down in Irrlicht
I did that (making it upside down in Blender)- but it was then at a weird angle in Irrlicht. No idea why.chronologicaldot wrote:I would just save it as upside down in Blender rather than trying to flip in in irrlicht. Then again, I know very little about Blender's file format, so maybe that has something to do with it.
If you try to flip it in irrlicht, you could change the vertices by flipping all the z-axis values in a for-loop. Sorry I can't offer more help.
Ended up just re-rigging it, which fixed the problem.
Thanks for the input guys!