|
Astra Unity 2.6.6
Astra Unity Plugin
|
Implementation of a 3 type tuplet serializable by Unity More...

Public Member Functions | |
| virtual void | Set (System.Object a, System.Object b, System.Object c) |
| Sets values for a tuplet More... | |
| void | OnAfterDeserialize () |
| Implementation for Unity ISerializationCallbackReceiver | |
| void | OnBeforeSerialize () |
| Implementation for Unity ISerializationCallbackReceiver | |
Static Public Member Functions | |
| static Tuplet< T1, T2, T3 > | Create (T1 a, T2 b, T3 c) |
| static Tuplet< T1, T2, T3 > | Create (System.Object a, System.Object b, System.Object c) |
| Creates a tuplet with the given objects More... | |
| static implicit | operator Tuplet< T1, T2, T3 > (Tuplet< System.Object, System.Object, System.Object > orig) |
| allows boxed tuple to convert to typed tuple More... | |
| static Tuplet< T1, T2 > | Create (T1 a, T2 b) |
Public Attributes | |
| T1 | item1 |
| T2 | item2 |
| T3 | item3 |
Properties | |
| T1 | First [getset] |
| T2 | Second [getset] |
| T3 | Third [getset] |
Properties inherited from Astra.Serialization.ITuplet2< T1, T2 > | |
| T1 | First [get] |
| T2 | Second [get] |
Properties inherited from Astra.Serialization.ITuplet3< T1, T2, T3 > | |
| T1 | First [getset] |
| T2 | Second [getset] |
| T3 | Third [getset] |
Implementation of a 3 type tuplet serializable by Unity
Implementation of a 2 type tuplet serializable by Unity
| T1 | Type of first item |
| T2 | Type of second item |
| T3 | Type of third item |
| T1 | Type of first item |
| T2 | Type of second item |
|
inlinestatic |
Creates a tuplet with the given objects
| a | 1st object |
| b | 2nd object |
| c | 3rd object |
|
inlinestatic |
allows boxed tuple to convert to typed tuple
| orig | Boxed tuple (untyped) |
|
inlinevirtual |
Sets values for a tuplet
| a | 1st object |
| b | 2nd object |
| c | 3rd object |
Implements Astra.Serialization.ITuplet3< T1, T2, T3 >.