llLookAt

From Second Life Wiki
Revision as of 19:28, 7 April 2008 by Zand Gundersen (talk | contribs) (added example)
Jump to navigation Jump to search

Summary

Function: llLookAt( vector target, float strength, float damping );

Cause object to point its' up axis (positive z) towards target

Continues to track target untill llStopLookAt is called.

If the object isn't physical, the settings don't seem to have any effect except the force must be > 0. For physical objects, the strength seems to be something like viscosity, not the rotating strength, so the weaker it is the faster the rotation happens. The damping value controls how fast the rotation damps out. Low values relative to the strength make it bouncy, often overshooting the target, high values sluggish. The strength and damping values seem to have no relation to the mass of the object.

• vector target
• float strength
• float damping seconds to critically damp in

To change the position in the same manner use llMoveToTarget.

Caveats

This does not guarantee that physical objects will wind up pointing at the target. Depending on the shape of the object, the strength and the damping, it may well settle out at a different rotation pointing in a different direction if the damping stops the rotation before the final position is reached.

If the object is physical and not symmetrical it may cause a recoil effect where the object winds up drifting away from it's original position as well as making the final rotation it settles on less accurate.

All Issues ~ Search JIRA for related Bugs

Examples

<lsl>// Block Buddy // by Zand Gundersen // Causes Object to look at nearest Avatar. // // THIS SCRIPT IS PUBLIC DOMAIN! Do not delete the credits at the top of this script! // Feel free to copy, modify, and use this script.

default {

   state_entry()
   {
       llSensorRepeat("",NULL_KEY,AGENT,20,PI,.2);
   }
   sensor(integer total_number)
   {
       if (total_number!=0)
       llLookAt( llDetectedPos(0)+<0,0,1>, 3, 1 );
   }
}</lsl>

See Also

Deep Notes

Search JIRA for related Issues

Signature

function void llLookAt( vector target, float strength, float damping );