stop method
Tells the mixer to deactivate this action. This method can be chained.
The action will be immediately stopped and completely reset.
Note: You can stop all active actions on the same mixer in one go via
mixer.stopAllAction
.
Implementation
AnimationAction stop() {
mixer.deactivateAction(this);
return reset();
}