Photon Fusion
2.1.1
Inherits INetworkStruct.
Classes | |
| class | EqualityComparer |
| EqualityComparer for NetworkObjectGuid. More... | |
Public Member Functions | |
| readonly int | CompareTo (NetworkObjectGuid other) |
| Compare the NetworkObjectGuid to another NetworkObjectGuid. | |
| readonly bool | Equals (NetworkObjectGuid other) |
| Check if the NetworkObjectGuid is equal to another NetworkObjectGuid. | |
| readonly override bool | Equals (object obj) |
| Check if the NetworkObjectGuid is equal to another object. | |
| readonly override int | GetHashCode () |
| Get the hashcode for a NetworkObjectGuid. | |
| NetworkObjectGuid (byte *guid) | |
| Create a NetworkObjectGuid from a byte*. | |
| NetworkObjectGuid (byte[] guid) | |
| Create a NetworkObjectGuid from a byte array. | |
| NetworkObjectGuid (long data0, long data1) | |
| Create a new NetworkObjectGuid. | |
| NetworkObjectGuid (string guid) | |
| Create a new NetworkObjectGuid. | |
| readonly override string | ToString () |
| Returns a string representation of the NetworkObjectGuid. | |
| readonly string | ToString (string format) |
| Returns a string representation of the NetworkObjectGuid. | |
| readonly string | ToUnityGuidString () |
| Returns a string representation of the NetworkObjectGuid. | |
Static Public Member Functions | |
| static implicit | operator Guid (NetworkObjectGuid guid) |
| Implicit conversion from NetworkObjectGuid to Guid. | |
| static implicit | operator NetworkObjectGuid (Guid guid) |
| Implicit conversion from Guid to NetworkObjectGuid. | |
| static | operator NetworkPrefabRef (NetworkObjectGuid t) |
| Explicit conversion from NetworkObjectGuid to NetworkPrefabRef. | |
| static bool | operator!= (NetworkObjectGuid a, NetworkObjectGuid b) |
| Compare two NetworkObjectGuid. | |
| static bool | operator== (NetworkObjectGuid a, NetworkObjectGuid b) |
| Compare two NetworkObjectGuid. | |
| static NetworkObjectGuid | Parse (string str) |
| Parse a NetworkObjectGuid from a string. | |
| static bool | TryParse (string str, out NetworkObjectGuid guid) |
| Try to parse a string into a NetworkObjectGuid. | |
Public Attributes | |
| fixed long | RawGuidValue [2] |
| The Raw Guid Value of the NetworkObjectGuid. | |
Static Public Attributes | |
| const int | ALIGNMENT = 4 |
| The alignment of the NetworkObjectGuid. | |
Properties | |
| static NetworkObjectGuid | Empty [get] |
| The default value of a NetworkObjectGuid. | |
| readonly bool | IsValid [get] |
| Signal if the NetworkObjectGuid is valid. | |
| NetworkObjectGuid | ( | string | guid | ) |
Create a new NetworkObjectGuid.
| guid | The guid to use |
| NetworkObjectGuid | ( | long | data0, |
| long | data1 ) |
Create a new NetworkObjectGuid.
| data0 | Data0 of the Guid |
| data1 | Data1 of the Guid |
| NetworkObjectGuid | ( | byte[] | guid | ) |
Create a NetworkObjectGuid from a byte array.
| guid | The byte array to create the NetworkObjectGuid from |
| NetworkObjectGuid | ( | byte * | guid | ) |
Create a NetworkObjectGuid from a byte*.
| guid | The byte* to create the NetworkObjectGuid from |
| readonly int CompareTo | ( | NetworkObjectGuid | other | ) |
Compare the NetworkObjectGuid to another NetworkObjectGuid.
| other | The other NetworkObjectGuid to compare against |
| readonly bool Equals | ( | NetworkObjectGuid | other | ) |
Check if the NetworkObjectGuid is equal to another NetworkObjectGuid.
| other | The other NetworkObjectGuid to check against |
| readonly override bool Equals | ( | object | obj | ) |
Check if the NetworkObjectGuid is equal to another object.
| obj | The other object to check against |
|
static |
Implicit conversion from NetworkObjectGuid to Guid.
| guid | NetworkObjectGuid to convert from |
|
static |
Implicit conversion from Guid to NetworkObjectGuid.
| guid | Guid to convert from |
|
explicitstatic |
Explicit conversion from NetworkObjectGuid to NetworkPrefabRef.
| t | NetworkObjectGuid to convert from |
|
static |
Compare two NetworkObjectGuid.
|
static |
Compare two NetworkObjectGuid.
|
static |
Parse a NetworkObjectGuid from a string.
| str | The string to parse. |
|
static |
Try to parse a string into a NetworkObjectGuid.
| str | String to parse |
| guid | Parsed NetworkObjectGuid |