Axiom.Animating.VertexAnimationTrack.GetVertexMorphKeyFrame C# (CSharp) Méthode

GetVertexMorphKeyFrame() public méthode

Returns the morph KeyFrame at the specified index.
public GetVertexMorphKeyFrame ( ushort index ) : VertexMorphKeyFrame
index ushort
Résultat VertexMorphKeyFrame
		public VertexMorphKeyFrame GetVertexMorphKeyFrame( ushort index )
		{
			if ( animationType != VertexAnimationType.Morph )
				throw new Exception( "Morph keyframes can only be created on vertex tracks of type morph, in VertexAnimationTrack::getVertexMorphKeyFrame" );
			return (VertexMorphKeyFrame)keyFrameList[ index ];
		}