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

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

Creates a new NumericAnimationTrack automatically associated with a Numeric.
public CreateNumericTrack ( ushort handle, Axiom.Animating.AnimableValue animable ) : NumericAnimationTrack
handle ushort Handle to give the track, used for accessing the track later.
animable Axiom.Animating.AnimableValue AnimableValue which will be affected by this track.
Результат NumericAnimationTrack
		public NumericAnimationTrack CreateNumericTrack( ushort handle, AnimableValue animable )
		{
			// create a new track and set it's target
			NumericAnimationTrack track = CreateNumericTrack( handle );
			track.TargetAnimable = animable;

			return track;
		}

Same methods

Animation::CreateNumericTrack ( ushort handle ) : NumericAnimationTrack