10 public static class UNetUtils
15 public static void Write (
this NetBuffer msg, Vector2 v)
24 public static void Write (
this NetBuffer msg, Vector3 v)
34 public static void Write (
this NetBuffer msg, Vector4 v)
45 public static void Write (
this NetBuffer msg, Quaternion q)
56 public static void Write (
this NetBuffer msg, Matrix4x4 m)
58 for (
int i = 0; i < 16; i++)
67 public static void Write (
this NetBuffer msg, Color c)
78 public static void Write (
this NetBuffer msg, Ray r)
81 msg.Write(r.direction);
87 public static void WriteGameObject (
this NetBuffer
self, GameObject go)
96 public static void WriteAll (
this NetBuffer
self, params
object[] objs)
98 foreach (var obj
in objs)
100 self.WriteObject(obj);
108 public static void WriteObject (
this NetBuffer
self,
object obj)
111 self.Write((
int)obj);
112 else if (obj is
float)
113 self.Write((
float)obj);
114 else if (obj is
bool)
115 self.Write((
bool)obj);
116 else if (obj is
string)
117 self.Write((
string)obj);
118 else if (obj is Vector3)
119 self.Write((Vector3)obj);
120 else if (obj is Quaternion)
121 self.Write((Quaternion)obj);
122 else if (obj is Color)
123 self.Write((Color)obj);
124 else if (obj is Vector4)
125 self.Write((Vector4)obj);
126 else if (obj is Vector2)
127 self.Write((Vector2)obj);
128 else if (obj is Matrix4x4)
129 self.Write((Matrix4x4)obj);
131 self.Write((Ray)obj);
132 else if (obj is GameObject)
133 self.WriteGameObject((GameObject)obj);
134 else if (obj is byte)
135 self.Write((byte)obj);
136 else if (obj is uint)
137 self.Write((uint)obj);
138 else if (obj is
short)
139 self.Write((
short)obj);
140 else if (obj is ushort)
141 self.Write((ushort)obj);
142 else if (obj is
long)
143 self.Write((
long)obj);
144 else if (obj is ulong)
145 self.Write((ulong)obj);
146 else if (obj is
double)
147 self.Write((
double)obj);
153 public static Vector2 ReadVector2 (
this NetBuffer msg)
155 return new Vector2(msg.ReadFloat(), msg.ReadFloat());
161 public static Vector3 ReadVector3 (
this NetBuffer msg)
163 return new Vector3(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
169 public static Vector4 ReadVector4 (
this NetBuffer msg)
171 return new Vector4(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
177 public static Quaternion ReadQuaternion (
this NetBuffer msg)
179 return new Quaternion(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
185 public static Matrix4x4 ReadMatrix4x4 (
this NetBuffer msg)
187 Matrix4x4 m =
new Matrix4x4();
189 for (
int i = 0; i < 16; i++)
191 m[i] = msg.ReadFloat();
200 public static Color ReadColor (
this NetBuffer msg)
202 return new Color(msg.ReadFloat(), msg.ReadFloat(), msg.ReadFloat());
208 public static Ray ReadRay (
this NetBuffer msg)
210 return new Ray(msg.ReadVector3(), msg.ReadVector3());
216 public static GameObject ReadGameObject (
this NetBuffer
self)
static int GetObjectIndex(GameObject go)
Gets the object index of a given object.
static GameObject GetObject(int objectIndex)
Get an object by its object index.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...