mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
doc: Fix enum tags thanks to 2bc6db6
This commit is contained in:
@@ -58,16 +58,16 @@
|
||||
</method>
|
||||
</methods>
|
||||
<constants>
|
||||
<constant name="STATUS_NONE" value="0">
|
||||
<constant name="STATUS_NONE" value="0" enum="Status">
|
||||
The initial status of the [code]StreamPeerTCP[/code], also the status after a disconnect.
|
||||
</constant>
|
||||
<constant name="STATUS_CONNECTING" value="1">
|
||||
<constant name="STATUS_CONNECTING" value="1" enum="Status">
|
||||
A status representing a [code]StreamPeerTCP[/code] that is connecting to a host.
|
||||
</constant>
|
||||
<constant name="STATUS_CONNECTED" value="2">
|
||||
<constant name="STATUS_CONNECTED" value="2" enum="Status">
|
||||
A status representing a [code]StreamPeerTCP[/code] that is connected to a host.
|
||||
</constant>
|
||||
<constant name="STATUS_ERROR" value="3">
|
||||
<constant name="STATUS_ERROR" value="3" enum="Status">
|
||||
A staus representing a [code]StreamPeerTCP[/code] in error state.
|
||||
</constant>
|
||||
</constants>
|
||||
|
||||
Reference in New Issue
Block a user