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

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

Last updated on November 25, 2024
備考

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

Manual Steam login

  1. 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
    }
  2. With Steam open, play your game in the Unity Editor.

  3. Click the LOGIN WITH STEAM button. If your implementation was successful, you will be taken to the main menu.

Auto Steam login

  1. 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
    }
  2. 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