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