mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 09:48:18 +00:00
Ready for TIMELINE_ACTIVE
This commit is contained in:
parent
45f1bef45e
commit
f8933f151e
1 changed files with 9 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue