Initial commit

This commit is contained in:
2026-02-18 12:00:34 +00:00
commit 5d353cf5fa
1947 changed files with 335322 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#if UNITY_EDITOR || PACKAGE_DOCS_GENERATION
using System;
namespace UnityEngine.InputSystem.Editor
{
/// <summary>
/// Persistent state for <see cref="InputControlPathEditor"/>.
/// </summary>
/// <remarks>
/// This class encapsulates the viewing state for an input control picker.
/// </remarks>
[Serializable]
public class InputControlPickerState
{
internal AdvancedDropdownState advancedDropdownState => m_AdvancedDropdownState;
internal bool manualPathEditMode
{
get => m_ManualPathEditMode;
set => m_ManualPathEditMode = value;
}
[SerializeField] private AdvancedDropdownState m_AdvancedDropdownState = new AdvancedDropdownState();
[SerializeField] private bool m_ManualPathEditMode;
}
}
#endif