mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 20:43:04 +00:00
22 lines
372 B
C#
22 lines
372 B
C#
using UnityEngine;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Vehicles
|
|
{
|
|
|
|
public class DriveByManager : MonoBehaviour
|
|
{
|
|
public static DriveByManager Instance { get; private set; }
|
|
|
|
public float cameraHeightOffset = 1f;
|
|
public float cameraBackwardOffset = 1f;
|
|
|
|
|
|
|
|
void Awake()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
}
|
|
|
|
}
|