471472473474475476477478479480481
*/ @Override protected void onComplete() { super.onComplete(); effectFinished = true; fireEvent(new EffectCompletedEvent()); if(looping){ DeferredCommand.addCommand(new Command(){ public void execute() { play(0.0, 1.0); }
688689690691692693694695
isInitialised = true; } double val = interpolate(progress); onUpdate(val); if (val == 0) fireEvent(new EffectStartingEvent()); else if (val == 0) fireEvent(new EffectCompletedEvent()); else fireEvent(new EffectSteppingEvent()); }