2025-05-18 01:04:31 +08:00

12 lines
157 B
C#

using UnityEngine;
public class Ef_Destory : MonoBehaviour
{
public float time;
private void Start()
{
Object.Destroy(base.gameObject, time);
}
}