| CollisionDomainUpdate Method (TimeSpan) |
Updates the collision domain and computes the new contact information.
Namespace: DigitalRune.Geometry.CollisionsAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
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 simulation time that has elapsed since the last update. (The size of the time step.)
Remarks
This method has to be called in each frame. The computed collision data will be updated for
the collision objects which were modified since the last
Update(Single) call.
See Also