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,11 @@
default
{
state_entry()
{
rotation aRot = ZERO_ROTATION;
rotation bRot = llGetRot();
float aBetween = llAngleBetween( aRot, bRot );
llOwnerSay((string)aBetween);
//llGetRot() being < 0, 0, 90 > this should report 1.570796
}
}