summaryrefslogtreecommitdiff
path: root/engine/components/Gravity.ts
blob: 89fcb678c08a109f1c1d990010dfd2bcde701323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ComponentNames, Component } from ".";

export class Gravity extends Component {
  private static DEFAULT_TERMINAL_VELOCITY = 5;

  public terminalVelocity: number;

  constructor(terminalVelocity?: number) {
    super(ComponentNames.Gravity);
    this.terminalVelocity =
      terminalVelocity ?? Gravity.DEFAULT_TERMINAL_VELOCITY;
  }
}