Animation.Rewind
Rewind(name: string): void;
Description

Rewinds the animation named name.

	// Rewind the walk animation to the start
	animation.Rewind("walk");
Rewind(): void;
Description

Rewinds all animations.

	// Rewind all animations to the start
	animation.Rewind();