Files
real-shooter/Assets/Standard Assets/Vehicles/Car/Scripts/SkidTrail.cs
Enikeevtimur dfbdf7ad31 ооооо
2022-04-18 22:37:09 +07:00

27 lines
512 B
C#

using System;
using System.Collections;
using UnityEngine;
#pragma warning disable 649
namespace UnityStandardAssets.Vehicles.Car
{
public class SkidTrail : MonoBehaviour
{
[SerializeField] private float m_PersistTime;
private IEnumerator Start()
{
while (true)
{
yield return null;
if (transform.parent.parent == null)
{
Destroy(gameObject, m_PersistTime);
}
}
}
}
}