Readonly
Planned
masterSynchronization frequency of player's movement. Default value is 150ms, the configurable range is 30ms to 150ms.
Readonly
Planned
playerProvide the IDs of all players and sort them.
Unsubscribe from a specific event.
Event name
Callback function
Subscribe to a specific event.
Event name
Callback function
Send custom message.
Optional
options: { Other options.
Optional
batch?: booleanBatch processing of messages: If set to true
, the messages will be cached and sent together later.
Optional
entityEntity GUID: Specifies the entity that can receive the message through the receive:message event.
Optional
messageMessage ID: Used to override messages with the same ID that have not been sent yet.
Planned
Event name, can be customized as needed.
Specified target ID, can be customized as needed. Specify a specific event and targetId, and let the server decide who is the owner (whoever sends the message first).
// targetId is the entity ID.
// Player A sends take-ownership event.
sendOwnerUpdate('take-ownership', 'f47ac10b-58cb-11d1-a5f3-0000f8751022');
// Player B sends take-ownership event.
sendOwnerUpdate('take-ownership', 'f47ac10b-58cb-11d1-a5f3-0000f8751022');
// Server decides Player A is the owner.
// Notify all players that Player A is the owner.
networkService.on('receive:ownerUpdate', (params) => {
if (params.event === 'take-ownership') {
// Player A is the owner, successor is Player A's ID.
}
})
One player will be selected as the master.