diff options
author | UbitUmarov | 2015-09-30 20:13:31 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-30 20:13:31 +0100 |
commit | aa3303e3af2df9511b947902482409308198ce64 (patch) | |
tree | 35ea683b9a918a09763b87aa2916d58a2ba9f199 /OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs | |
parent | first steps adding suport for llSetHoverHeight() called from attachments on ... (diff) | |
download | opensim-SC-aa3303e3af2df9511b947902482409308198ce64.zip opensim-SC-aa3303e3af2df9511b947902482409308198ce64.tar.gz opensim-SC-aa3303e3af2df9511b947902482409308198ce64.tar.bz2 opensim-SC-aa3303e3af2df9511b947902482409308198ce64.tar.xz |
add get method on physics actors PIDHoverActive
Diffstat (limited to 'OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs')
-rw-r--r-- | OpenSim/Region/PhysicsModules/SharedBase/PhysicsActor.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 | |||
391 | 391 | ||
392 | // Used for llSetHoverHeight and maybe vehicle height | 392 | // Used for llSetHoverHeight and maybe vehicle height |
393 | // Hover Height will override MoveTo target's Z | 393 | // Hover Height will override MoveTo target's Z |
394 | public abstract bool PIDHoverActive { set;} | 394 | public abstract bool PIDHoverActive {get; set;} |
395 | public abstract float PIDHoverHeight { set;} | 395 | public abstract float PIDHoverHeight { set;} |
396 | public abstract PIDHoverType PIDHoverType { set;} | 396 | public abstract PIDHoverType PIDHoverType { set;} |
397 | public abstract float PIDHoverTau { set;} | 397 | public abstract float PIDHoverTau { set;} |
@@ -621,7 +621,7 @@ namespace OpenSim.Region.PhysicsModules.SharedBase | |||
621 | public override float PIDTau { set { return; } } | 621 | public override float PIDTau { set { return; } } |
622 | 622 | ||
623 | public override float PIDHoverHeight { set { return; } } | 623 | public override float PIDHoverHeight { set { return; } } |
624 | public override bool PIDHoverActive { set { return; } } | 624 | public override bool PIDHoverActive {get {return false;} set { return; } } |
625 | public override PIDHoverType PIDHoverType { set { return; } } | 625 | public override PIDHoverType PIDHoverType { set { return; } } |
626 | public override float PIDHoverTau { set { return; } } | 626 | public override float PIDHoverTau { set { return; } } |
627 | 627 | ||