fix android build

This commit is contained in:
HifiExperiments 2021-02-11 18:01:33 -08:00
parent b6e7466804
commit a18c24832a

View file

@ -161,7 +161,7 @@ public:
QString getDefaultMappingConfig() const override;
void update(float deltaTime, const controller::InputCalibrationData& inputCalibrationData) override;
void focusOutEvent() override;
bool triggerHapticPulse(float strength, float duration, controller::Hand hand) override;
bool triggerHapticPulse(float strength, float duration, uint16_t index) override;
private:
void handlePose(float deltaTime, const controller::InputCalibrationData& inputCalibrationData,
@ -516,12 +516,16 @@ void OculusMobileInputDevice::handleRotationForUntrackedHand(const controller::I
pose = pose.transform(controllerToAvatar);
}
bool OculusMobileInputDevice::triggerHapticPulse(float strength, float duration, controller::Hand hand) {
bool OculusMobileInputDevice::triggerHapticPulse(float strength, float duration, uint16_t index) {
if (index > 2) {
return false;
}
controller::Hand hand = (controller::Hand)index;
Locker locker(_lock);
bool success = true;
qDebug()<<"AAAA: Haptic duration %f " << duration;
if (hand == controller::BOTH || hand == controller::LEFT) {
success &= _hands[0].setHapticFeedback(strength, duration);
}