Files
BABA_YAGA/Assets/FirstGearGames/Utilities/DDOL.cs
2026-05-18 21:22:34 +07:00

60 lines
1.4 KiB
C#

using UnityEngine;
namespace FirstGearGames.Utilities.Objects
{
public class DDOL : MonoBehaviour
{
#region Public.
/// <summary>
/// Singleton instance of this class.
/// </summary>
public static DDOL Instance { get; private set; }
#endregion
private void Awake()
{
FirstInitialize();
}
/// <summary>
/// Initializes this script for use. Should only be completed once.
/// </summary>
private void FirstInitialize()
{
if (Instance != null && Instance != this)
{
Debug.LogError("Multiple DDOL scripts found. There should be only one.");
return;
}
else
{
Instance = this;
gameObject.name = "FirstGearGames DDOL";
DontDestroyOnLoad(gameObject);
}
}
/// <summary>
/// Returns the current DDOL or creates one if not yet created.
/// </summary>
public static DDOL ReturnDDOL()
{
//Not yet made.
if (Instance == null)
{
GameObject obj = new GameObject();
DDOL ddol = obj.AddComponent<DDOL>();
return ddol;
}
//Already made.
else
{
return Instance;
}
}
}
}