@needle-tools/car-physics
Version:
Car physics for Needle Engine: Create physical cars with ease
12 lines • 410 B
JavaScript
export var CarDrive;
(function (CarDrive) {
CarDrive[CarDrive["all"] = 0] = "all";
CarDrive[CarDrive["rear"] = 1] = "rear";
CarDrive[CarDrive["front"] = 2] = "front";
})(CarDrive || (CarDrive = {}));
export var CarAxle;
(function (CarAxle) {
CarAxle[CarAxle["front"] = 0] = "front";
CarAxle[CarAxle["rear"] = 1] = "rear";
})(CarAxle || (CarAxle = {}));
//# sourceMappingURL=constants.js.map