Axiom.Core.SceneManager.GetAnimation C# (CSharp) Method

GetAnimation() public method

Retreives the animation with the specified name.
public GetAnimation ( string name ) : Animation
name string
return Axiom.Animating.Animation
		public virtual Animation GetAnimation( string name )
		{
			Animation animation = this.animationList[ name ];
			return animation;
		}
SceneManager