Tom J Nowell
Tom J Nowell

Reputation: 9981

C++ 3D Model Animation libraries?

I have my own game engine using C++ and OpenGL, but I have models with individual pieces that can be moved, and Im not sure how to animate them without hardcoding it. Are there any libraries that would provide a solution via scripts or IK or some other animation technique without resorting to a game engine such as Ogre?

Upvotes: 3

Views: 5418

Answers (2)

sean riley
sean riley

Reputation: 2733

If you want physics, there are many open source physics engines, such as ODE and box2D.

If you want game-like behaviors, an embedding scripting language like lua is common for game engines.

Upvotes: 0

U62
U62

Reputation: 4363

Cal3d could be an option. Skinned character animation without needing to import a whole engine.

Upvotes: 3

Related Questions