ActSingleton Singleton Design Pattern for Unity Usage using UnityEngine; public class GameManager : ActSingleton<GameManager> { void Start() { // ... } void Update() { //... } }