Inheritance #

RefCounted

- AESContext
- AStar2D
- AStar3D
- AStarGrid2D
- AudioEffectInstance (1)
- AudioSample
- AudioSamplePlayback
- AudioStreamPlayback (5)
- CameraFeed
- CharFXTransform
- ConfigFile
- Crypto
- DTLSServer
- DirAccess
- ENetConnection
- EditorContextMenuPlugin
- EditorDebuggerPlugin
- EditorDebuggerSession
- EditorExportPlatform (6)
- EditorExportPlugin
- EditorExportPreset
- EditorFeatureProfile
- EditorFileSystemImportFormatSupportQuery
- EditorInspectorPlugin
- EditorResourceConversionPlugin
- EditorResourcePreviewGenerator
- EditorResourceTooltipPlugin
- EditorSceneFormatImporter (4)
- EditorScenePostImport
- EditorScenePostImportPlugin
- EditorScript
- EditorTranslationParserPlugin
- EncodedObjectAsID
- EngineProfiler
- Expression
- FileAccess
- GLTFObjectModelProperty
- HMACContext
- HTTPClient
- HashingContext
- ImageFormatLoader (1)
- JavaClass
- JavaObject
- JavaScriptObject
- KinematicCollision2D
- KinematicCollision3D
- Lightmapper (1)
- MeshConvexDecompositionSettings
- MeshDataTool
- MultiplayerAPI (2)
- Mutex
- NavigationPathQueryParameters2D
- NavigationPathQueryParameters3D
- NavigationPathQueryResult2D
- NavigationPathQueryResult3D
- Node3DGizmo (1)
- OggPacketSequencePlayback
- OpenXRAPIExtension
- PCKPacker
- PackedDataContainerRef
- PacketPeer (8)
- PhysicsPointQueryParameters2D
- PhysicsPointQueryParameters3D
- PhysicsRayQueryParameters2D
- PhysicsRayQueryParameters3D
- PhysicsShapeQueryParameters2D
- PhysicsShapeQueryParameters3D
- PhysicsTestMotionParameters2D
- PhysicsTestMotionParameters3D
- PhysicsTestMotionResult2D
- PhysicsTestMotionResult3D
- RDAttachmentFormat
- RDFramebufferPass
- RDPipelineColorBlendState
- RDPipelineColorBlendStateAttachment
- RDPipelineDepthStencilState
- RDPipelineMultisampleState
- RDPipelineRasterizationState
- RDPipelineSpecializationConstant
- RDSamplerState
- RDShaderSource
- RDTextureFormat
- RDTextureView
- RDUniform
- RDVertexAttribute
- RandomNumberGenerator
- RegEx
- RegExMatch
- RenderSceneBuffers (2)
- RenderSceneBuffersConfiguration
- Resource (103)
- ResourceFormatLoader
- ResourceFormatSaver
- ResourceImporter (16)
- SceneState
- SceneTreeTimer
- Semaphore
- SkinReference
- StreamPeer (5)
- SurfaceTool
- TCPServer
- TLSOptions
- TextLine
- TextParagraph
- TextServer (1)
- Thread
- TranslationDomain
- TriangleMesh
- Tween
- Tweener (5)
- UDPServer
- UPNP
- UPNPDevice
- WeakRef
- WebRTCPeerConnection (1)
- XMLParser
- XRInterface (4)
- XRPose
- XRTracker (2)
- ZIPPacker
- ZIPReader
Table of contents

MultiplayerPeer #

is_refcounted, core, not_builtin_classes

Abstract class for specialized PacketPeers used by the MultiplayerAPI.

Manages the connection with one or more remote peers acting as server or client and assigning unique IDs to each of them. See also MultiplayerAPI.

Note: The MultiplayerAPI protocol is an implementation detail and isn't meant to be used by non-Godot servers. It may change without notice.

Note: When exporting to Android, make sure to enable the INTERNET permission in the Android export preset before exporting the project or using one-click deploy. Otherwise, network communication of any kind will be blocked by Android.

Members #

var refuse_new_connections: bool = false#

If true, this MultiplayerPeer refuses new connections.

var transfer_channel: int = 0#

The channel to use to send packets. Many network APIs such as ENet and WebRTC allow the creation of multiple independent channels which behaves, in a way, like separate connections. This means that reliable data will only block delivery of other packets on that channel, and ordering will only be in respect to the channel the packet is being sent on. Using different channels to send different and independent state updates is a common way to optimize network usage and decrease latency in fast-paced games.

