* Added ApplyPhysics helper on group.

afrisby
lbsa71 2007-12-04 11:11:13 +00:00
parent 01db4cd71d
commit e01c128c8f
1 changed files with 8 additions and 0 deletions

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();
}
}
}
}