Files
ichni_Official/Assets/Feel/MMFeedbacks/Demos/MMFeedbacksDemo/Scripts/DemoGhost.cs
SoulliesOfficial d4e860fa16 initial
2025-06-03 02:42:28 -04:00

21 lines
441 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MoreMountains.Feedbacks
{
/// <summary>
/// A class used on the MMFeedback's demo ghost
/// </summary>
[AddComponentMenu("")]
public class DemoGhost : MonoBehaviour
{
/// <summary>
/// Called via animation event, disables the object
/// </summary>
public virtual void OnAnimationEnd()
{
this.gameObject.SetActive(false);
}
}
}