missing file

avinationmerge
UbitUmarov 2012-12-11 04:47:40 +00:00
parent 80639ace95
commit 420015b7d0
1 changed files with 9 additions and 0 deletions

View File

@ -71,6 +71,15 @@ namespace OpenSim.Region.Physics.Manager
RelativeSpeed = 0f; // for now let this one be set explicity
CharacterFeet = true; // keep other plugins work as before
}
public ContactPoint(Vector3 position, Vector3 surfaceNormal, float penetrationDepth, bool feet)
{
Position = position;
SurfaceNormal = surfaceNormal;
PenetrationDepth = penetrationDepth;
RelativeSpeed = 0f; // for now let this one be set explicity
CharacterFeet = feet; // keep other plugins work as before
}
}
public struct ContactData