...
This commit is contained in:
26
Assets/Standard Assets/Vehicles/Car/Scripts/SkidTrail.cs
Normal file
26
Assets/Standard Assets/Vehicles/Car/Scripts/SkidTrail.cs
Normal file
@ -0,0 +1,26 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user