Added AnimComposer.hasAnimClip()

This commit is contained in:
Ali-RS 2019-10-24 10:26:56 +03:30
parent d4c9a9ad1e
commit 2c6161ecd8

@ -32,6 +32,10 @@ public class AnimComposer extends AbstractControl {
layers.put(DEFAULT_LAYER, new Layer(this)); layers.put(DEFAULT_LAYER, new Layer(this));
} }
public boolean hasAnimClip(String name) {
return animClipMap.containsKey(name);
}
/** /**
* Retrieve an animation from the list of animations. * Retrieve an animation from the list of animations.
* *