ProjectDDD/Assets/Plugins/AllIn1VfxToolkit/Demo & Assets/Demo/Scripts/AllIn1VfxAutoDestroy.cs
2025-07-08 19:46:31 +09:00

14 lines
285 B
C#

using UnityEngine;
namespace AllIn1VfxToolkit.Demo.Scripts
{
public class AllIn1VfxAutoDestroy : MonoBehaviour
{
[SerializeField] private float destroyTime = 1f;
private void Start()
{
Destroy(gameObject, destroyTime);
}
}
}