Fix game on small resolutions

pull/1460/head
tobspr 2 years ago
parent 8454a782b4
commit e4f8d3b569

@ -168,7 +168,11 @@ export class Camera extends BasicSerializableObject {
* Finds a good initial zoom level * Finds a good initial zoom level
*/ */
findInitialZoom() { findInitialZoom() {
const desiredWorldSpaceWidth = 18 * globalConfig.tileSize; let desiredWorldSpaceWidth = 18 * globalConfig.tileSize;
if (window.innerWidth < 1000) {
desiredWorldSpaceWidth = 12 * globalConfig.tileSize;
}
const zoomLevelX = this.root.gameWidth / desiredWorldSpaceWidth; const zoomLevelX = this.root.gameWidth / desiredWorldSpaceWidth;
const zoomLevelY = this.root.gameHeight / desiredWorldSpaceWidth; const zoomLevelY = this.root.gameHeight / desiredWorldSpaceWidth;

Loading…
Cancel
Save