| GraphicsScreenOnUpdate Method |
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax protected abstract void OnUpdate(
TimeSpan deltaTime
)
Protected MustOverride Sub OnUpdate (
deltaTime As TimeSpan
)
protected:
virtual void OnUpdate(
TimeSpan deltaTime
) abstract
abstract OnUpdate :
deltaTime : TimeSpan -> unit
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