* Patch from Alondria - Added LLFunctions llGetMass(), llGetLandOwnerAt(), llGetVel(), llGround()

This commit is contained in:
Teravus Ovares
2007-12-23 13:14:56 +00:00
parent 984f2da17d
commit b2903c4a8a
3 changed files with 39 additions and 9 deletions

View File

@@ -1225,6 +1225,22 @@ namespace OpenSim.Region.Environment.Scenes
#endregion
#region Physics
public float GetMass()
{
if (PhysActor != null)
{
return PhysActor.Mass;
}
else
{
return 0;
}
}
#endregion
#region Texture
/// <summary>