You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
554 B
27 lines
554 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class jiansudai : MonoBehaviour
|
|
{
|
|
private void OnTriggerEnter(Collider other)
|
|
{
|
|
if ( other.gameObject.tag == "Car")
|
|
{
|
|
if (other.GetComponent<Car>() != null)
|
|
{
|
|
other.GetComponent<Car>().driveStatu = CarDriveStatu.怠速;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
private void OnTriggerExit(Collider other)
|
|
{
|
|
if ( other.gameObject.tag == "Car")
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|