diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 6 |
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 |