Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
a7d9f5598f
|
@ -523,7 +523,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
{
|
||||
if (PhysicsActor != null)
|
||||
{
|
||||
m_velocity = PhysicsActor.Velocity;
|
||||
m_velocity = PhysicsActor.TargetVelocity;
|
||||
|
||||
// m_log.DebugFormat(
|
||||
// "[SCENE PRESENCE]: Set velocity {0} for {1} in {2} via getting Velocity!",
|
||||
|
|
|
@ -257,6 +257,12 @@ namespace OpenSim.Region.Physics.Manager
|
|||
/// Getting this returns the velocity calculated by physics scene updates, using factors such as target velocity,
|
||||
/// time to accelerate and collisions.
|
||||
/// </remarks>
|
||||
public virtual Vector3 TargetVelocity
|
||||
{
|
||||
get { return Velocity; }
|
||||
set { Velocity = value; }
|
||||
}
|
||||
|
||||
public abstract Vector3 Velocity { get; set; }
|
||||
|
||||
public abstract Vector3 Torque { get; set; }
|
||||
|
|
Loading…
Reference in New Issue