BEPUphysics.Constraints.SolverGroups.SolverGroup.Update C# (CSharp) Method

Update() public method

Performs the frame's configuration step.
public Update ( float dt ) : void
dt float Timestep duration.
return void
        public override void Update(float dt)
        {
            for (int i = 0; i < solverUpdateables.Count; i++)
            {
                UpdateUpdateable(solverUpdateables.Elements[i], dt);
            }
        }