ProjectDDD/Assets/_DDD/_Scripts/RestaurantCharacter/RestaurantCharacterAnimation.cs
NTG 6d9e7a7f51 data, state 관리 로직 전부 수정
ScriptableSingleton 모두 삭제
2025-08-18 19:48:36 +09:00

30 lines
571 B
C#

using UnityEngine;
namespace DDD
{
public class RestaurantCharacterAnimation : MonoBehaviour
{
protected SpineController _spineController;
protected virtual void Awake()
{
_spineController = GetComponent<SpineController>();
}
protected virtual void Start()
{
}
protected virtual void OnDestroy()
{
}
public bool IsPlayingAnimation()
{
// TODO : Implement this
return false;
}
}
}