Axiom.Animating.TransformKeyFrame.TransformKeyFrame C# (CSharp) Метод

TransformKeyFrame() публичный Метод

Creates a new keyframe with the specified time. Should really be created by AnimationTrack.CreateKeyFrame instead.
public TransformKeyFrame ( AnimationTrack parent, float time ) : System
parent AnimationTrack Animation track that this keyframe belongs to.
time float Time at which this keyframe begins.
Результат System
		public TransformKeyFrame( AnimationTrack parent, float time )
			: base( parent, time )
		{
			translate = new Vector3();
			scale = Vector3.UnitScale;
			rotation = Quaternion.Identity;
		}
TransformKeyFrame