mirror of
https://github.com/overte-org/overte.git
synced 2025-07-10 22:18:42 +02:00
TODO comments for unimplemented input config functions
This commit is contained in:
parent
d84b306e21
commit
bfcd52b5dc
1 changed files with 7 additions and 1 deletions
|
@ -24,12 +24,14 @@ OpenXrInputPlugin::OpenXrInputPlugin(std::shared_ptr<OpenXrContext> c) {
|
||||||
_inputDevice = std::make_shared<InputDevice>(_context);
|
_inputDevice = std::make_shared<InputDevice>(_context);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Make a config UI
|
// TODO: Config options
|
||||||
static const QString XR_CONFIGURATION_LAYOUT = QString("");
|
static const QString XR_CONFIGURATION_LAYOUT = QString("");
|
||||||
|
|
||||||
|
// TODO: full-body-tracking
|
||||||
void OpenXrInputPlugin::calibrate() {
|
void OpenXrInputPlugin::calibrate() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: full-body-tracking
|
||||||
bool OpenXrInputPlugin::uncalibrate() {
|
bool OpenXrInputPlugin::uncalibrate() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -38,9 +40,11 @@ bool OpenXrInputPlugin::isSupported() const {
|
||||||
return _context->_isSupported;
|
return _context->_isSupported;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Config options
|
||||||
void OpenXrInputPlugin::setConfigurationSettings(const QJsonObject configurationSettings) {
|
void OpenXrInputPlugin::setConfigurationSettings(const QJsonObject configurationSettings) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Config options
|
||||||
QJsonObject OpenXrInputPlugin::configurationSettings() {
|
QJsonObject OpenXrInputPlugin::configurationSettings() {
|
||||||
return QJsonObject();
|
return QJsonObject();
|
||||||
}
|
}
|
||||||
|
@ -96,9 +100,11 @@ void OpenXrInputPlugin::pluginUpdate(float deltaTime, const controller::InputCal
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Config options
|
||||||
void OpenXrInputPlugin::loadSettings() {
|
void OpenXrInputPlugin::loadSettings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Config options
|
||||||
void OpenXrInputPlugin::saveSettings() const {
|
void OpenXrInputPlugin::saveSettings() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue