public void OnCheckingGooglePlayUser()
    {
        _LoadingManager.LoadingScreen(true);

        if (PlayGamesPlatform.Instance.localUser.authenticated)
        {
            DisplayInfo.text = "You have already logged on";

            GooglePlaySignIn.gameObject.SetActive(false);

            LoginPanelInfo.SetActive(true);

            gpm.GetUserInfos();

            gpm.DebugMaster.OnDebugging("You have already logged on");
        }
        else
        {
            DisplayInfo.text = "You have not log in";

            gpm.DebugMaster.OnDebugging("You have not log in");
        }

        _LoadingManager.LoadingScreen(false);
    }