فهرست منبع

Mention that NetworkedMultiplayerENet uses UDP only

This is important to clarify for those doing port forwarding.

(cherry picked from commit 7b33498995e3aa23b935cd728d3291600f2cdcb5)
Hugo Locurcio 4 سال پیش
والد
کامیت
dc2e568352
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      modules/enet/doc_classes/NetworkedMultiplayerENet.xml

+ 2 - 0
modules/enet/doc_classes/NetworkedMultiplayerENet.xml

@@ -5,6 +5,8 @@
 	</brief_description>
 	<description>
 		A PacketPeer implementation that should be passed to [member SceneTree.network_peer] after being initialized as either a client or server. Events can then be handled by connecting to [SceneTree] signals.
+		ENet's purpose is to provide a relatively thin, simple and robust network communication layer on top of UDP (User Datagram Protocol).
+		[b]Note:[/b] ENet only uses UDP, not TCP. When forwarding the server port to make your server accessible on the public Internet, you only need to forward the server port in UDP. You can use the [UPNP] class to try to forward the server port automatically when starting the server.
 	</description>
 	<tutorials>
 		<link>https://docs.godotengine.org/en/3.2/tutorials/networking/high_level_multiplayer.html</link>