mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
Change puvlic m_ variable to a getter property
This commit is contained in:
@@ -144,7 +144,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
get { return m_userFlags; }
|
||||
}
|
||||
private bool m_flyingOld; // add for fly velocity control
|
||||
public bool m_wasFlying; // add for fly velocity control
|
||||
public bool WasFlying
|
||||
{
|
||||
get { return m_wasFlying; }
|
||||
}
|
||||
private bool m_wasFlying; // add for fly velocity control
|
||||
|
||||
private int m_lastColCount = -1; //KF: Look for Collision chnages
|
||||
private int m_updateCount = 0; //KF: Update Anims for a while
|
||||
|
||||
Reference in New Issue
Block a user