SanAndreasUnity/Assets/Scripts/Behaviours/Vehicles/VehicleManager.cs

26 lines
555 B
C#

using UnityEngine;
namespace SanAndreasUnity.Behaviours.Vehicles
{
public class VehicleManager : MonoBehaviour
{
public static VehicleManager Instance { get; private set; }
public GameObject vehiclePrefab;
public bool syncLinearVelocity = true;
public bool syncAngularVelocity = true;
public bool disableRigidBodyOnClients = true;
public bool syncPedTransformWhileInVehicle = false;
void Awake()
{
Instance = this;
}
}
}