Step 1 - Setup
NOTE: WE ARE STILL WORKING ON ALL OF THE DOCUMENTATION BUT THIS STILL HELPS YOU SETUP YOUR PROJECT. IF YOU NEED ANY HELP YOU CAN JOIN THE DISCORD.
Enabling the Plugin
Now, let's ensure that you modify the DefaultEngine.ini
[/Script/Engine.Engine]
!NetDriverDefinitions=ClearArray
+NetDriverDefinitions=(DefName="GameNetDriver",DriverClassName="OnlineSubsystemSteam.SteamNetDriver",DriverClassNameFallback="OnlineSubsystemUtils.IpNetDriver")
+NetDriverDefinitions=(DefName="BeaconNetDriver",DriverClassName="OnlineSubsystemSteam.SteamNetDriver",DriverClassNameFallback="OnlineSubsystemUtils.IpNetDriver")
[/Script/OnlineSubsystemUtils.OnlineBeaconHost]
ListenPort=7787
BeaconConnectionInitialTimeout=120.0
BeaconConnectionTimeout=120.0
[/Script/OnlineSubsystemUtils.IpNetDriver]
MaxClientRate=120000
MaxInternetClientRate=120000
InitialConnectTimeout=120.0
ConnectionTimeout=120.0
[/Script/OnlineSubsystemSteam.SteamNetDriver]
NetConnectionClassName="OnlineSubsystemSteam.SteamNetConnection"
[OnlineSubsystemSteam]
bEnabled=true
SteamDevAppId=480
bInitServerOnClient=true
GameServerQueryPort=27015
bRelaunchInSteam=false
bAllowP2PPacketRelay=true
P2PConnectionTimeout=120.0
[OnlineSubsystem]
DefaultPlatformService=SteamTo enable voice chat, make sure to include the following additional configurations in the DefaultEngine.ini file.
Last updated