| SceneUpdate Method |
Updates the scene.
Namespace: DigitalRune.Graphics.SceneGraphAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public void Update(
TimeSpan deltaTime
)
Public Sub Update (
deltaTime As TimeSpan
)
public:
void Update(
TimeSpan deltaTime
)
member Update :
deltaTime : TimeSpan -> unit
Parameters
- deltaTime
- Type: SystemTimeSpan
The time step size in seconds.
Remarks
A scene needs to be updated once per frame. The method recomputes the internal information
that is used for scene queries (such as frustum culling) and may perform other
optimizations.
See Also