Skip to content

Commit abfa62e

Browse files
authored
Merge pull request #63 from rozkerim/patch-1
fix broken link from keyboard state to keyboard events page
2 parents c4c4be6 + 4e27c1a commit abfa62e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorial/src/105-keyboard-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Keyboard State
22

3-
You can think of keyboard _state_ as a snapshot of exactly which keys are pressed (or not) at the start of the frame. Keyboard state is best for interactive things like character movement. If you need to process every single keystroke (like when entering text), check out the [Keyboard Event](110-keyboard-event.md) section instead.
3+
You can think of keyboard _state_ as a snapshot of exactly which keys are pressed (or not) at the start of the frame. Keyboard state is best for interactive things like character movement. If you need to process every single keystroke (like when entering text), check out the [Keyboard Event](110-keyboard-events.md) section instead.
44

55
The `Engine.keyboard_state` field is a struct through which you query the state of the key(s) you are interested in.
66

0 commit comments

Comments
 (0)