OpenSim.Region.Framework.Scenes.SceneObjectPart.SetDieAtEdge C# (CSharp) Метод

SetDieAtEdge() публичный Метод

public SetDieAtEdge ( bool p ) : void
p bool
Результат void
        public void SetDieAtEdge(bool p)
        {
            if (m_parentGroup == null)
                return;
            if (m_parentGroup.IsDeleted)
                return;

            m_parentGroup.RootPart.DIE_AT_EDGE = p;
        }
SceneObjectPart