Merge Journal, Quest and Dialog systems

This commit is contained in:
2023-07-08 21:08:01 +02:00
parent 34fb3715f3
commit fd68064b16
12 changed files with 1849 additions and 84 deletions

View File

@@ -4,15 +4,24 @@ using UnityEngine;
public class PlayerController : MonoBehaviour
{
public static PlayerController Instance;
public Vector3 forward;
public Camera playerCam;
public float xLimit = 45;
public float yLimit = 25;
public bool cameraMovement = true;
// Start is called before the first frame update
void Start()
private void Awake()
{
if (Instance == null)
{
Instance = this;
}
else
{
Debug.LogWarning("There can only be one instance of the CharacterManager class");
}
}
// Update is called once per frame