Difference between revisions of "LlRotTarget"

From Second Life Wiki
Jump to navigation Jump to search
Line 4: Line 4:
|return_type=integer|p1_type=rotation|p1_name=rot|p2_type=float|p2_name=error
|return_type=integer|p1_type=rotation|p1_name=rot|p2_type=float|p2_name=error
|func_footnote=A similar function exists for positions: {{LSLG|llTarget}}<br/>This function does not rotate the object, to do that use {{LSLG|llSetRot}} or {{LSLG|llRotLookAt}}.
|func_footnote=A similar function exists for positions: {{LSLG|llTarget}}<br/>This function does not rotate the object, to do that use {{LSLG|llSetRot}} or {{LSLG|llRotLookAt}}.
|func_desc=Registers a '''rot''' with a '''error''' that triggers {{LSLG|at_rot_target}} and {{LSLG|not_at_rot_target}} events until unregistered.
|func_desc=This function is to have the script know when it has reached a rotation.<br/>It registers a '''rot''' with a '''error''' that triggers {{LSLG|at_rot_target}} and {{LSLG|not_at_rot_target}} events continuously until unregistered.
|return_text=that is the handle to unregister the target with {{LSLG|llRotTargetRemove}}
|return_text=that is the handle to unregister the target with {{LSLG|llRotTargetRemove}}
|spec
|spec

Revision as of 12:34, 21 February 2007

Summary

Function: integer llRotTarget( rotation rot, float error );

This function is to have the script know when it has reached a rotation.
It registers a rot with a error that triggers at_rot_target and not_at_rot_target events continuously until unregistered.
Returns an integer that is the handle to unregister the target with llRotTargetRemove

• rotation rot
• float error

A similar function exists for positions: llTarget
This function does not rotate the object, to do that use llSetRot or llRotLookAt.

Examples

Deep Notes

Search JIRA for related Issues

Signature

function integer llRotTarget( rotation rot, float error );