🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

beginning animation

Started by
6 comments, last by ManaStone 22 years, 6 months ago
Could somebody give me a brief summary of how to animate a character using D3D? The documentation on the sdk isn't that clear on it. All I know is that you use bones to do it. What is the hierarchy of a mesh? Does it include all the poses to use in an animation sequence? Edited by - ManaStone on December 17, 2001 2:44:29 PM
-----------------------------Download my real time 3D RPG.
Advertisement
As far as I know, you need to model those poses with a seperate 3d modeling program and save it as a .x file. I personally use a premade 3d engine, which wraps directx so I never have to directly deal with it.
*********-.o-**********
So I have to save every pose as an .X file? Won''t that take up a lot of RAM?
-----------------------------Download my real time 3D RPG.
I guess it would, but I don''t know much D3D programming . I think your best bet is to ask at the DirectX forum, and I''d probably use a different format than .x, since it has some nasty limitations.
*********-.o-**********
quote: Original post by ManaStone
So I have to save every pose as an .X file? Won''t that take up a lot of RAM?


This is but one way to do animation. It is the more traditional way, but skeletal animation is used frequently as well. With skeletal animation you only save the bone animation data and the engine does the animating.


--
http://www.3dcgi.com/
Is there a tutorial anywhere on the web on how to do skeletal animation?
-----------------------------Download my real time 3D RPG.
Check this out: http://rsn.gamedev.net/tutorials/ms3danim.asp
Thanks a bunch!
-----------------------------Download my real time 3D RPG.

This topic is closed to new replies.

Advertisement