30 lines
571 B
C#
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;
|
|
}
|
|
}
|
|
} |