Skip to content

Commit 4e27c1a

Browse files
authored
Update 105-keyboard-state.md
fix broken link to keyboard events page
1 parent c4c4be6 commit 4e27c1a

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)