Click or drag to resize

ICustomUpdateLoop Interface

Represents an implementation of a custom update loop. You will probably be better of subclassing CustomUpdateLoopBase for a simpler start, but it's here if you need it.

Namespace:  Archon.SwissArmyLib.Events.Loops
Assembly:  Archon.SwissArmyLib (in Archon.SwissArmyLib.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public interface ICustomUpdateLoop
Request Example View Source

The ICustomUpdateLoop type exposes the following members.

Properties
  NameDescription
Public propertyDeltaTime
Gets the scaled time since this update loop last ran.
Public propertyEvent
Gets the event associated with this update loop.
Public propertyIsTimeToRun
Gets whether it's time for this update loop to run again.
Public propertyUnscaledDeltaTime
Gets the unscaled time since this update loop last ran.
Top
Methods
  NameDescription
Public methodInvoke
Runs this update loop's event.
Top
See Also