mirror of
https://github.com/lubosz/overte.git
synced 2025-04-09 09:44:33 +02:00
Merge pull request #11152 from zfox23/dontAlwaysDoPrecisionPicking
Don't always do precision picking inside mouseMoveEvent
This commit is contained in:
commit
91ca38e016
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ void EntityTreeRenderer::mouseMoveEvent(QMouseEvent* event) {
|
|||
|
||||
PickRay ray = _viewState->computePickRay(event->x(), event->y());
|
||||
|
||||
bool precisionPicking = true; // for mouse moves we do precision picking
|
||||
bool precisionPicking = false; // for mouse moves we do not do precision picking
|
||||
RayToEntityIntersectionResult rayPickResult = findRayIntersectionWorker(ray, Octree::TryLock, precisionPicking);
|
||||
if (rayPickResult.intersects) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue