mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-27 22:11:39 +00:00
15 lines
308 B
C#
15 lines
308 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
//currently we need main camera to have over the shoulder mode. lets add more later.
|
|
public class MainCameraMode : MonoBehaviour
|
|
{
|
|
public Mode cameraMode = Mode.shoulder;
|
|
public enum Mode
|
|
{
|
|
shoulder
|
|
}
|
|
|
|
}
|