More inventory work for CharlieO. Final patch to make it all work yet to come.

This commit is contained in:
Brian McBee
2008-01-07 01:03:46 +00:00
parent 286802558e
commit 35b0c2e9df
76 changed files with 3511 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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 );
}
}