[Solved] Effect Animation

Status
Not open for further replies.
I just want to know why this doesnt work...
JASS:
call DestroyEffect(AddSpecialEffectTarget(SFX, .missile, "origin"))
call KillUnit(.missile)

The effect shows but very quick and incomplete for this one;
JASS:
call DestroyEffect(AddSpecialEffectTarget(SFX, .missile, "origin"))
call UnitApplyTimedLife(.missile, 'BTLF', 0.1)

But this works;
JASS:
call DestroyEffect(AddSpecialEffectTarget(SFX, .missile, "origin"))
call UnitApplyTimedLife(.missile, 'BTLF', 2.0)

Perhaps it depends on how long the effect will last or animation of effect needs precise timing?...
 
Status
Not open for further replies.
Back
Top