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

プレイテスト - Steam でログインする - (Unity モジュール)

Last updated on June 23, 2025
備考

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

Manual Steam login

  1. Open the game in the Unity Editor and make sure to open the MainMenu.unity located in the Assets/Scenes/MainMenu.unity.

  2. Make sure the autoLogin in the steamConfiguration is set to false. You can change it in the Assets/Resources/Modules/TutorialModuleConfig.json file.

    ...
    "steamConfiguration":
    {
    "steamAppId": "replace with your steam app id",
    "autoLogin": false
    }
  3. With Steam open, play your game in the Unity Editor.

  4. Click the Login with Steam button. If your implementation was successful, you will be taken to the main menu.

Auto Steam login

  1. Open the game in the Unity Editor and make sure to open the MainMenu.unity located in the Assets/Scenes/MainMenu.unity.

  2. Make sure the autoLogin in the steamConfiguration is set to true. You can change it in the Assets/Resources/Modules/TutorialModuleConfig.json file.

    ...
    "steamConfiguration":
    {
    "steamAppId": "replace with your steam app id",
    "autoLogin": true
    }
  3. With Steam open, play your game in the Unity Editor. If your implementation was successful, you will login automatically and be taken to the main menu.

Resources