mirror of
https://github.com/overte-org/overte.git
synced 2025-07-15 14:36:38 +02:00
Merge remote-tracking branch 'upstream/master' into particles
This commit is contained in:
commit
408edc7dca
1 changed files with 4 additions and 0 deletions
|
@ -91,7 +91,11 @@ void LeapManager::enableFakeFingers(bool enable) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool LeapManager::controllersExist() {
|
bool LeapManager::controllersExist() {
|
||||||
|
#ifdef LEAP_STUBS
|
||||||
|
return false;
|
||||||
|
#else
|
||||||
return _listener && _controller && _controller->devices().count() > 0;
|
return _listener && _controller && _controller->devices().count() > 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<glm::vec3>& LeapManager::getFingerTips() {
|
const std::vector<glm::vec3>& LeapManager::getFingerTips() {
|
||||||
|
|
Loading…
Reference in a new issue