diff --git a/interface/src/scripting/ControllerScriptingInterface.h b/interface/src/scripting/ControllerScriptingInterface.h index e16383e234..051a372aad 100644 --- a/interface/src/scripting/ControllerScriptingInterface.h +++ b/interface/src/scripting/ControllerScriptingInterface.h @@ -105,9 +105,6 @@ class ScriptEngine; *
0
corresponds to Standard
.
- * @returns {number} The current value of the button if the parameters are valid, otherwise 0
.
- * @deprecated This function no longer works.
- */
- // FIXME: This function causes a JavaScript crash: https://highfidelity.manuscript.com/f/cases/edit/14139
- Q_INVOKABLE float getButtonValue(StandardButtonChannel source, uint16_t device = 0) const;
-
- /**jsdoc
- * Get the value of an axis control on a particular device.
- * @function Controller.getAxisValue
- * @variation 0
- * @param {StandardAxisChannel} source - The axis to get the value of.
- * @param {number} [device=0] - The ID of the hardware device to get the value from. The default value of
- * 0
corresponds to Standard
.
- * @returns {number} The current value of the axis if the parameters are valid, otherwise 0
.
- * @deprecated This function no longer works.
- */
- Q_INVOKABLE float getAxisValue(StandardAxisChannel source, uint16_t device = 0) const;
-
- /**jsdoc
- * Get the value of an pose control on a particular device.
- * @function Controller.getPoseValue
- * @variation 0
- * @param {StandardPoseChannel} source - The pose to get the value of.
- * @param {number} [device=0] - The ID of the hardware device to get the value from. The default value of
- * 0
corresponds to Standard
.
- * @returns {Pose} The current value of the controller pose output if the parameters are valid, otherwise an invalid
- * pose with Pose.valid == false
.
- * @deprecated This function no longer works.
- */
- Q_INVOKABLE Pose getPoseValue(StandardPoseChannel source, uint16_t device = 0) const;
-
/**jsdoc
* Triggers a haptic pulse on connected and enabled devices that have the capability.
* @function Controller.triggerHapticPulse