add a couple of LL conversion properties to SOP. I'll wait to clean

up the sit target usage until the sit target fix patch goes in, but it should
be cleaned.
Get prims table mappings to the point where nhibernate likes them enough
to start.
Remove field from asset mapping so it will start
This commit is contained in:
Sean Dague
2008-07-03 18:25:18 +00:00
parent b9bba13c39
commit f0f1e00ec3
4 changed files with 187 additions and 29 deletions

View File

@@ -776,13 +776,41 @@ namespace OpenSim.Region.Environment.Scenes
public Quaternion SitTargetOrientation
{
get { return m_sitTargetOrientation; }
set { m_sitTargetOrientation = value; }
}
public Vector3 SitTargetPosition
{
get { return m_sitTargetPosition; }
set { m_sitTargetPosition = value; }
}
// This sort of sucks, but I'm adding these in to make some of
// the mappings more consistant.
public LLVector3 SitTargetPositionLL
{
get { return new LLVector3(m_sitTargetPosition.x, m_sitTargetPosition.y,m_sitTargetPosition.z); }
set { m_sitTargetPosition = new Vector3(value.X, value.Y, value.Z); }
}
public LLQuaternion SitTargetOrientationLL
{
get
{
return new LLQuaternion(
m_sitTargetOrientation.x,
m_sitTargetOrientation.y,
m_sitTargetOrientation.z,
m_sitTargetOrientation.w
);
}
set { m_sitTargetOrientation = new Quaternion(value.X, value.Y, value.Z, value.W); }
}
public bool Stopped
{
get {