| | 1 | | using Cinemachine; |
| | 2 | | using UnityEngine; |
| | 3 | |
|
| | 4 | | namespace DCL.SettingsCommon.SettingsControllers |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// This MonoBehaviour will only contain the external references needed for the general settings. |
| | 8 | | /// </summary> |
| | 9 | | public class GeneralSettingsReferences : MonoBehaviour |
| | 10 | | { |
| | 11 | | public CinemachineFreeLook thirdPersonCamera; |
| | 12 | | public CinemachineVirtualCamera firstPersonCamera; |
| | 13 | |
|
| 0 | 14 | | public static GeneralSettingsReferences i { get; private set; } |
| | 15 | |
|
| 248 | 16 | | private void Awake() { i = this; } |
| | 17 | | } |
| | 18 | | } |