AttributesSyncLateUpdate Method

Handle changed fields.

Definition

Namespace: Alteruna.Multiplayer
Assembly: Alteruna (in Alteruna.dll) Version: 2.0.2+dcdb8fba58ad1eb99205b1dc6265fd5b3b7cf8ec
C#
public virtual void LateUpdate()

Remarks

If hidden, consider calling Commit() after changes

Example

Writing your own LateUpdate by hiding the base LateUpdate.
C#
void LateUpdate()
{
    // Check for any uncommitted changes in fields.
    base.LateUpdate();
}

See Also