diff options
author | sanine <sanine.not@pm.me> | 2022-10-03 21:12:22 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-10-03 21:12:22 -0500 |
commit | c4241b7cc97e9b0a341d54f2a4d172500c1d5399 (patch) | |
tree | 7a9d53c14d31fcc6deffd910a0604f51524faf2a /demo/bouncing_ball | |
parent | 99574e9e679208d629884b924424ed8a54423920 (diff) |
add window.getKey
Diffstat (limited to 'demo/bouncing_ball')
-rw-r--r-- | demo/bouncing_ball/main.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/demo/bouncing_ball/main.lua b/demo/bouncing_ball/main.lua index ecbff7b..f98a032 100644 --- a/demo/bouncing_ball/main.lua +++ b/demo/bouncing_ball/main.lua @@ -98,6 +98,10 @@ local dtAverage = 0 local dtCount = 0 while not window.shouldClose(w) do + if window.getKey(w, window.KEY_ESCAPE) == window.PRESS then + break + end + local newTime = window.getTime() local dt = newTime - time dtAverage = dtAverage + dt |