メインコンテンツまでスキップ

すべてを統合する - Steam でログインする - (Unity モジュール)

Last updated on March 12, 2025
備考

This tutorial module does not apply to WebGL builds due to limitations in Steamworks.

Connect the UI to let player log in with Steam

In this tutorial, you will connect Steam login functionality from the SinglePlatformAuthWrapper_Starter wrapper to the button that resides in the LoginMenuCanvas prefab.

  1. Open SinglePlatformAuthWrapper_Starter. You can connect the Steam login button to the login function. Since you rely on an existing menu canvas in LoginHandler to set the loading state and the retry button callback, you will set them first before getting the Steam authentication session ticket. Replace the OnLoginWithSteamButtonClicked() function in the SinglePlatformAuthWrapper_Starter with the code below.

    private void OnLoginWithSteamButtonClicked()
    {
    if (loginHandler == null) return;
    loginHandler.OnRetryLoginClicked = OnLoginWithSteamButtonClicked;
    loginHandler.SetView(LoginHandler.LoginView.LoginLoading);

    // Get steam token to be used as platform token later
    #if !UNITY_WEBGL
    steamHelper.GetAuthSessionTicket(OnGetAuthSessionTicketFinished);
    #endif
    }

Resources