mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
Add documentation to KeyCode
for Mac users (#3331)
# Objective `KeyCode::*Win` and `KeyCode::*Alt` might be confusing for some Mac users. ## Solution Added some small documentation to clarify the mappings for those developing on a Mac. ## Additional Context Related issue: #3240
This commit is contained in:
parent
70c9165886
commit
add1818a05
1 changed files with 4 additions and 0 deletions
|
@ -177,10 +177,12 @@ pub enum KeyCode {
|
|||
Grave,
|
||||
Kana,
|
||||
Kanji,
|
||||
/// The left alt key. Maps to left option on Mac.
|
||||
LAlt,
|
||||
LBracket,
|
||||
LControl,
|
||||
LShift,
|
||||
/// The left Windows key. Maps to left Command on Mac.
|
||||
LWin,
|
||||
Mail,
|
||||
MediaSelect,
|
||||
|
@ -201,10 +203,12 @@ pub enum KeyCode {
|
|||
PlayPause,
|
||||
Power,
|
||||
PrevTrack,
|
||||
/// The right alt key. Maps to right option on Mac.
|
||||
RAlt,
|
||||
RBracket,
|
||||
RControl,
|
||||
RShift,
|
||||
/// The right Windows key. Maps to right Command on Mac.
|
||||
RWin,
|
||||
Semicolon,
|
||||
Slash,
|
||||
|
|
Loading…
Reference in a new issue