mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 18:55:01 +02:00
remove unneeded bind-by-ref thing from lambdas
This commit is contained in:
parent
b9c68f9156
commit
7220a6998a
1 changed files with 2 additions and 2 deletions
|
@ -47,11 +47,11 @@ EntityTreeRenderer::EntityTreeRenderer(bool wantScripts, AbstractViewStateInterf
|
|||
_displayModelBounds(false),
|
||||
_layeredZones(this)
|
||||
{
|
||||
setMouseRayPickResultOperator([&](QUuid rayPickID) {
|
||||
setMouseRayPickResultOperator([](QUuid rayPickID) {
|
||||
RayToEntityIntersectionResult entityResult;
|
||||
return entityResult;
|
||||
});
|
||||
setSetPrecisionPickingOperator([&](QUuid rayPickID, bool value) {});
|
||||
setSetPrecisionPickingOperator([](QUuid rayPickID, bool value) {});
|
||||
EntityRenderer::initEntityRenderers();
|
||||
_currentHoverOverEntityID = UNKNOWN_ENTITY_ID;
|
||||
_currentClickingOnEntityID = UNKNOWN_ENTITY_ID;
|
||||
|
|
Loading…
Reference in a new issue