You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tobspr_shapez.io/src/js/game/time/fast_forward_game_speed.js

17 lines
388 B

import { BaseGameSpeed } from "./base_game_speed";
import { globalConfig } from "../../core/config";
export class FastForwardGameSpeed extends BaseGameSpeed {
static getId() {
return "fast-forward";
}
getTimeMultiplier() {
return globalConfig.fastForwardSpeed;
}
getMaxLogicStepsInQueue() {
return 3 * globalConfig.fastForwardSpeed;
}
}