File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Scripts/Game/Client/State Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
version https://git-lfs.github.com/spec/v1
2
- oid sha256:3e29f674cf2ca1d985d081c3007d2ab431d4ca4feb3e6ac29424536c88bf0de7
3
- size 107472
2
+ oid sha256:6c24e9e8c0626eb001167357e87d92e2dc38554afe19293fd562329b225ca7b5
3
+ size 116464
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ public class ClientMainMenuState : GameStateBehaviour
28
28
[ SerializeField ] Button m_LobbyButton ;
29
29
[ SerializeField ] GameObject m_SignInSpinner ;
30
30
[ SerializeField ] UIProfileSelector m_UIProfileSelector ;
31
+ [ SerializeField ] UITooltipDetector m_UGSSetupTooltipDetector ;
31
32
32
33
AuthenticationServiceFacade m_AuthServiceFacade ;
33
34
LocalLobbyUser m_LocalUser ;
@@ -84,6 +85,7 @@ async void InjectDependenciesAndInitialize(AuthenticationServiceFacade authServi
84
85
void OnAuthSignIn ( )
85
86
{
86
87
m_LobbyButton . interactable = true ;
88
+ m_UGSSetupTooltipDetector . enabled = false ;
87
89
m_SignInSpinner . SetActive ( false ) ;
88
90
89
91
Debug . Log ( $ "Signed in. Unity Player ID { AuthenticationService . Instance . PlayerId } ") ;
@@ -98,6 +100,7 @@ void OnSignInFailed()
98
100
if ( m_LobbyButton )
99
101
{
100
102
m_LobbyButton . interactable = false ;
103
+ m_UGSSetupTooltipDetector . enabled = true ;
101
104
}
102
105
if ( m_SignInSpinner )
103
106
{
You can’t perform that action at this time.
0 commit comments