phaser4-rex-plugins
Version:
25 lines (21 loc) • 603 B
JavaScript
import BaseClock from './BaseClock.js';
class Clock extends BaseClock {
startTicking() {
super.startTicking();
this.scene.sys.events.on('update', this.update, this);
}
stopTicking() {
super.stopTicking();
if (this.scene) { // Scene might be destoryed
this.scene.sys.events.off('update', this.update, this);
}
}
update(time, delta) {
if ((!this.isRunning) || (this.timeScale === 0)) {
return this;
}
this.tick(delta);
return this;
}
}
export default Clock;