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 = 4.5; public terminalVelocity: number; constructor(terminalVelocity?: number) { super(ComponentNames.Gravity); this.terminalVelocity = terminalVelocity ?? Gravity.DEFAULT_TERMINAL_VELOCITY; } }