mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-09 18:15:33 +02:00
update TouchscreenDevice
pass inputCalibrationData to update
This commit is contained in:
parent
9db45c01cc
commit
b291e32b7c
2 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ void TouchscreenDevice::pluginUpdate(float deltaTime, bool jointsCaptured) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TouchscreenDevice::InputDevice::update(float deltaTime, bool jointsCaptured) {
|
void TouchscreenDevice::InputDevice::update(float deltaTime, const controller::InputCalibrationData& inputCalibrationData, bool jointsCaptured) {
|
||||||
_axisStateMap.clear();
|
_axisStateMap.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ public:
|
||||||
virtual const QString& getName() const override { return NAME; }
|
virtual const QString& getName() const override { return NAME; }
|
||||||
|
|
||||||
virtual void pluginFocusOutEvent() override { _inputDevice->focusOutEvent(); }
|
virtual void pluginFocusOutEvent() override { _inputDevice->focusOutEvent(); }
|
||||||
virtual void pluginUpdate(float deltaTime, bool jointsCaptured) override;
|
virtual void pluginUpdate(float deltaTime, const controller::InputCalibrationData& inputCalibrationData, bool jointsCaptured) override;
|
||||||
|
|
||||||
void touchBeginEvent(const QTouchEvent* event);
|
void touchBeginEvent(const QTouchEvent* event);
|
||||||
void touchEndEvent(const QTouchEvent* event);
|
void touchEndEvent(const QTouchEvent* event);
|
||||||
|
|
Loading…
Reference in a new issue