Difference between revisions of "LlGetOmega"

From Second Life Wiki
Jump to navigation Jump to search
(Added Caveat)
m
Line 5: Line 5:
|func_footnote
|func_footnote
|func_desc
|func_desc
|return_text=that is the rotation velocity in radians per second.
|return_text=that is the rotation velocity of the object in radians per second.
|spec
|spec
|caveats=*Returns the omega of the root if called in a child script.
|caveats=*Returns the omega of the root if called in a child prim.
|examples=<lsl>
|examples=<lsl>
default
default

Revision as of 12:16, 20 February 2010

Summary

Function: vector llGetOmega( );

Returns a vector that is the rotation velocity of the object in radians per second.

Caveats

  • Returns the omega of the root if called in a child prim.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> default {

   state_entry()
   {
       llTargetOmega(<0,0,0.5>, 1, 1);
   }
   touch_start(integer total_number)
   {
       vector omega = llGetOmega();
       llSay(0, (string)omega);
   }

}

</lsl>

See Also

Functions

•  llGetAccel
•  llGetVel
•  llGetForce Gets the objects force
•  llGetTorque
•  llGetMass
•  llTargetOmega Rotates the object around axis

Deep Notes

Search JIRA for related Issues

Signature

function vector llGetOmega();