deadlocker8 / Bricked

Breakout implementation in JavaFX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

better paddle key movement

deadlocker8 opened this issue · comments

paddle doesn't move instant when holding key

boolean rightPressed
onKeyPressed -> start Thread / notify (only if not running)
onKeyReleased -> stop Thread / wait

if (playedHandlers.isEmpty()) {
synchronized (positionThread) {
positionThread.wait();
}
}