mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 08:14:48 +02:00
Miscellanous JSDoc fixes for issues noticed in passing
This commit is contained in:
parent
539c280281
commit
2ba8dc37d0
2 changed files with 7 additions and 4 deletions
|
@ -182,7 +182,7 @@ public:
|
|||
* than iterating over each avatar and obtaining data about them in JavaScript, as that method
|
||||
* locks and unlocks each avatar's data structure potentially hundreds of times per update tick.
|
||||
* @function AvatarManager.getPalData
|
||||
* @param {string[]} specificAvatarIdentifiers - A list of specific Avatar Identifiers about
|
||||
* @param {string[]} [specificAvatarIdentifiers] - A list of specific Avatar Identifiers about
|
||||
* which you want to get PAL data
|
||||
* @returns {object}
|
||||
*/
|
||||
|
|
|
@ -145,9 +145,11 @@ public:
|
|||
* @hifi-interface
|
||||
* @hifi-client-entity
|
||||
*
|
||||
* @property {number} Ray Ray Picks intersect a ray with the nearest object in front of them, along a given direction.
|
||||
* @property {number} Stylus Stylus Picks provide "tapping" functionality on/into flat surfaces.
|
||||
* @property {number} Parabola Parabola Picks intersect a parabola with the nearest object in front of them, with a given initial velocity and acceleration.
|
||||
* @property {number} Ray Ray picks intersect a ray with the nearest object in front of them, along a given direction.
|
||||
* @property {number} Stylus Stylus picks provide "tapping" functionality on/into flat surfaces.
|
||||
* @property {number} Parabola Parabola picks intersect a parabola with the nearest object in front of them, with a given
|
||||
* initial velocity and acceleration.
|
||||
* @property {number} Collision Collision picks intersect a collision volume with avatars and entities that have collisions.
|
||||
*/
|
||||
/**jsdoc
|
||||
* <table>
|
||||
|
@ -158,6 +160,7 @@ public:
|
|||
* <tr><td><code>{@link PickType(0)|PickType.Ray}</code></td><td></td></tr>
|
||||
* <tr><td><code>{@link PickType(0)|PickType.Stylus}</code></td><td></td></tr>
|
||||
* <tr><td><code>{@link PickType(0)|PickType.Parabola}</code></td><td></td></tr>
|
||||
* <tr><td><code>{@link PickType(0)|PickType.Collision}</code></td><td></td></tr>
|
||||
* </tbody>
|
||||
* </table>
|
||||
* @typedef {number} PickType
|
||||
|
|
Loading…
Reference in a new issue