phaser4-rex-plugins
Version:
22 lines (19 loc) • 619 B
JavaScript
import BasePlayer from '../tcrp/Player.js';
import ArcadeStepClock from '../../../time/clock/ArcadeStepClock';
class Player extends BasePlayer {
constructor(parent, config) {
if (config === undefined) {
config = {};
}
config.clock = new ArcadeStepClock(parent);
config.timeUnit = 0; // Force timeUnit to 0
config.dtMode = 0; // Force dtMode to 0
super(parent, config);
}
load(commands, scope, config) {
// No config argument
super.load(commands, scope);
return this;
}
}
export default Player;