diff options
author | UbitUmarov | 2016-07-25 07:24:39 +0100 |
---|---|---|
committer | UbitUmarov | 2016-07-25 07:24:39 +0100 |
commit | fcdf0b00b18861574ba6919425bd8857681b0c18 (patch) | |
tree | bbb05705567eb0502c31c5de4a4bd3067f01c0c0 /OpenSim/Region/PhysicsModules/SharedBase | |
parent | add missing overrides (diff) | |
download | opensim-SC_OLD-fcdf0b00b18861574ba6919425bd8857681b0c18.zip opensim-SC_OLD-fcdf0b00b18861574ba6919425bd8857681b0c18.tar.gz opensim-SC_OLD-fcdf0b00b18861574ba6919425bd8857681b0c18.tar.bz2 opensim-SC_OLD-fcdf0b00b18861574ba6919425bd8857681b0c18.tar.xz |
add give a body to default rootVelocity
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs b/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs index a7c4e8d..04ccbf0 100644 --- a/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs +++ b/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs | |||
@@ -396,7 +396,7 @@ namespace OpenSim.Region.PhysicsModules.SharedBase | |||
396 | } | 396 | } |
397 | 397 | ||
398 | public abstract Vector3 Velocity { get; set; } | 398 | public abstract Vector3 Velocity { get; set; } |
399 | public virtual Vector3 rootVelocity { get; } | 399 | public virtual Vector3 rootVelocity { get { return Vector3.Zero; } } |
400 | 400 | ||
401 | public abstract Vector3 Torque { get; set; } | 401 | public abstract Vector3 Torque { get; set; } |
402 | public abstract float CollisionScore { get; set;} | 402 | public abstract float CollisionScore { get; set;} |