mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 19:56:04 +08:00
14 lines
286 B
Plaintext
14 lines
286 B
Plaintext
default
|
|
{
|
|
state_entry()
|
|
{
|
|
llOwnerSay("Touch me");
|
|
}
|
|
touch_start(integer total_number)
|
|
{
|
|
rotation Y_10 = llEuler2Rot( < 0, 0, 30 * DEG_TO_RAD > );
|
|
rotation newRotation = llGetRot() * Y_10;
|
|
llSetRot( newRotation );
|
|
}
|
|
}
|