aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorMelanie2011-11-05 21:43:35 +0000
committerMelanie2011-11-05 21:43:35 +0000
commitac3254a5f588fa80cafd42fc40c9832e80a70229 (patch)
tree65c57c0a308a7946bca51987ed5fbd8698784b46 /OpenSim/Region/Framework
parentScenePresence part of the Avination animator fixes. (diff)
downloadopensim-SC_OLD-ac3254a5f588fa80cafd42fc40c9832e80a70229.zip
opensim-SC_OLD-ac3254a5f588fa80cafd42fc40c9832e80a70229.tar.gz
opensim-SC_OLD-ac3254a5f588fa80cafd42fc40c9832e80a70229.tar.bz2
opensim-SC_OLD-ac3254a5f588fa80cafd42fc40c9832e80a70229.tar.xz
Change puvlic m_ variable to a getter property
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index f0776a9..ebb9b0a 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -144,7 +144,11 @@ namespace OpenSim.Region.Framework.Scenes
144 get { return m_userFlags; } 144 get { return m_userFlags; }
145 } 145 }
146 private bool m_flyingOld; // add for fly velocity control 146 private bool m_flyingOld; // add for fly velocity control
147 public bool m_wasFlying; // add for fly velocity control 147 public bool WasFlying
148 {
149 get { return m_wasFlying; }
150 }
151 private bool m_wasFlying; // add for fly velocity control
148 152
149 private int m_lastColCount = -1; //KF: Look for Collision chnages 153 private int m_lastColCount = -1; //KF: Look for Collision chnages
150 private int m_updateCount = 0; //KF: Update Anims for a while 154 private int m_updateCount = 0; //KF: Update Anims for a while