mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 04:33:31 +00:00
The Time.Timeline
class didn't show as extending the Event Emitter, or have config
as an optional argument in the docs / TS defs. Fix #6673
This commit is contained in:
parent
828de95e2f
commit
95df650f71
1 changed files with 2 additions and 1 deletions
|
@ -81,12 +81,13 @@ var Events = require('./events');
|
||||||
* {@link Phaser.Types.Time.TimelineEventConfig} typedef for more details.
|
* {@link Phaser.Types.Time.TimelineEventConfig} typedef for more details.
|
||||||
*
|
*
|
||||||
* @class Timeline
|
* @class Timeline
|
||||||
|
* @extends Phaser.Events.EventEmitter
|
||||||
* @memberof Phaser.Time
|
* @memberof Phaser.Time
|
||||||
* @constructor
|
* @constructor
|
||||||
* @since 3.60.0
|
* @since 3.60.0
|
||||||
*
|
*
|
||||||
* @param {Phaser.Scene} scene - The Scene which owns this Timeline.
|
* @param {Phaser.Scene} scene - The Scene which owns this Timeline.
|
||||||
* @param {Phaser.Types.Time.TimelineEventConfig|Phaser.Types.Time.TimelineEventConfig[]} config - The configuration object for this Timeline Event, or an array of them.
|
* @param {Phaser.Types.Time.TimelineEventConfig|Phaser.Types.Time.TimelineEventConfig[]} [config] - The configuration object for this Timeline Event, or an array of them.
|
||||||
*/
|
*/
|
||||||
var Timeline = new Class({
|
var Timeline = new Class({
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue