llStopLookAt

From Second Life Wiki
Jump to navigation Jump to search

Summary

Function: llStopLookAt( );

Stop causing object to point at a target

Use in conjunction llLookAt or llRotLookAt.

Examples

default
{
    state_entry()
    {
        llSensorRepeat("", "", AGENT, 20.0, PI, 0.2);
        //Detects avatars
    }
 
    sensor(integer total_number)
    {
        llLookAt( llDetectedPos(0) + <0.0, 0.0, 1.0>, 3.0, 1.0 );
        //Looks at the nearest avatar.
    }
 
    touch_start(integer total_number)
    {
        llStopLookAt();
        llSensorRemove();
        //Stops looking at any avatar and removes the sensor.
    }
}

See Also

Functions

Deep Notes

Search JIRA for related Issues

Signature

function void llStopLookAt();