Apoc1991
Apoc1991

Reputation: 41

how to export object from maya into opengl application

Im learning openGL, basically ive created an object in Maya, im wondering how i go about exporting it, and loading it into my application ive created (it is simply a plain square room with different coloured walls at the moment.

Upvotes: 0

Views: 818

Answers (1)

Cubic
Cubic

Reputation: 15683

OpenGL doesn't have the concept of models. You'll have to write your own model loader, or use one that's already out there. If you opt for writing your own, you should probably export as .obj, that's a fairly simple text based format.

Upvotes: 1

Related Questions