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