OsSetOwnerSpeed
From OpenSimulator
(Difference between revisions)
m (XEngine to OSSL) |
m (Change note to additional_info) |
||
Line 20: | Line 20: | ||
To be precise, it affects physical velocity. If you specify too large or too small number for '''SpeedModifier''', the target will be unmovable, showing the following message in the region console: | To be precise, it affects physical velocity. If you specify too large or too small number for '''SpeedModifier''', the target will be unmovable, showing the following message in the region console: | ||
− | |||
− | + | :''[PHYSICS]: Got a NaN velocity from Scene in a Character'' | |
+ | |additional_info= | ||
| | | | ||
}} | }} |
Revision as of 13:41, 24 November 2020
osSetOwnerSpeed(float SpeedModifier)
| |
Implemented september 28, 2018 by Bill Blight in GIT# 6d9de1 & 881268 and MANTIS# 8383
This allows for users to speed themselves up. It multiplies the running, walking, rotating and flying of the avatar. The default value for SpeedModifier is 1.0 and the maximum value is 4.0. To be precise, it affects physical velocity. If you specify too large or too small number for SpeedModifier, the target will be unmovable, showing the following message in the region console:
| |
Threat Level | Moderate |
Permissions | ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
default { state_entry() { osSetOwnerSpeed(2.5); } } |