TODO comments for unimplemented input config functions

This commit is contained in:
Ada 2025-04-05 17:20:34 +10:00
parent d84b306e21
commit bfcd52b5dc

View file

@ -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 {
} }