mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 04:33:31 +00:00
Fix #6773 Tweens in a chain fire onActive twice per chain iteration
This commit is contained in:
parent
0017e7bcf7
commit
112ca0dbf1
1 changed files with 0 additions and 4 deletions
|
@ -89,8 +89,6 @@ var TweenChain = new Class({
|
|||
this.setActiveState();
|
||||
}
|
||||
|
||||
this.dispatchEvent(Events.TWEEN_ACTIVE, 'onActive');
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
|
@ -490,8 +488,6 @@ var TweenChain = new Class({
|
|||
this.currentTween = this.data[index];
|
||||
|
||||
this.currentTween.setActiveState();
|
||||
|
||||
this.currentTween.dispatchEvent(Events.TWEEN_ACTIVE, 'onActive');
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue