3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-27 07:55:55 +02:00

Re-added removed jsdoc comments for removed AvatarInput jsapi.

With a comment that these properties/functions have been removed.
This commit is contained in:
Anthony J. Thibault 2019-10-26 09:20:51 -07:00
parent dc7b611e8e
commit 9325ea588a

View file

@ -32,6 +32,14 @@ class AvatarInputs : public QObject {
* @hifi-client-entity
* @hifi-avatar
*
* @property {boolean} cameraEnabled - <code>true</code> if webcam face tracking is enabled, <code>false</code> if it is
* disabled.
* <em>Read-only.</em>
* <p class="important">Deprecated: This property is deprecated and has been removed.</p>
* @property {boolean} cameraMuted - <code>true</code> if webcam face tracking is muted (temporarily disabled),
* <code>false</code> it if isn't.
* <em>Read-only.</em>
* <p class="important">Deprecated: This property is deprecated and has been removed.</p>
* @property {boolean} ignoreRadiusEnabled - <code>true</code> if the privacy shield is enabled, <code>false</code> if it
* is disabled.
* <em>Read-only.</em>
@ -87,6 +95,20 @@ public slots:
signals:
/**jsdoc
* Triggered when webcam face tracking is enabled or disabled.
* @deprecated This signal is deprecated and has been removed.
* @function AvatarInputs.cameraEnabledChanged
* @returns {Signal}
*/
/**jsdoc
* Triggered when webcam face tracking is muted (temporarily disabled) or unmuted.
* @deprecated This signal is deprecated and has been removed.
* @function AvatarInputs.cameraMutedChanged
* @returns {Signal}
*/
/**jsdoc
* Triggered when the display mode changes between desktop and HMD.
* @function AvatarInputs.isHMDChanged
@ -157,6 +179,12 @@ protected:
*/
Q_INVOKABLE void resetSensors();
/**jsdoc
* Toggles the muting (temporary disablement) of webcam face tracking on/off.
* <p class="important">Deprecated: This function is deprecated and has been removed.</p>
* @function AvatarInputs.toggleCameraMute
*/
private:
void onAvatarEnteredIgnoreRadius();
void onAvatarLeftIgnoreRadius();