diff --git a/libraries/entities/src/EntityItemProperties.cpp b/libraries/entities/src/EntityItemProperties.cpp index c16839dc1a..5437ceaab8 100644 --- a/libraries/entities/src/EntityItemProperties.cpp +++ b/libraries/entities/src/EntityItemProperties.cpp @@ -965,7 +965,7 @@ EntityPropertyFlags EntityItemProperties::getChangedProperties() const { * // Value overrides entity's "color" property. * albedo: [1.0, 1.0, 0] // Yellow * } - * }), + * }) * }); */ diff --git a/libraries/entities/src/EntityScriptingInterface.h b/libraries/entities/src/EntityScriptingInterface.h index ca9108852f..52470e56c4 100644 --- a/libraries/entities/src/EntityScriptingInterface.h +++ b/libraries/entities/src/EntityScriptingInterface.h @@ -1294,7 +1294,7 @@ public slots: Q_INVOKABLE int getJointParent(const QUuid& entityID, int index); /**jsdoc - * Gets the translation of a joint in a {@link Entities.EntityProperties-Model|Model} entity relative to the entity's + * Gets the rotation of a joint in a {@link Entities.EntityProperties-Model|Model} entity relative to the entity's * position and orientation. * @function Entities.getAbsoluteJointRotationInObjectFrame * @param {Uuid} entityID - The ID of the entity. diff --git a/libraries/script-engine/src/ScriptEngine.cpp b/libraries/script-engine/src/ScriptEngine.cpp index e679e9f6c5..57e9b06f9d 100644 --- a/libraries/script-engine/src/ScriptEngine.cpp +++ b/libraries/script-engine/src/ScriptEngine.cpp @@ -2210,7 +2210,7 @@ void ScriptEngine::loadEntityScript(const EntityItemID& entityID, const QString& /**jsdoc * Triggered when the script starts for a user. See also, {@link Script.entityScriptPreloadFinished}. *

Note: Can only be connected to via this.preload = function (...) { ... } in the entity script.

- *
Available in:Client Entity ScriptsServer Entity Scripts
+ *

Supported Script Types: Client Entity Scripts • Server Entity Scripts

* @function Entities.preload * @param {Uuid} entityID - The ID of the entity that the script is running in. * @returns {Signal} @@ -2416,7 +2416,7 @@ void ScriptEngine::entityScriptContentAvailable(const EntityItemID& entityID, co /**jsdoc * Triggered when the script terminates for a user. *

Note: Can only be connected to via this.unoad = function () { ... } in the entity script.

- *
Available in:Client Entity ScriptsServer Entity Scripts
+ *

Supported Script Types: Client Entity Scripts • Server Entity Scripts

* @function Entities.unload * @param {Uuid} entityID - The ID of the entity that the script is running in. * @returns {Signal} diff --git a/libraries/script-engine/src/ScriptEngine.h b/libraries/script-engine/src/ScriptEngine.h index 7300f52f9b..3ffef16844 100644 --- a/libraries/script-engine/src/ScriptEngine.h +++ b/libraries/script-engine/src/ScriptEngine.h @@ -416,8 +416,10 @@ public: * Provides access to methods or objects provided in an external JavaScript or JSON file. * See {@link https://docs.highfidelity.com/script/js-tips.html} for further details. * @function Script.require - * @param {string} module - The module to use. May be a JavaScript file or the name of a system module such as - * "sppUi". + * @param {string} module - The module to use. May be a JavaScript file, a JSON file, or the name of a system module such + * as "appUi" (i.e., the "appUi.js" system module JavaScript file). + * @returns {object|array} The value assigned to module.exports in the JavaScript file, or the value defined + * in the JSON file. */ Q_INVOKABLE QScriptValue require(const QString& moduleId); @@ -842,7 +844,7 @@ signals: /**jsdoc * Triggered when the script starts for the user. See also, {@link Entities.preload}. - *
Available in:Client Entity ScriptsServer Entity Scripts
+ *

Supported Script Types: Client Entity Scripts • Server Entity Scripts

* @function Script.entityScriptPreloadFinished * @param {Uuid} entityID - The ID of the entity that the script is running in. * @returns {Signal} diff --git a/plugins/openvr/src/ViveControllerManager.cpp b/plugins/openvr/src/ViveControllerManager.cpp index c21a9ae4df..8aa7311de4 100644 --- a/plugins/openvr/src/ViveControllerManager.cpp +++ b/plugins/openvr/src/ViveControllerManager.cpp @@ -1319,13 +1319,13 @@ void ViveControllerManager::InputDevice::setConfigFromString(const QString& valu * RXnumbernumberRight stick x-axis scale. * RYnumbernumberRight stick y-axis scale. * LSnumbernumberLeft touch pad pressed. - * LS_CENTERnumbernumberLeft touch pad center pressed. - * LS_XnumbernumberLeft touch pad pressed x-coordinate. - * LS_YnumbernumberLeft touch pad pressed y-coordinate. + * LSCenternumbernumberLeft touch pad center pressed. + * LSXnumbernumberLeft touch pad pressed x-coordinate. + * LSYnumbernumberLeft touch pad pressed y-coordinate. * RSnumbernumberRight touch pad pressed. - * RS_CENTERnumbernumberRight touch pad center pressed. - * RS_XnumbernumberRight touch pad pressed x-coordinate. - * RS_YnumbernumberRight touch pad pressed y-coordinate. + * RSCenternumbernumberRight touch pad center pressed. + * RSXnumbernumberRight touch pad pressed x-coordinate. + * RSYnumbernumberRight touch pad pressed y-coordinate. * LSTouchnumbernumberLeft touch pad is touched. * RSTouchnumbernumberRight touch pad is touched. * Triggers