mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 06:18:52 +02:00
boop
This commit is contained in:
parent
a904ae1a8a
commit
b8a7fce201
1 changed files with 3 additions and 3 deletions
|
@ -98,12 +98,12 @@ public:
|
|||
void disable() { _enabled = false; }
|
||||
|
||||
const RayPickFilter& getFilter() { return _filter; }
|
||||
const float& getMaxDistance() { return _maxDistance; }
|
||||
const bool& isEnabled() { return _enabled; }
|
||||
float getMaxDistance() { return _maxDistance; }
|
||||
bool isEnabled() { return _enabled; }
|
||||
const RayPickResult& getPrevRayPickResult() { return _prevResult; }
|
||||
|
||||
void setPrecisionPicking(bool precisionPicking) { _precisionPicking = precisionPicking; }
|
||||
const bool& doesPrecisionPicking() { return _precisionPicking; }
|
||||
bool doesPrecisionPicking() { return _precisionPicking; }
|
||||
|
||||
void setRayPickResult(const RayPickResult& rayPickResult) { _prevResult = rayPickResult; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue