Axiom.Animating.VertexAnimationTrack.GetInterpolatedKeyFrame C# (CSharp) Method

GetInterpolatedKeyFrame() public method

This method in fact does nothing, since interpolation is not performed inside the keyframes for this type of track.
public GetInterpolatedKeyFrame ( float time, KeyFrame kf ) : KeyFrame
time float
kf KeyFrame
return KeyFrame
		public override KeyFrame GetInterpolatedKeyFrame( float time, KeyFrame kf )
		{
			return kf;
		}