BEPUphysics.SolverSystems.SolverUpdateable.Update C# (CSharp) Метод

Update() публичный абстрактный Метод

Performs the frame's configuration step.
public abstract Update ( float dt ) : void
dt float Timestep duration.
Результат void
        public abstract void Update(float dt);

Usage Example

Пример #1
0
 protected internal void UnsafePrestep(SolverUpdateable updateable)
 {
     updateable.UpdateSolverActivity();
     if (updateable.isActiveInSolver)
     {
         SolverSettings solverSettings = updateable.solverSettings;
         solverSettings.currentIterations       = 0;
         solverSettings.iterationsAtZeroImpulse = 0;
         updateable.Update(timeStepSettings.TimeStepDuration);
         updateable.ExclusiveUpdate();
     }
 }
All Usage Examples Of BEPUphysics.SolverSystems.SolverUpdateable::Update