4 using System.Collections.Generic;
36 internal void ReadFrom (NetIncomingMessage msg)
39 Position = msg.ReadVector3();
40 Direction = msg.ReadVector3();
41 OwnerPeerIndex = msg.ReadInt32();
42 Details =
UJeli.Parse(msg.ReadString());
45 internal void WriteTo (NetOutgoingMessage msg)
47 msg.Write(Prefab.name);
50 msg.Write(OwnerPeerIndex);
51 msg.Write((Details != null) ? Details.ToString() :
"");
GameObject Prefab
The prefab from which this object is instantiated.
Vector3 Position
The position at which this object was spawned.
int OwnerPeerIndex
The peer index of the peer which owns this object.
Vector3 Direction
The direction this object was facing when it was spawned.
Unity version of Jeli markup class.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
static GameObject GetSpawnablePrefab(string prefabId)
Get a spawnable prefab by ID.
The spawn-time information of a spawned object.
UJeli Details
Additional spawn details.