aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/PhysicsModules/ubOde
diff options
context:
space:
mode:
authorUbitUmarov2015-09-30 20:13:31 +0100
committerUbitUmarov2015-09-30 20:13:31 +0100
commitaa3303e3af2df9511b947902482409308198ce64 (patch)
tree35ea683b9a918a09763b87aa2916d58a2ba9f199 /OpenSim/Region/PhysicsModules/ubOde
parent first steps adding suport for llSetHoverHeight() called from attachments on ... (diff)
downloadopensim-SC_OLD-aa3303e3af2df9511b947902482409308198ce64.zip
opensim-SC_OLD-aa3303e3af2df9511b947902482409308198ce64.tar.gz
opensim-SC_OLD-aa3303e3af2df9511b947902482409308198ce64.tar.bz2
opensim-SC_OLD-aa3303e3af2df9511b947902482409308198ce64.tar.xz
add get method on physics actors PIDHoverActive
Diffstat (limited to 'OpenSim/Region/PhysicsModules/ubOde')
-rw-r--r--OpenSim/Region/PhysicsModules/ubOde/ODECharacter.cs4
-rw-r--r--OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs4
2 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/PhysicsModules/ubOde/ODECharacter.cs b/OpenSim/Region/PhysicsModules/ubOde/ODECharacter.cs
index 1cebacf..0d9f974 100644
--- a/OpenSim/Region/PhysicsModules/ubOde/ODECharacter.cs
+++ b/OpenSim/Region/PhysicsModules/ubOde/ODECharacter.cs
@@ -1480,6 +1480,10 @@ namespace OpenSim.Region.PhysicsModule.ubOde
1480 } 1480 }
1481 public override bool PIDHoverActive 1481 public override bool PIDHoverActive
1482 { 1482 {
1483 get
1484 {
1485 return m_useHoverPID;
1486 }
1483 set 1487 set
1484 { 1488 {
1485 AddChange(changes.PIDHoverActive, value); 1489 AddChange(changes.PIDHoverActive, value);
diff --git a/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs b/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs
index 91aca26..229782b 100644
--- a/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs
+++ b/OpenSim/Region/PhysicsModules/ubOde/ODEPrim.cs
@@ -747,6 +747,10 @@ namespace OpenSim.Region.PhysicsModule.ubOde
747 } 747 }
748 public override bool PIDHoverActive 748 public override bool PIDHoverActive
749 { 749 {
750 get
751 {
752 return m_useHoverPID;
753 }
750 set 754 set
751 { 755 {
752 AddChange(changes.PIDHoverActive, value); 756 AddChange(changes.PIDHoverActive, value);