Click or drag to resize
DigitalRuneDelegateGraphicsScreenOnUpdate Method
Called when Update(TimeSpan) is called.

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
protected override void OnUpdate(
	TimeSpan deltaTime
)

Parameters

deltaTime
Type: SystemTimeSpan
The time that has elapsed since the last update.
Remarks
This method is automatically called by Update(TimeSpan), but only if the screen is visible (see IsVisible). Derived classes can override this method to update the state of the screen, for example, to advance time dependent animations.
See Also