babylon.pickingInfo.js 321 B

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