OpenSim.Region.Framework.Scenes.SceneObjectPart.GetBlockGrab C# (CSharp) Méthode

GetBlockGrab() public méthode

public GetBlockGrab ( ) : bool
Résultat bool
        public bool GetBlockGrab()
        {
            if (m_parentGroup == null)
                return false;
            if (m_parentGroup.IsDeleted)
                return false;

            return m_parentGroup.RootPart.BlockGrab;
        }
SceneObjectPart