Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The question is very simple: how do I render an FBX/3DS model in WebGL? I've tried googling around, but this seems like a pretty new area.

share|improve this question

2 Answers

up vote 2 down vote accepted

You can transfer it to Maya via FBX and then use www.inka3d.com

share|improve this answer

As i've replied to you on another question, currently there are lots of problems that arise when you try to use WebGL. Chunked 3D formats that aren't UTF-8 "decodable" (text) can't be consistently loaded without browser trickery with buffers (which aren't neither standard nor API/stable). In this case, you should implement your own 3DS loader on Javascript and make it run on both Firefox and Chrome (although the buffers trick isn't useful on chrome AFAIK).

Your best bet is to use a text format like OBJ or ASE. I myself have begun work on a JSON exporter for blender here that works nicely with WebGL, but of course, it is only useful if you're using Blender 2.5+.

share|improve this answer
So there's nothing that helps me getting a FBX/3DS model to WebGL except doing an importer on my own? – Tower Aug 11 '11 at 16:39
Indeed, you aren't going anywhere without a custom importer when it comes down to WebGL. You probably could get around it using ASE though. – Chiguireitor Aug 11 '11 at 22:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.