mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 12:37:51 +02:00
fixed a couple of doc errors and accounted for some edge cases
This commit is contained in:
parent
3ab4be6b8d
commit
e63d98e137
2 changed files with 418 additions and 464 deletions
File diff suppressed because it is too large
Load diff
|
@ -2164,7 +2164,7 @@ signals:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Notifies when the analogPlusWalkSpeed value is changed.
|
* Notifies when the analogPlusWalkSpeed value is changed.
|
||||||
* @function MyAvatar.analogPlusWalkSpeedChanged
|
* @function MyAvatar.analogPlusWalkSpeedChanged
|
||||||
* @param {float} speed - the new avatar walk speed
|
* @param {float} value - the new avatar walk speed
|
||||||
* @returns {Signal}
|
* @returns {Signal}
|
||||||
*/
|
*/
|
||||||
void analogPlusWalkSpeedChanged(float value);
|
void analogPlusWalkSpeedChanged(float value);
|
||||||
|
@ -2172,7 +2172,7 @@ signals:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Notifies when the analogPlusSprintSpeed value is changed.
|
* Notifies when the analogPlusSprintSpeed value is changed.
|
||||||
* @function MyAvatar.analogPlusSprintSpeedChanged
|
* @function MyAvatar.analogPlusSprintSpeedChanged
|
||||||
* @param {float} speed - the new avatar sprint speed
|
* @param {float} value - the new avatar sprint speed
|
||||||
* @returns {Signal}
|
* @returns {Signal}
|
||||||
*/
|
*/
|
||||||
void analogPlusSprintSpeedChanged(float value);
|
void analogPlusSprintSpeedChanged(float value);
|
||||||
|
@ -2180,7 +2180,7 @@ signals:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Notifies when the sprintSpeed value is changed.
|
* Notifies when the sprintSpeed value is changed.
|
||||||
* @function MyAvatar.sprintSpeedChanged
|
* @function MyAvatar.sprintSpeedChanged
|
||||||
* @param {float} speed - the new avatar sprint speed
|
* @param {float} value - the new avatar sprint speed
|
||||||
* @returns {Signal}
|
* @returns {Signal}
|
||||||
*/
|
*/
|
||||||
void sprintSpeedChanged(float value);
|
void sprintSpeedChanged(float value);
|
||||||
|
@ -2188,7 +2188,7 @@ signals:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* Notifies when the walkBackwardSpeed value is changed.
|
* Notifies when the walkBackwardSpeed value is changed.
|
||||||
* @function MyAvatar.walkBackwardSpeedChanged
|
* @function MyAvatar.walkBackwardSpeedChanged
|
||||||
* @param {float} speed - the new avatar walk backward speed
|
* @param {float} value - the new avatar walk backward speed
|
||||||
* @returns {Signal}
|
* @returns {Signal}
|
||||||
*/
|
*/
|
||||||
void walkBackwardSpeedChanged(float value);
|
void walkBackwardSpeedChanged(float value);
|
||||||
|
|
Loading…
Reference in a new issue