nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame
279 Bytes
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
}
}