Skip to main content
Version: 0.3.1

Struct ModSystemBase.UpdateTick

Namespace: ReadyM.Relay.Server.Sdk.Ecs.Systems
Assembly: ReadyM.Relay.Server.Sdk.dll

Holds the time information for the current update tick.

protected readonly struct ModSystemBase.UpdateTick

Inherited Members

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

UpdateTick(float, float)

Holds the time information for the current update tick.

public UpdateTick(float deltaTime, float time)

Parameters

deltaTime float

Time since last tick, in seconds.

time float

Total time since server start, in seconds.

Fields

deltaTime

The time in seconds since the last tick.

public readonly float deltaTime

Field Value

float

time

The time at the beginning of the current frame since application start.

public readonly float time

Field Value

float