* Added ApplyPhysics helper on group.

This commit is contained in:
lbsa71
2007-12-04 11:11:13 +00:00
parent 01db4cd71d
commit e01c128c8f

View File

@@ -1676,5 +1676,13 @@ namespace OpenSim.Region.Environment.Scenes
(int)(color.z * 0xff));
Text = text;
}
public void ApplyPhysics()
{
foreach(SceneObjectPart part in m_parts.Values )
{
part.ApplyPhysics();
}
}
}
}