Ready for TIMELINE_ACTIVE

This commit is contained in:
Richard Davey 2022-08-23 00:03:52 +01:00
parent 45f1bef45e
commit f8933f151e

View file

@ -417,7 +417,15 @@ var BaseTween = new Class({
{
this.parent.makeActive(this);
this.dispatchEvent(Events.TWEEN_ACTIVE, this.callbacks.onActive);
if (this.isTimeline)
{
// TIMELINE_ACTIVE?
this.dispatchEvent(Events.TWEEN_ACTIVE, this.callbacks.onActive);
}
else
{
this.dispatchEvent(Events.TWEEN_ACTIVE, this.callbacks.onActive);
}
},
/**