Universe.Region.SceneObjectGroup.RemoveScriptInstances C# (CSharp) 메소드

RemoveScriptInstances() 공개 메소드

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. ///
리턴 void
        public void RemoveScriptInstances(bool sceneObjectBeingDeleted)
        {
            foreach (SceneObjectPart part in m_partsList)
            {
                part.Inventory.RemoveScriptInstances(sceneObjectBeingDeleted);
            }
        }
SceneObjectGroup