Skip to content

Commit

Permalink
Merge branch 'lobby-client-add-lobby-name' of https://github.com/Ughu…
Browse files Browse the repository at this point in the history
…uu/godot into lobby-client-add-lobby-name
  • Loading branch information
Ughuuu committed Nov 28, 2024
2 parents 152a3db + 82c49c4 commit b4be95b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions modules/blazium_sdk/doc_classes/CreateLobbyResult.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,8 @@
<member name="lobby_id" type="String" setter="" getter="get_lobby_id" default="&quot;&quot;">
Gets the lobby id.
</member>
<member name="lobby_name" type="String" setter="" getter="get_lobby_name" default="&quot;&quot;">
Gets the lobby name.
</member>
</members>
</class>
13 changes: 12 additions & 1 deletion modules/blazium_sdk/doc_classes/LobbyClient.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</method>
<method name="create_lobby">
<return type="CreateLobbyResponse" />
<param index="0" name="name" type="String" />
<param index="0" name="title" type="String" />
<param index="1" name="max_players" type="int" default="4" />
<param index="2" name="password" type="String" default="&quot;&quot;" />
<description>
Expand Down Expand Up @@ -114,6 +114,12 @@
</method>
</methods>
<members>
<member name="connected" type="bool" setter="" getter="get_connected" default="false">
True if the client is connected, else false.
</member>
<member name="lobby_id" type="String" setter="" getter="get_lobby_id" default="&quot;&quot;">
The current lobby id.
</member>
<member name="server_url" type="String" setter="set_server_url" getter="get_server_url" default="&quot;wss://lobby.blazium.app/connect&quot;">
Set to what url this lobby should connect to.
</member>
Expand All @@ -127,6 +133,11 @@
Signals a log from a command.
</description>
</signal>
<signal name="disconnected_from_lobby">
<description>
Disconnects from the lobby.
</description>
</signal>
<signal name="lobby_created">
<param index="0" name="lobby" type="String" />
<description>
Expand Down

0 comments on commit b4be95b

Please sign in to comment.