mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 11:37:58 +02:00
commented out code responsible for creating / populating 'Avatar' menu (per request from Mukul)
This commit is contained in:
parent
48fc81b082
commit
bc6bfc1003
1 changed files with 4 additions and 0 deletions
|
@ -205,10 +205,12 @@ bool ViveControllerManager::activate() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* temporarily temove per request from Mukul
|
||||||
_container->addMenu(MENU_PATH);
|
_container->addMenu(MENU_PATH);
|
||||||
_container->addMenuItem(PluginType::INPUT_PLUGIN, MENU_PATH, RENDER_CONTROLLERS,
|
_container->addMenuItem(PluginType::INPUT_PLUGIN, MENU_PATH, RENDER_CONTROLLERS,
|
||||||
[this](bool clicked) { this->setRenderControllers(clicked); },
|
[this](bool clicked) { this->setRenderControllers(clicked); },
|
||||||
true, true);
|
true, true);
|
||||||
|
*/
|
||||||
|
|
||||||
enableOpenVrKeyboard(_container);
|
enableOpenVrKeyboard(_container);
|
||||||
|
|
||||||
|
@ -224,8 +226,10 @@ void ViveControllerManager::deactivate() {
|
||||||
|
|
||||||
disableOpenVrKeyboard();
|
disableOpenVrKeyboard();
|
||||||
|
|
||||||
|
/* temporarily removed per request from Mukul
|
||||||
_container->removeMenuItem(MENU_NAME, RENDER_CONTROLLERS);
|
_container->removeMenuItem(MENU_NAME, RENDER_CONTROLLERS);
|
||||||
_container->removeMenu(MENU_PATH);
|
_container->removeMenu(MENU_PATH);
|
||||||
|
*/
|
||||||
|
|
||||||
if (_system) {
|
if (_system) {
|
||||||
_container->makeRenderingContextCurrent();
|
_container->makeRenderingContextCurrent();
|
||||||
|
|
Loading…
Reference in a new issue