소스 검색

Check ctrl/shift state when focusing and unfocusing the window

tags/v0.1.0
Fen Dweller 5 년 전
부모
커밋
cadb3d470f
No known key found for this signature in database GPG 키 ID: E80B35A6F11C3656
2개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. +9
    -0
      gorge.css
  2. +9
    -0
      gorge.js

+ 9
- 0
gorge.css 파일 보기

@@ -255,6 +255,15 @@ button {
width: 50%;
}

#resources-area {
top: 15%;
left: 5%;
}

#tasty-micro {
width: 30vw;
}

#upgrades-list {
max-height: 25vh !important;
}


+ 9
- 0
gorge.js 파일 보기

@@ -1316,6 +1316,15 @@ window.onload = function () {
setTimeout(autosave, 60000);
}

window.onblur = function() {
controlHeld = false;
shiftHeld = false;
}

window.onfocus = function() {
window.dispatchEvent(new Event("keydown"))
}

function autosave() {
saveGame();
let x = window.innerWidth / 2;


불러오는 중...
취소
저장