Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

MessageBase

class in UnityEngine.Networking

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство

Описание

Network message classes should be derived from this class. These message classes can then be sent using the various Send functions of NetworkConnection, NetworkClient and NetworkServer.

Public data fields of classes derived from MessageBase will be automatically serialized with the class. The virtual methods Serialize and Deserialize may be implemented by developers for precise control, but if they are not implemented, then implementations will be generated for them.

In the example below, the methods have implementations, but if those methods were not implemented, the message would still be usable.

#pragma strict
class SpawnMessage extends MessageBase {
	public var netId;
	public var assetId;
	public var position;
	public var payload;
	// This method would be generated
	public override function Deserialize(reader) {
		netId = reader.ReadPackedUInt32();
		assetId = reader.ReadNetworkHash128();
		position = reader.ReadVector3();
		payload = reader.ReadBytesAndSize();
	}
	// This method would be generated
	public override function Serialize(writer) {
		writer.WritePackedUInt32(netId);
		writer.Write(assetId);
		writer.Write(position);
		writer.WriteBytesFull(payload);
	}
}
class SpawnMessage : MessageBase
{
	public uint netId;
	public NetworkHash128 assetId;
	public Vector3 position;
	public byte[] payload;

// This method would be generated public override void Deserialize(NetworkReader reader) { netId = reader.ReadPackedUInt32(); assetId = reader.ReadNetworkHash128(); position = reader.ReadVector3(); payload = reader.ReadBytesAndSize(); }

// This method would be generated public override void Serialize(NetworkWriter writer) { writer.WritePackedUInt32(netId); writer.Write(assetId); writer.Write(position); writer.WriteBytesFull(payload); } }

Открытые функции

DeserializeThis method is used to populate a message object from a NetworkReader stream.
SerializeThe method is used to populate a NetworkWriter stream from a message object.