Axiom.Animating.VertexAnimationTrack.GetVertexPoseKeyFrame C# (CSharp) 메소드

GetVertexPoseKeyFrame() 공개 메소드

Returns the pose KeyFrame at the specified index.
public GetVertexPoseKeyFrame ( ushort index ) : VertexPoseKeyFrame
index ushort
리턴 VertexPoseKeyFrame
		public VertexPoseKeyFrame GetVertexPoseKeyFrame( ushort index )
		{
			if ( animationType != VertexAnimationType.Pose )
				throw new Exception( "Pose keyframes can only be created on vertex tracks of type pose, in VertexAnimationTrack::getVertexPoseKeyFrame" );
			return (VertexPoseKeyFrame)keyFrameList[ index ];
		}