mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-27 14:30:17 +00:00
23 lines
372 B
C#
23 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;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|