1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-16 19:51:50 +00:00
tobspr_shapez.io/src/js/game/hud/parts/watermark.js

28 lines
905 B
JavaScript
Raw Normal View History

import { BaseHUDPart } from "../base_hud_part";
import { DrawParameters } from "../../../core/draw_parameters";
export class HUDWatermark extends BaseHUDPart {
createElements() {}
initialize() {}
/**
*
* @param {DrawParameters} parameters
*/
drawOverlays(parameters) {
const w = this.root.gameWidth;
parameters.context.fillStyle = "#f77";
2020-05-21 16:03:57 +00:00
parameters.context.font = "bold " + this.root.app.getEffectiveUiScale() * 17 + "px GameFont";
parameters.context.textAlign = "center";
parameters.context.fillText("DEMO VERSION", w / 2, 50);
2020-05-21 16:03:57 +00:00
parameters.context.font = "bold " + this.root.app.getEffectiveUiScale() * 12 + "px GameFont";
parameters.context.textAlign = "center";
parameters.context.fillText("Please consider to buy the full version!", w / 2, 90);
parameters.context.textAlign = "left";
}
}