本文整理汇总了Python中WorldEditor.setCurrentEditors方法的典型用法代码示例。如果您正苦于以下问题:Python WorldEditor.setCurrentEditors方法的具体用法?Python WorldEditor.setCurrentEditors怎么用?Python WorldEditor.setCurrentEditors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WorldEditor
的用法示例。
在下文中一共展示了WorldEditor.setCurrentEditors方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: onStop
# 需要导入模块: import WorldEditor [as 别名]
# 或者: from WorldEditor import setCurrentEditors [as 别名]
def onStop( self ):
self.selEditor = None
WorldEditor.setCurrentEditors()
# Remove the closed captions commentary viewer
self.cc.visible = 0
self.cc.delAsView()
del self.cc
# Remove options entries that are messy and transient
WorldEditor.saveOptions()
return 0
示例2: selUpdate
# 需要导入模块: import WorldEditor [as 别名]
# 或者: from WorldEditor import setCurrentEditors [as 别名]
def selUpdate( self ):
try:
# tell big bang what the current selection is
WorldEditor.revealSelection( self.selection )
if self.selection.size:
self.selEditor = WorldEditor.ChunkItemEditor( self.selection )
WorldEditor.setCurrentEditors( self.selEditor )
#if hasattr(self.selEditor, "description"):
# print "Selected a", str(self.selEditor.description)
#else:
# print "Selected a group"
# inform the user of stats about the selection
#if ( self.objInfo.shellMode == 1 and self.selection.size > 1):
# WorldEditor.showChunkReport( self.selection )
else:
self.selEditor = None
WorldEditor.setCurrentEditors()
except EnvironmentError, e:
WorldEditor.addCommentaryMsg( e.args[0], 1 )