OGRE3D Mesh and Character importer

And what praytell is OGRE? From the OGRE site:

OGRE (Object-Oriented Graphics Rendering Engine) is a scene-oriented, flexible 3D engine written in C++ designed to make it easier and more intuitive for developers to produce applications utilising hardware-accelerated 3D graphics. The class library abstracts all the details of using the underlying system libraries like Direct3D and OpenGL and provides an interface based on world objects and other intuitive classes.

Luckily, Ogre has a wiki that should both inform and entice you. And so there are no surprises when you take a look and want to start using Ogre, I will add this little snippet fron the wiki:

Yes, you will need to know how to program. Ogre is not a game shell or scripting language like many game development kits out there. It will require more knowledge to use properly, but it is also many times more powerful than a scripting kit will be. A good knowledge of C++ is essential, as is an understanding of object-oriented programming.

Advertisement