Merge branch 'master' into careminster

This commit is contained in:
Melanie
2009-12-31 23:31:45 +00:00
3 changed files with 293 additions and 64 deletions

View File

@@ -412,6 +412,17 @@ namespace OpenSim.Region.Framework.Scenes
{
get { return true; }
}
private bool m_passCollision;
public bool PassCollision
{
get { return m_passCollision; }
set
{
m_passCollision = value;
HasGroupChanged = true;
}
}
public bool IsSelected
{