MOD!
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace AllIn1VfxToolkit.Demo.Scripts
|
||||
{
|
||||
public class AllIn1VfxAutoDestroy : MonoBehaviour
|
||||
{
|
||||
[SerializeField] private float destroyTime = 1f;
|
||||
|
||||
private void Start()
|
||||
{
|
||||
Destroy(gameObject, destroyTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user