From aa3303e3af2df9511b947902482409308198ce64 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Wed, 30 Sep 2015 20:13:31 +0100 Subject: add get method on physics actors PIDHoverActive --- OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs') diff --git a/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs b/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs index edc41e4..1965dc2 100644 --- a/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs +++ b/OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs @@ -391,7 +391,7 @@ namespace OpenSim.Region.PhysicsModules.SharedBase // Used for llSetHoverHeight and maybe vehicle height // Hover Height will override MoveTo target's Z - public abstract bool PIDHoverActive { set;} + public abstract bool PIDHoverActive {get; set;} public abstract float PIDHoverHeight { set;} public abstract PIDHoverType PIDHoverType { set;} public abstract float PIDHoverTau { set;} @@ -621,7 +621,7 @@ namespace OpenSim.Region.PhysicsModules.SharedBase public override float PIDTau { set { return; } } public override float PIDHoverHeight { set { return; } } - public override bool PIDHoverActive { set { return; } } + public override bool PIDHoverActive {get {return false;} set { return; } } public override PIDHoverType PIDHoverType { set { return; } } public override float PIDHoverTau { set { return; } } -- cgit v1.1