diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Animation')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs b/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs index cc96b24..c39f34f 100644 --- a/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs +++ b/OpenSim/Region/Framework/Scenes/Animation/ScenePresenceAnimator.cs | |||
@@ -66,7 +66,11 @@ namespace OpenSim.Region.Framework.Scenes.Animation | |||
66 | public bool m_jumping = false; // Add for jumping | 66 | public bool m_jumping = false; // Add for jumping |
67 | public float m_jumpVelocity = 0f; // Add for jumping | 67 | public float m_jumpVelocity = 0f; // Add for jumping |
68 | private int m_landing = 0; // Add for jumping | 68 | private int m_landing = 0; // Add for jumping |
69 | public bool m_falling = false; // Add for falling | 69 | public bool Falling |
70 | { | ||
71 | get { return m_falling; } | ||
72 | } | ||
73 | private bool m_falling = false; // Add for falling | ||
70 | private float m_fallHeight; // Add for falling | 74 | private float m_fallHeight; // Add for falling |
71 | 75 | ||
72 | /// <value> | 76 | /// <value> |