Class NetworkMatrix3x3PropertySync<K>
Provides an abstraction to track changes on a Matrix3x3 property contained on a
Network
Inheritance
NetworkMatrix3x3PropertySync<K>
Implements
Inherited Members
Namespace: Evergine.Networking.Components
Assembly: Evergine.Networking.dll
Syntax
public abstract class NetworkMatrix3x3PropertySync<K> : NetworkPropertySync<K, Matrix3x3>, IDependencyObject where K : struct, IConvertible
Type Parameters
Methods
ReadValue(NetworkPropertiesTable)
Defines a delegate to read the value from the player Network
Declaration
protected override Matrix3x3 ReadValue(NetworkPropertiesTable propertiesTable)
Parameters
Type | Name | Description |
---|---|---|
Network |
propertiesTable | The properties table that contains the player custom properties. |
Returns
Type | Description |
---|---|
Matrix3x3 | The property value. |
Overrides
WriteValue(NetworkPropertiesTable, Matrix3x3)
Defines a delegate to write the value in the player Network
Declaration
protected override void WriteValue(NetworkPropertiesTable propertiesTable, Matrix3x3 value)
Parameters
Type | Name | Description |
---|---|---|
Network |
propertiesTable | The properties table that contains the player custom properties. |
Matrix3x3 | value | The value to write. |