Sgt. Conker We are "absolutely fine"

7Mar/100

KiloWatt Animation for XNA


Jwatte has tweeted news prediction of a new version of his KiloWatt animation library and Pre-release bits are here.

"This is the third-and-a-half release of the KiloWatt Animation library. It is intended as a companion to the kW X-port 3ds Max X file exporter, to be used with Microsoft XNA Game Studio. This release is for version 3.0/3.1 for Windows and Xbox 360. Sorry, no Zune support :-) "

He goes on to explain how this is different to the XNA Skinning sample on the creators website

The KiloWatt Animation Library is different from the XNA Skinning sample code in several ways, including:

  • KiloWatt Animation stores animation keyframes as position, rotation and scale (for a total of 10 floats), instead of the full matrix used by the Animation Components.
  • KiloWatt Animation removes unnecessary keyframes (down to a tolerance that you can specify), for a usually quite significant savings in file size.
  • KiloWatt Animation does interpolation between animation keyframes using quaternions, which means that slow-motion and varispeed playback will still look smooth.
  • KiloWatt Animation supports composition (blending) of animations to generate the final output pose for a given Model.
  • KiloWatt Animation replaces the Effect used for your Model only when you tell it to.
  • KiloWatt Animation does not make any specific demands of your geometry; you can (and should) use it to animate rigid objects such as windmills, catapults etc. in addition to skinned meshes.
6Feb/100

sgMotion v1.0.0 Released

Tom Looman released his sgMotion library to CodePlex. Says Tom:

sgMotion is an animation library (based on XNAnimation by Bruno Evangelista) and provides full integration with both the Sunburn Engine and the Sunburn Framework.

More at the source.

27Jan/100

Enhanced Crowd Rendering in Dead Shift

The guys behind Dead Shift just posted a new video, accompanied by a discussion about how they enhanced a technique for crowd rendering taken from GPU Gems 3.
You can watch the demonstration video below, and then go and read all the details.

15Nov/090

Article : Simple 2D Animated Sprite

by Casey Young

This article describes how to animate a 2D sprite sheet with XNA.

I have decided to break this article into seperate pages, starting with the basics, and then progressing towards making a simple animated sprite class.

This first part is a basic tutorial on how to make a simple animated sprite using a set of images. There are better ways to animate sprites, but this will get you the basics on how it is accomplished, so the code is simple, and not optimized.