Skip to content

Commit 858d014

Browse files
committed
Add alt, ctrl, shift combination.
1 parent f0923b3 commit 858d014

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Assets/JCSUnity/Scripts/Enums/JCS_KeyCombination.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,17 @@ public enum JCS_KeyCombination
2020
{
2121
NONE,
2222

23+
/* 1 key, total of 2 keys combination. */
2324
ALT,
2425
CTRL,
2526
SHIFT,
2627

28+
/* 2 keys, total of 3 keys combination. */
2729
ALT_CTRL,
2830
ALT_SHIFT,
29-
CTRL_SHIFT,
31+
CTRL_SHIFT,
32+
33+
/* All 3 keys, total of 4 keys combination. */
34+
ALT_CTRL_SHIFT,
3035
}
3136
}

0 commit comments

Comments
 (0)