Files
BABA_YAGA/Assets/Opsive/UltimateCharacterController/Scripts/StateSystem/StateInspectorHelper.cs

21 lines
720 B
C#
Raw Normal View History

2026-06-14 23:57:44 +07:00
/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
#if UNITY_EDITOR
namespace Opsive.UltimateCharacterController.StateSystem
{
using UnityEngine;
/// <summary>
/// Inspector helper class for the UltimateCharacterControllerInspector to be able to display states within the ReorderableList.
/// </summary>
public class StateInspectorHelper : MonoBehaviour
{
[SerializeField] private int[] m_StateIndexData;
public int[] StateIndexData { get { return m_StateIndexData; } set { m_StateIndexData = value; } }
}
}
#endif