Skip to main content

Play test - Login with Steam - (Unreal Engine module)

Last updated on June 12, 2024

In this tutorial section, you will play test the Steam login method in Byte Wars.

Manual Steam login

  1. In the DefaultEngine.ini file, look for the [ByteWars/TutorialModule.AuthEssentials] section and ensure that the bAutoLogin is set to false.

    [/ByteWars/TutorialModule.AuthEssentials]
    bAutoLogin=false
  2. Compile and open the project in Unreal Editor. Ensure that you have Steam running and are logged in. Play your game in Standalone Game mode.

    Play game in standalone mode Steam UE manual login

  3. Click the Login with Steam button. If your implementation is correct, you will navigate to the Main Menu.

    Manual Log in with steam preview Steam UE

Automatic Steam login

  1. In the DefaultEngine.ini file, look for the [ByteWars/TutorialModule.AuthEssentials] section and ensure that the bAutoLogin is set to true.

    [/ByteWars/TutorialModule.AuthEssentials]
    bAutoLogin=true
  2. Compile and open the project in Unreal Editor. Ensure that you have Steam running and are logged in. Play your game in Standalone Game mode. If your implementation is correct, you will be automatically log in and navigate to the Main Menu.

    Play game in standalone mode Steam UE manual login

    Auto Steam auto log in preview Steam UE

Resources