UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

18 lines 590 B
import { Vector3 } from "../Maths/math.vector.js"; /** * @internal */ // eslint-disable-next-line @typescript-eslint/naming-convention export class _MeshCollisionData { constructor() { this._checkCollisions = false; this._collisionMask = -1; this._collisionGroup = -1; this._surroundingMeshes = null; this._collider = null; this._oldPositionForCollisions = new Vector3(0, 0, 0); this._diffPositionForCollisions = new Vector3(0, 0, 0); this._collisionResponse = true; } } //# sourceMappingURL=meshCollisionData.js.map