mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 13:52:49 +02:00
17 lines
No EOL
533 B
JavaScript
17 lines
No EOL
533 B
JavaScript
function mousePressEvent(event) {
|
|
var overlay = Overlays.getOverlayAtPoint({x:event.x,y:event.y});
|
|
print('overlay is: ' + overlay)
|
|
// var pickRay = Camera.computePickRay(event.x, event.y);
|
|
|
|
// var intersection = Overlays.findRayIntersection(pickRay);
|
|
// print('intersection is: ' + intersection)
|
|
};
|
|
|
|
Controller.mouseMoveEvent.connect(function(event){
|
|
print('mouse press')
|
|
mousePressEvent(event)
|
|
});
|
|
|
|
Script.scriptEnding.connect(function(){
|
|
Controller.mousePressEvent.disconnect(mousePressEvent);
|
|
}) |