This commit is contained in:
biglyderv 2024-12-26 00:13:50 -05:00
parent 42773ce1b6
commit 575adfa6af
5 changed files with 58 additions and 144 deletions

View file

@ -1,5 +1,5 @@
const mapWidth = 10000;
const mapHeight = 10000;
const mapWidth = 16000;
const mapHeight = 16000;
let assets = [
'base.png',
@ -20,7 +20,7 @@ let vel = [0, 0];
let center = [0, 0];
let lastPos = [0, 0];
let isMouse = false;
let zoom = 1;
let zoom = 5;
let timer = 0;
let id = '';
@ -134,7 +134,7 @@ window.addEventListener('mousedown', mouseDown);
window.addEventListener('mouseup', mouseUp);
function copy() {
let addr = 'play.xuyezo.net';
let addr = 'play.dervland.net';
navigator.clipboard.writeText(addr);
alert(addr);
}