Firstborn/Library/PackageCache/com.unity.inputsystem@1.5.1/InputSystem/Editor/ControlPicker/InputControlPickerState.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

28 lines
815 B
C#

#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