LlGetOmega
Revision as of 02:22, 22 January 2015 by ObviousAltIsObvious Resident (talk | contribs)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: vector llGetOmega( );79 | Function ID |
0.0 | Forced Delay |
10.0 | Energy |
Returns a vector that is the rotation velocity of the object in radians per second.
Caveats
Examples
default
{
state_entry()
{
llTargetOmega(<0,0,0.5>, 1, 1);
}
touch_start(integer total_number)
{
vector omega = llGetOmega();
llSay(0, (string)omega);
}
}
See Also
Functions
• | llGetAccel | |||
• | llGetVel | |||
• | llGetForce | – | Gets the objects force | |
• | llGetTorque | |||
• | llGetMass | |||
• | llTargetOmega | – | Rotates the object around axis |