use of com.talosvfx.talos.runtime.render.drawables.SpriteAnimationDrawable in project talos by rockbite.
the class FlipbookModule method defineSlots.
@Override
protected void defineSlots() {
phaseVal = createInputSlot(PHASE);
spriteAnimation = new SpriteAnimationDrawable();
outputValue = (DrawableValue) createOutputSlot(OUTPUT, new DrawableValue());
userDrawable = new DrawableValue();
userDrawable.setEmpty(true);
}
Aggregations