BitStream.Serializefunction Serialize (ref value : boolean) : voidfunction Serialize (ref value : char) : voidfunction Serialize (ref value : short) : voidfunction Serialize (ref value : int) : voidfunction Serialize (ref value : float, maxDelta : float = 0.00001F) : voidfunction Serialize (ref value : Quaternion, maxDelta : float = 0.00001F) : voidfunction Serialize (ref value : Vector3, maxDelta : float = 0.00001F) : voidfunction Serialize (ref value : NetworkPlayer) : voidfunction Serialize (ref viewID : NetworkViewID) : voidDescriptionSerializes different types of variables. Supported types are: bool, char, short, int, float, Quaternion, Vector3 and NetworkPlayer. Note that Serialize(char) serializes one byte, so it will only work properly for characters in 0..255 range. |
