Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

IInputDeviceCommandInfo.cs 479B

123456789101112131415
  1. using UnityEngine.InputSystem.Utilities;
  2. namespace UnityEngine.InputSystem.LowLevel
  3. {
  4. /// <summary>
  5. /// Interface implemented by all input device command structs which reports the data format identifier of the command.
  6. /// </summary>
  7. public interface IInputDeviceCommandInfo
  8. {
  9. /// <summary>
  10. /// The data format identifier of the device command as a <see cref="FourCC"/> code.
  11. /// </summary>
  12. FourCC typeStatic { get; }
  13. }
  14. }