Delegate SyncTimer.SyncTypeChanged
Delegate signature for when the timer operation occurs.
Namespace: FishNet.Object.Synchronizing
Assembly: FishNet.Runtime.dll
Syntax
public delegate void SyncTypeChanged(SyncTimerOperation op, float prev, float next, bool asServer);
Parameters
Type | Name | Description |
---|---|---|
SyncTimerOperation | op | Operation which was performed. |
System.Single | prev | Previous value of the timer. This will be -1f is the value is not available. |
System.Single | next | Value of the timer. This will be -1f is the value is not available. |
System.Boolean | asServer | True if occurring on server. |