finish events

This commit is contained in:
2025-10-29 13:34:54 +02:00
parent 93e03b4843
commit 127f71f345
8 changed files with 104 additions and 82 deletions
+13 -1
View File
@@ -139,7 +139,19 @@ class PointerControls {
}
get moving(){
return this.moveForward || this.moveBackward || this.moveLeft || this.moveRight;
return this.moveForward || this.moveBackward;
}
get rotating(){
return this.rotateLeft || this.rotateRight;
}
get motion(){
return this.moving || this.rotating;
}
get running(){
return this.moving && this.kb.ShiftLeft;
}
}