暂无描述
您最多选择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. }