mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 00:47:39 +02:00
Merge pull request #6618 from hyperlogic/tony/sixense-debug-draw-fix
Fix for sixense debug draw after migration to plugin.
This commit is contained in:
commit
f6cd04680d
1 changed files with 3 additions and 2 deletions
|
@ -8,10 +8,11 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "DebugDraw.h"
|
#include "DebugDraw.h"
|
||||||
|
#include "SharedUtil.h"
|
||||||
|
|
||||||
DebugDraw& DebugDraw::getInstance() {
|
DebugDraw& DebugDraw::getInstance() {
|
||||||
static DebugDraw instance;
|
static DebugDraw* instance = globalInstance<DebugDraw>("com.highfidelity.DebugDraw");
|
||||||
return instance;
|
return *instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
DebugDraw::DebugDraw() {
|
DebugDraw::DebugDraw() {
|
||||||
|
|
Loading…
Reference in a new issue