从Babylon.js的屏幕坐标中获取坐标

时间:2019-10-22 15:21:47

标签: babylonjs

我不在使用地面。我想获取pickPoint来动态添加网格。

scene.onPointerDown = function (evt, pickResult) {
     // if the click hits the ground object, we change the impact position
     if (pickResult.hit) {
         console.log('an object is picked');
     } else {
         console.log('get world coordinates from evt.x and evt.y');
     }
};

1 个答案:

答案 0 :(得分:0)

pickResult对象具有一个名为pickedPoint的变量。

这是一个快速演示:

https://playground.babylonjs.com/#NU4F6Y#0