Universe.Region.SceneObjectGroup.RemoveScriptInstances C# (CSharp) Method

RemoveScriptInstances() public method

Stop the scripts contained in all the prims in this group
public RemoveScriptInstances ( bool sceneObjectBeingDeleted ) : void
sceneObjectBeingDeleted bool /// Should be true if these scripts are being removed because the scene /// object is being deleted. This will prevent spurious updates to the client. ///
return void
        public void RemoveScriptInstances(bool sceneObjectBeingDeleted)
        {
            foreach (SceneObjectPart part in m_partsList)
            {
                part.Inventory.RemoveScriptInstances(sceneObjectBeingDeleted);
            }
        }
SceneObjectGroup