hello, i habe a little issue. may be is a newbie problem.
i want stop an animation when it finish.
i tried using LoopMode();
[java]LoopMode.DontLoop[/java]
here is my code.
[java]
public void ejecutarAimacion(String nombreAnimacion, Spatial nodoParaAnimar){
control = nodoParaAnimar.getControl(AnimControl.class);
channel = control.createChannel();
control.addListener(this);
channel.setLoopMode(LoopMode.DontLoop);
channel.setAnim(“move”);
}[/java]