private static bool VerifyCredentials() { if (!RemoteConfig.IsInitialized()) { RemoteConfig.Init((Action)null, (Action)null); } if (!APIUser.get_IsLoggedInWithCredentials() && ApiCredentials.Load()) { APIUser.FetchCurrentUser((Action <ApiModelContainer <APIUser> >) delegate(ApiModelContainer <APIUser> c) { AnalyticsSDK.LoggedInUserChanged(c.get_Model() as APIUser); }, (Action <ApiModelContainer <APIUser> >)null); } if (!APIUser.get_IsLoggedInWithCredentials()) { GUILayout.Label("Please use the \"VRChat SDK/Settings\" window to log in.", EditorStyles.get_boldLabel(), (GUILayoutOption[])new GUILayoutOption[0]); return(false); } return(true); }