Difference between revisions of "LlApplyRotationalImpulse"

From Second Life Wiki
Jump to navigation Jump to search
m
m (Pointing out, that function does not work on attachments.)
 
(2 intermediate revisions by 2 users not shown)
Line 4: Line 4:
|func=llApplyRotationalImpulse
|func=llApplyRotationalImpulse
|p1_type=vector|p1_name=force
|p1_type=vector|p1_name=force
|p2_type=integer|p2_name=local
|p2_type=integer|p2_subtype=boolean|p2_name=local
|func_desc=Applies rotational impulse to object.
|func_desc=Applies rotational impulse to object.
|func_footnote
|func_footnote
|return_text
|return_text
|spec
|spec
|caveats
|caveats=
* It does '''not''' work on attachments.
|constants
|constants
|examples=<lsl>
|examples=<source lang="lsl2">
default
default
{
{
Line 19: Line 20:
     }
     }
}
}
</lsl>
</source>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llApplyImpulse]]}}
|also_functions={{LSL DefineRow||[[llApplyImpulse]]}}

Latest revision as of 11:54, 30 March 2018

Summary

Function: llApplyRotationalImpulse( vector force, integer local );

Applies rotational impulse to object.

• vector force
• integer local boolean, if TRUE force is treated as a local directional vector, if FALSE force is treated as a region directional vector

Caveats

All Issues ~ Search JIRA for related Bugs

Examples

default
{
    state_entry()
    {
        llApplyRotationalImpulse(<0,5,0>,TRUE); //Rotates object.
    }
}

See Also

Functions

•  llApplyImpulse
•  llSetAngularVelocity

Deep Notes

Search JIRA for related Issues

Signature

function void llApplyRotationalImpulse( vector force, integer local );