@Deprecated
public interface AnimEventListener
AnimEventListener
allows user code to receive various
events regarding an AnimControl. For example, when an animation cycle is done.Modifier and Type | Method and Description |
---|---|
void |
onAnimChange(AnimControl control,
AnimChannel channel,
java.lang.String animName)
Deprecated.
Invoked when an animation is set to play by the user on the given channel.
|
void |
onAnimCycleDone(AnimControl control,
AnimChannel channel,
java.lang.String animName)
Deprecated.
Invoked when an animation "cycle" is done.
|
void onAnimCycleDone(AnimControl control, AnimChannel channel, java.lang.String animName)
control
- The control to which the listener is assigned.channel
- The channel being alteredanimName
- The new animation that is done.void onAnimChange(AnimControl control, AnimChannel channel, java.lang.String animName)
control
- The control to which the listener is assigned.channel
- The channel being alteredanimName
- The new animation name set.