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

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

Applies an animation track at a certain position to the target node.
When a track has bee associated with a target node, you can eaisly apply the animation to the target by calling this method.
public Apply ( float time, float weight, bool accumulate, float scale ) : void
time float The time position in the animation to apply.
weight float The influence to give to this track, 1.0 for full influence, less to blend with /// other animations.
accumulate bool
scale float
Результат void
	    public override void Apply( float time, float weight, bool accumulate, float scale )
		{
			// call ApplyToNode with our target node
			ApplyToNode( target, time, weight, accumulate, scale );
		}