Open Myle21 opened 4 months ago
Got the same issue with Godot 4.3 Beta 3
Hey, I had the same issue while using GodotSteam and this addon but it was because I was creating both the host and the client at the same time.
When you create a lobby, both lobby_created
and lobby_joined
signals are fired. So if you create the client in the callback to lobby_joined
, make sure to check if you are not the host by using Steam.getLobbyOwner(lobby_id)
Check out this example, it helped a lot https://github.com/MichaelMacha/SteamMultiplayerPeerExample/blob/demo/gamestate.gd
the os is windows 10 x64, godot version is 4.2.2 and the steam is in fact intializing correctly and is doing so before the multiplayer peer. here's the only place in code that uses SteamMultiplayerPeer: