Merge branch 'master' into careminster

Conflicts:
	OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
avinationmerge
Melanie 2012-07-29 16:10:45 +01:00
commit 277491d871
1 changed files with 10 additions and 4 deletions

View File

@ -11795,11 +11795,17 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
ret.Add(new LSL_Vector(opos.X, opos.Y, opos.Z));
break;
case ScriptBaseClass.OBJECT_ROT:
// Quaternion orot = obj.RotationOffset;
// ret.Add(new LSL_Rotation(orot.X, orot.Y, orot.Z, orot.W));
{
Quaternion rot = Quaternion.Identity;
LSL_Rotation objrot = GetPartRot(obj);
ret.Add(objrot);
if (obj.ParentGroup.RootPart == obj)
rot = obj.ParentGroup.GroupRotation;
else
rot = obj.GetWorldRotation();
LSL_Rotation objrot = new LSL_Rotation(rot.X, rot.Y, rot.Z, rot.W);
ret.Add(objrot);
}
break;
case ScriptBaseClass.OBJECT_VELOCITY:
Vector3 ovel = obj.Velocity;