Skip to content

Commit

Permalink
ran formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
PepperLola committed Aug 29, 2024
1 parent 4b0519e commit 7e8b646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fission/src/systems/simulation/wpilib_brain/SimInput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class SimAccelInput extends SimInput {

public Update(deltaT: number) {
const newVel = this._joltBody?.GetLinearVelocity()
if (!newVel) return;
if (!newVel) return

const x = (newVel.GetX() - this._prevVel.GetX()) / deltaT
const y = (newVel.GetY() - this._prevVel.GetY()) / deltaT
Expand Down

0 comments on commit 7e8b646

Please sign in to comment.