def selectContent(self, namespaces=None, **kwargs): """ :type namespaces: list[str] """ namespaces = namespaces or self.namespaces() kwargs = kwargs or mutils.selectionModifiers() msg = "Select content: Record.selectContent(namespacea={0}, kwargs={1})" msg = msg.format(namespaces, kwargs) logger.debug(msg) try: self.transferObject().select(namespaces=namespaces, **kwargs) except Exception, msg: title = "Error while selecting content" studioqt.MessageBox.critical(None, title, str(msg)) raise
def selectContent(self, namespaces=None, **kwargs): """ Select the contents of this item in the Maya scene. :type namespaces: list[str] """ namespaces = namespaces or self.namespaces() kwargs = kwargs or mutils.selectionModifiers() msg = "Select content: Item.selectContent(namespacea={0}, kwargs={1})" msg = msg.format(namespaces, kwargs) logger.debug(msg) try: self.transferObject().select(namespaces=namespaces, **kwargs) except Exception as error: self.showErrorDialog("Item Error", str(error)) raise