youhei (owner)

Revisions

gist: 21244 Download_button fork
public
Public Clone URL: git://gist.github.com/21244.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
//Causes Object to look at nearest Avatar.
default
{
    state_entry()
    {
        llSensorRepeat("", "", AGENT, 20.0, PI, 0.2);
    }
 
    sensor(integer total_number)
    {
        llRotLookAt( llEuler2Rot(llDetectedPos(0) + <0.0, 0.0, 1.0>), 3.0, 1.0 );
    }
}