babylon.pickingInfo.js 336 B

1234567891011121314
  1. "use strict";
  2. var BABYLON = BABYLON || {};
  3. (function () {
  4. BABYLON.PickingInfo = function () {
  5. };
  6. // Properties
  7. BABYLON.PickingInfo.prototype.hit = false;
  8. BABYLON.PickingInfo.prototype.distance = 0;
  9. BABYLON.PickingInfo.prototype.pickedPoint = null;
  10. BABYLON.PickingInfo.prototype.pickedMesh = null;
  11. })();