説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

InputControlLayoutChange.cs 279B

123456789101112
  1. namespace UnityEngine.InputSystem
  2. {
  3. /// <summary>
  4. /// Enum used to identity the change type for the <see cref="InputSystem.onLayoutChange"/> event.
  5. /// </summary>
  6. public enum InputControlLayoutChange
  7. {
  8. Added,
  9. Removed,
  10. Replaced
  11. }
  12. }