ODECharacter overrides TargetVelocity. No change to existing behavior

This commit is contained in:
Dan Lake
2012-11-08 01:18:25 -08:00
parent a407eb287f
commit 9bc0419679

View File

@@ -661,6 +661,20 @@ namespace OpenSim.Region.Physics.OdePlugin
set { return; }
}
public override Vector3 TargetVelocity
{
get
{
return m_taintTargetVelocity;
}
set
{
Velocity = value;
}
}
public override Vector3 Velocity
{
get
@@ -1394,4 +1408,4 @@ namespace OpenSim.Region.Physics.OdePlugin
m_eventsubscription += p;
}
}
}
}