Note: The default channel (0) actually works as 3 separate channels (one for each TransferMode) so that TRANSFER_MODE_RELIABLE and TRANSFER_MODE_UNRELIABLE_ORDERED does not interact with each other by default. Refer to the specific network API documentation (e.g. ENet or WebRTC) to learn how to set up channels correctly.

var transfer_mode = TRANSFER_MODE_RELIABLE#

The manner in which to send packets to the target peer. See TransferMode, and the set_target_peer method.

Methods #

func close() -> void#

Immediately close the multiplayer peer returning to the state CONNECTION_DISCONNECTED. Connected peers will be dropped without emitting peer_disconnected.

func disconnect_peer(force: bool = false) -> void#

Disconnects the given peer from this host. If force is true the peer_disconnected signal will not be emitted for this peer.

const func generate_unique_id() -> int#

Returns a randomly generated integer that can be used as a network unique ID.

const func get_connection_status() -> intMultiplayerPeer.ConnectionStatus#

Returns the current state of the connection. See ConnectionStatus.

const func get_packet_channel() -> int#

Returns the channel over which the next available packet was received. See PacketPeer.get_available_packet_count.

const func get_packet_mode() -> intMultiplayerPeer.TransferMode#

Returns the transfer mode the remote peer used to send the next available packet. See PacketPeer.get_available_packet_count.

const func get_packet_peer() -> int#

Returns the ID of the MultiplayerPeer who sent the next available packet. See PacketPeer.get_available_packet_count.

const func get_unique_id() -> int#

Returns the ID of this MultiplayerPeer.

const func is_server_relay_supported() -> bool#

Returns true if the server can act as a relay in the current configuration. That is, if the higher level MultiplayerAPI should notify connected clients of other peers, and implement a relay protocol to allow communication between them.

func poll() -> void#

Waits up to 1 second to receive a new network event.

func set_target_peer(id: int) -> void#

Sets the peer to which packets will be sent.

The id can be one of: TARGET_PEER_BROADCAST to send to all connected peers, TARGET_PEER_SERVER to send to the peer acting as server, a valid peer ID to send to that specific peer, a negative peer ID to send to all peers except that one. By default, the target peer is TARGET_PEER_BROADCAST.

Annotations #

Constants #

const CONNECTION_DISCONNECTED = 0 enum ConnectionStatus#

The MultiplayerPeer is disconnected.

const CONNECTION_CONNECTING = 1 enum ConnectionStatus#

The MultiplayerPeer is currently connecting to a server.

const CONNECTION_CONNECTED = 2 enum ConnectionStatus#

This MultiplayerPeer is connected.

const TARGET_PEER_BROADCAST = 0#

Packets are sent to all connected peers.

const TARGET_PEER_SERVER = 1#

Packets are sent to the remote peer acting as server.

const TRANSFER_MODE_UNRELIABLE = 0 enum TransferMode#

Packets are not acknowledged, no resend attempts are made for lost packets. Packets may arrive in any order. Potentially faster than TRANSFER_MODE_UNRELIABLE_ORDERED. Use for non-critical data, and always consider whether the order matters.

const TRANSFER_MODE_UNRELIABLE_ORDERED = 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 TRANSFER_MODE_RELIABLE. 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.

const TRANSFER_MODE_RELIABLE = 2 enum TransferMode#

Packets must be received and resend attempts should be made until the packets are acknowledged. Packets must be received in the order they were sent in. Most reliable transfer mode, but potentially the slowest due to the overhead. Use for critical data that must be transmitted and arrive in order, for example an ability being triggered or a chat message. Consider carefully if the information really is critical, and use sparingly.

Constructors #

Enums #

ConnectionStatus#

enum ConnectionStatus { CONNECTION_DISCONNECTED = 0, CONNECTION_CONNECTING = 1, CONNECTION_CONNECTED = 2, }

TransferMode#

enum TransferMode { TRANSFER_MODE_UNRELIABLE = 0, TRANSFER_MODE_UNRELIABLE_ORDERED = 1, TRANSFER_MODE_RELIABLE = 2, }

Notifications#

enum { TARGET_PEER_BROADCAST = 0, TARGET_PEER_SERVER = 1, }

Operators #

Signals #

signal peer_connected(id: int)#

Emitted when a remote peer connects.

signal peer_disconnected(id: int)#

Emitted when a remote peer has disconnected.

Theme Items #

Tutorials #