Search in sources :

Example 1 with WarpEffect

use of de.slikey.effectlib.effect.WarpEffect in project solinia3-core by mixxit.

the class SpecialEffectUtils method playShieldEffect.

public static void playShieldEffect(Entity entity, SoliniaActiveSpell activeSpell) {
    WarpEffect effect = new WarpEffect(StateManager.getInstance().getEffectManager());
    effect.setEntity(entity);
    effect.particle = ParticleEffect.SPELL_MOB;
    effect.color = Color.TEAL;
    effect.iterations = 1 * 20;
    effect.start();
}
Also used : WarpEffect(de.slikey.effectlib.effect.WarpEffect)

Aggregations

WarpEffect (de.slikey.effectlib.effect.WarpEffect)1