You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Packages/com.unity.inputsystem/CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,9 @@ however, it has to be formatted properly to pass verification tests.
19
19
- Pinned Touch Samples sample package dependencies to avoid errors with Cinemachine 3.x and Probuilder 6.x. [ISXB-1245](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1245)
20
20
- Fixed an issue where dropdown menu for Path in Input Actions Editor could not be selected from any button position. [ISXB-1309](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1309)
21
21
22
+
### Added
23
+
- Added support of F13-F24 keys. [UUM-44328](https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-44328)
////FIXME: This should never have been a Key but rather just an extra button or state on keyboard
862
-
// Not exactly a key, but binary data sent by the Keyboard to say if IME is being used.
863
-
IMESelected
893
+
/// <summary>
894
+
/// Don't use this. This is a dummy key that is only used internally to represent the IME selected state.
895
+
/// Will be removed in the future.
896
+
/// </summary>
897
+
[Obsolete("Don't use this. This is a dummy key that is only used internally to represent the IME selected state. Will be removed in the future.",true)]
898
+
IMESelected,
899
+
900
+
/// <summary>
901
+
/// The <see cref="Keyboard.f13Key"/>.
902
+
/// </summary>
903
+
F13,
904
+
905
+
/// <summary>
906
+
/// The <see cref="Keyboard.f14Key"/>.
907
+
/// </summary>
908
+
F14,
909
+
910
+
/// <summary>
911
+
/// The <see cref="Keyboard.f15Key"/>.
912
+
/// </summary>
913
+
F15,
914
+
915
+
/// <summary>
916
+
/// The <see cref="Keyboard.f16Key"/>.
917
+
/// </summary>
918
+
F16,
919
+
920
+
/// <summary>
921
+
/// The <see cref="Keyboard.f17Key"/>.
922
+
/// </summary>
923
+
F17,
924
+
925
+
/// <summary>
926
+
/// The <see cref="Keyboard.f18Key"/>.
927
+
/// </summary>
928
+
F18,
929
+
930
+
/// <summary>
931
+
/// The <see cref="Keyboard.f19Key"/>.
932
+
/// </summary>
933
+
F19,
934
+
935
+
/// <summary>
936
+
/// The <see cref="Keyboard.f20Key"/>.
937
+
/// </summary>
938
+
F20,
939
+
940
+
/// <summary>
941
+
/// The <see cref="Keyboard.f21Key"/>.
942
+
/// </summary>
943
+
F21,
944
+
945
+
/// <summary>
946
+
/// The <see cref="Keyboard.f22Key"/>.
947
+
/// </summary>
948
+
F22,
949
+
950
+
/// <summary>
951
+
/// The <see cref="Keyboard.f23Key"/>.
952
+
/// </summary>
953
+
F23,
954
+
955
+
/// <summary>
956
+
/// The <see cref="Keyboard.f24Key"/>.
957
+
/// </summary>
958
+
F24,
959
+
960
+
/// <summary>
961
+
/// Don't use this. This is a dummy key that is only used internally to represent the IME selected state.
962
+
/// Will be removed in the future.
963
+
/// FIXME: This should never have been a Key but rather just an extra button or state on keyboard
964
+
/// Not exactly a key, but binary data sent by the Keyboard to say if IME is being used.
965
+
/// </summary>
966
+
//InternalForIMESelected = 127,
967
+
}
968
+
969
+
internalstaticclassKeyEx
970
+
{
971
+
internalconstKeyIMESelected=(Key)111;//IMESelected value
972
+
internalconstKeyRemappedIMESelected=(Key)127;//IMESelected value
0 commit comments