mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-14 23:36:03 +02:00
fix overlay picking
This commit is contained in:
parent
64b461274b
commit
8dae2502ee
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ public:
|
|||
bool doesPickNonCollidable() const { return _flags[NONCOLLIDABLE] || !_flags[COLLIDABLE]; }
|
||||
|
||||
bool isPrecise() const { return _flags[PRECISE] || !_flags[COARSE]; }
|
||||
bool isCoarse() const { return _flags[COARSE] || !_flags[PRECISE]; }
|
||||
bool isCoarse() const { return _flags[COARSE]; }
|
||||
|
||||
bool doesWantAllIntersections() const { return _flags[PICK_ALL_INTERSECTIONS]; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue