wirm/Game/Assets/VRTemplateAssets/Scripts/DestroyObject.cs

20 lines
395 B
C#
Raw Normal View History

2025-01-18 01:57:36 +08:00
using UnityEngine;
namespace Unity.VRTemplate
{
/// <summary>
/// Destroys GameObject after a few seconds.
/// </summary>
public class DestroyObject : MonoBehaviour
{
[SerializeField]
[Tooltip("Time before destroying in seconds.")]
float m_Lifetime = 5f;
void Start()
{
Destroy(gameObject, m_Lifetime);
}
}
}