Class WriteExtensions
Static class that contains various extension methods that allow writing data types to a buffer.
Namespace: Unity.SnapshotDebugger
Assembly: solution.dll
Syntax
public static class WriteExtensions
Methods
Name | Description |
---|---|
Write(Buffer, bool) | Writes a boolean to the buffer. |
Write(Buffer, byte) | Writes a single byte (8-bit value) to the buffer. |
Write(Buffer, byte[]) | Writes an array of bytes to the buffer. |
Write(Buffer, byte[], int, int) | Writes an array of bytes to the buffer. |
Write(Buffer, short) | Writes a short (16-bit value) to the buffer. |
Write(Buffer, int) | Writes an integer (32-bit value) to the buffer. |
Write(Buffer, float) | Writes a floating point value to the buffer. |
Write(Buffer, string) | Writes a string to the buffer. |
Write(Buffer, Native |
|
Write(Buffer, Buffer) | Writes a buffer passed as argument to the buffer. |
Write(Buffer, Color) | Writes a color value to the buffer. |
Write(Buffer, Color32) | Writes a color32 value to the buffer. |
Write(Buffer, Quaternion) | Writes a quaternion to the buffer. |
Write(Buffer, Vector2) | Writes a vector2 to the buffer. |
Write(Buffer, Vector3) | Writes a vector3 to the buffer. |
Write(Buffer, Vector4) | Writes a vector4 to the buffer. |
Write |
Writes a component to the buffer. |
Write |
|
Write |
|
Write |
Writes a floating point value to the buffer. |
Write |
Writes a quaternion to the buffer. |
Write |
Writes a vector2 value to the buffer. |
Write |
Writes a vector3 value to the buffer. |
Write |
Writes a vector4 value to the buffer. |
Write |
Writes a native array to the buffer. |
Write |
Writes a native list to the buffer. |
Write |
|
Write |
Writes a transform to the buffer. |