Skip to content

Commit fb5a1b9

Browse files
committed
TimerEvent - tabs to spaces
Converted tabs to spaces, for consistency
1 parent c5381f9 commit fb5a1b9

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/time/TimerEvent.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,42 +30,42 @@ Phaser.TimerEvent = function (timer, delay, tick, repeatCount, loop, callback, c
3030
* @protected
3131
* @readonly
3232
*/
33-
this.timer = timer;
33+
this.timer = timer;
3434

3535
/**
3636
* @property {number} delay - The delay in ms at which this TimerEvent fires.
3737
*/
38-
this.delay = delay;
38+
this.delay = delay;
3939

4040
/**
4141
* @property {number} tick - The tick is the next game clock time that this event will fire at.
4242
*/
43-
this.tick = tick;
43+
this.tick = tick;
4444

4545
/**
4646
* @property {number} repeatCount - If this TimerEvent repeats it will do so this many times.
4747
*/
48-
this.repeatCount = repeatCount - 1;
48+
this.repeatCount = repeatCount - 1;
4949

5050
/**
5151
* @property {boolean} loop - True if this TimerEvent loops, otherwise false.
5252
*/
53-
this.loop = loop;
53+
this.loop = loop;
5454

5555
/**
5656
* @property {function} callback - The callback that will be called when the TimerEvent occurs.
5757
*/
58-
this.callback = callback;
58+
this.callback = callback;
5959

6060
/**
6161
* @property {object} callbackContext - The context in which the callback will be called.
6262
*/
63-
this.callbackContext = callbackContext;
63+
this.callbackContext = callbackContext;
6464

6565
/**
6666
* @property {any[]} arguments - Additional arguments to be passed to the callback.
6767
*/
68-
this.args = args;
68+
this.args = args;
6969

7070
/**
7171
* @property {boolean} pendingDelete - A flag that controls if the TimerEvent is pending deletion.

0 commit comments

Comments
 (0)