Skip to content

Commit

Permalink
Removing flooding print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterBarclay committed Jul 1, 2024
1 parent 48fda3d commit 9420272
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fission/src/systems/physics/PhysicsSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -723,8 +723,6 @@ class PhysicsSystem extends WorldSystem {
let substeps = Math.max(1, Math.floor((lastDeltaT / STANDARD_SIMULATION_PERIOD) * STANDARD_SUB_STEPS))
substeps = Math.min(MAX_SUBSTEPS, Math.max(MIN_SUBSTEPS, substeps))

console.log(`DeltaT: ${lastDeltaT.toFixed(5)}, Substeps: ${substeps}`)

this._joltInterface.Step(lastDeltaT, substeps)
}

Expand Down

0 comments on commit 9420272

Please sign in to comment.