summaryrefslogtreecommitdiff
path: root/doc/classes/NetworkedMultiplayerPeer.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-10-25 15:14:36 +0200
committerRémi Verschelde <rverschelde@gmail.com>2018-10-25 15:14:47 +0200
commit7a42df3626159d1d81d2b5aabf13f19ef1951976 (patch)
treec1b8309946ff1e0bd72a0463bbb626d4640d132d /doc/classes/NetworkedMultiplayerPeer.xml
parent8e391c1e229e2e44b5161036d9a2e584ed08f968 (diff)
doc: Sync with current source
Diffstat (limited to 'doc/classes/NetworkedMultiplayerPeer.xml')
-rw-r--r--doc/classes/NetworkedMultiplayerPeer.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/NetworkedMultiplayerPeer.xml b/doc/classes/NetworkedMultiplayerPeer.xml
index ea6fe6d11c..3b76861afd 100644
--- a/doc/classes/NetworkedMultiplayerPeer.xml
+++ b/doc/classes/NetworkedMultiplayerPeer.xml
@@ -92,7 +92,7 @@
</signals>
<constants>
<constant name="TRANSFER_MODE_UNRELIABLE" value="0" enum="TransferMode">
- Packets are not acknowledged, no resend attempts are made for lost packets. Packets may arrive in any order. Potentially faster than [code]TRANSFER_MODE_UNRELIABLE_ORDERED[/code]. Use for non-critical data, and always consider whether the order matters.
+ Packets are not acknowledged, no resend attempts are made for lost packets. Packets may arrive in any order. Potentially faster than [code]TRANSFER_MODE_UNRELIABLE_ORDERED[/code]. Use for non-critical data, and always consider whether the order matters.
</constant>
<constant name="TRANSFER_MODE_UNRELIABLE_ORDERED" value="1" enum="TransferMode">
Packets are not acknowledged, no resend attempts are made for lost packets. Packets are received in the order they were sent in. Potentially faster than [code]TRANSFER_MODE_RELIABLE[/code]. Use for non-critical data or data that would be outdated if received late due to resend attempt(s) anyway, for example movement and positional data.