Skip to content

Commit

Permalink
Minor clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
a-crowell committed Jun 20, 2024
1 parent e33c803 commit 125b44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fission/src/systems/input/InputSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class InputSystem extends WorldSystem {
}
}

public Update(_: number): void {InputSystem
public Update(_: number): void {
InputSystem._currentModifierState = { ctrl: InputSystem.isKeyPressed("ControlLeft") || InputSystem.isKeyPressed("ControlRight"), alt: InputSystem.isKeyPressed("AltLeft") || InputSystem.isKeyPressed("AltRight"), shift: InputSystem.isKeyPressed("ShiftLeft") || InputSystem.isKeyPressed("ShiftRight"), meta: InputSystem.isKeyPressed("MetaLeft") || InputSystem.isKeyPressed("MetaRight") }
}

Expand Down

0 comments on commit 125b44e

Please sign in to comment.