From 4cb925e973938e6314d2695942237631e8ade67a Mon Sep 17 00:00:00 2001 From: sabrina-shanman Date: Wed, 7 Aug 2019 10:04:44 -0700 Subject: [PATCH] Fix jsdoc for getPointerScriptParameters --- interface/src/raypick/PointerScriptingInterface.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/interface/src/raypick/PointerScriptingInterface.h b/interface/src/raypick/PointerScriptingInterface.h index 20c1094da1..0eed8b4741 100644 --- a/interface/src/raypick/PointerScriptingInterface.h +++ b/interface/src/raypick/PointerScriptingInterface.h @@ -161,13 +161,13 @@ public: Q_INVOKABLE void removePointer(unsigned int uid) const { DependencyManager::get()->removePointer(uid); } /**jsdoc - * Gets the parameters that were passed in to {@link Picks.createPick} to create the pick, - * if the pick was created through a script. - * Note that these properties do not reflect the current state of the pick. - * See {@link Picks.getPickProperties}. - * @function Picks.getPickScriptParameters - * @param {number} id - The ID of the pick. - * @returns {Picks.RayPickProperties|Picks.ParabolaPickProperties|Picks.StylusPickProperties|Picks.CollisionPickProperties} User-provided properties, per the pick type. + * Gets the parameters that were passed in to {@link Pointers.createPointer} to create the pointer, + * if the pointer was created through a script. + * Note that these properties do not reflect the current state of the pointer. + * See {@link Pointers.getPointerProperties}. + * @function Pointers.getPointerScriptParameters + * @param {number} id - The ID of the pointer. + * @returns {Pointers.RayPointerProperties|Picks.ParabolaPointerProperties|Picks.StylusPointerProperties} User-provided properties, per the pointer type. */ Q_INVOKABLE QVariantMap getPointerScriptParameters(unsigned int uid) const;