Files

13 lines
279 B
C#
Raw Permalink Normal View History

2026-01-08 16:50:20 +00:00
namespace UnityEngine.InputSystem
{
/// <summary>
/// Enum used to identity the change type for the <see cref="InputSystem.onLayoutChange"/> event.
/// </summary>
public enum InputControlLayoutChange
{
Added,
Removed,
Replaced
}
}