public void Awake()

in Assets/Scripts/GamePlayManager.cs [28:37]


    public void Awake()
    {
        if (Singleton != null)
        {
            Destroy(gameObject);
            return;
        }
        DontDestroyOnLoad(gameObject);
        Singleton = this;
    }