Axiom.Animating.Animation.CreateNumericTrack C# (CSharp) Method

CreateNumericTrack() public method

Creates an NumericAnimationTrack.
public CreateNumericTrack ( ushort handle ) : NumericAnimationTrack
handle ushort Handle to give the track, used for accessing the track later.
return NumericAnimationTrack
		public NumericAnimationTrack CreateNumericTrack( ushort handle )
		{
			NumericAnimationTrack track = new NumericAnimationTrack( this, handle );

			// add the track to the list
			numericTrackList[ handle ] = track;

			return track;
		}

Same methods

Animation::CreateNumericTrack ( ushort handle, Axiom.Animating.AnimableValue animable ) : NumericAnimationTrack