This commit is contained in:
2025-01-17 13:10:42 +01:00
commit 4536213c91
15115 changed files with 1442174 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
using System.Runtime.InteropServices;
using UnityEngine.InputSystem.Utilities;
namespace UnityEngine.InputSystem.LowLevel
{
/// <summary>
/// Notifies about the removal of an input device.
/// </summary>
/// <remarks>
/// Device that got removed is the one identified by <see cref="InputEvent.deviceId"/>
/// of <see cref="baseEvent"/>.
/// </remarks>
[StructLayout(LayoutKind.Explicit, Size = InputEvent.kBaseEventSize)]
public struct DeviceRemoveEvent : IInputEventTypeInfo
{
public const int Type = 0x4452454D;
/// <summary>
/// Common event data.
/// </summary>
[FieldOffset(0)]
public InputEvent baseEvent;
public FourCC typeStatic => Type;
public unsafe InputEventPtr ToEventPtr()
{
fixed(DeviceRemoveEvent * ptr = &this)
{
return new InputEventPtr((InputEvent*)ptr);
}
}
public static DeviceRemoveEvent Create(int deviceId, double time = -1)
{
var inputEvent =
new DeviceRemoveEvent {baseEvent = new InputEvent(Type, InputEvent.kBaseEventSize, deviceId, time)};
return inputEvent;
}
}
}