Readds llCollisionFilter and adds llPassCollision.

Applied with whitespace cleanup

Signed-off-by: Melanie <melanie@t-data.com>
This commit is contained in:
Revolution
2009-12-31 11:41:07 -06:00
committed by Melanie
parent 004c751a1b
commit 3ec502f551
3 changed files with 293 additions and 64 deletions

View File

@@ -340,6 +340,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
{