This commit is contained in:
2026-06-11 21:18:57 +07:00
parent 76e098d960
commit 97ae65f446
5779 changed files with 974 additions and 4758514 deletions

View File

@@ -1,21 +0,0 @@
/// ---------------------------------------------
/// 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