一次用一个键在两个命令之间切换

Toggle between two commands with one key at a time

我想让 Maya 使用一个热键在顶部和底部正交视图之间切换,使用另一个热键进行前后切换,使用第三个热键进行左右切换,就像在 MODO 中一样。这是一次一个键的两个命令。 我想知道如何在 Python 或运行时命令编辑器中的 Mel 中执行此操作,最好是使用我将来选择的任何其他命令。 谢谢。

其实很简单,我不太喜欢玩默认的Maya相机,但我认为这不是问题。 您所要做的就是将平移坐标乘以 -1。并为您想要的每个相机的相应轴添加 180 度。

 def getActiveViewport():
    """Return the active 3D viewport if any"""
    panel = cmds.getPanel(withFocus=True)
    if cmds.getPanel(typeOf=panel) == 'modelPanel':
        return panel
    return ''


def switchcamera(cam):
    viewport = getActiveViewport()
    if viewport:
        orient = {'top': 'X', 'front': 'Y', 'side': 'Y'}
        translate = cmds.getAttr(cam + '.translate')[0]
        translate = [i*-1 for i in translate]
        rotate = cmds.getAttr(cam + '.rotate' + orient[cam])
        rotate = (rotate + 180) % 360
        if rotate < 0:
            rotate = rotate + 360        

        cmds.setAttr(cam + '.translate', *translate, type='double3')
        cmds.setAttr(cam + '.rotate' + orient[cam], rotate)
        cmds.modelPanel(viewport, edit=True, camera=cam)  # Set the camera to the active viewport

然后您可以在视口处于焦点时调用这些命令,它会自动切换到指定的相机。

switchcamera('top')
switchcamera('front')
switchcamera('side')

您还可以为每个方向创建新相机 - 如果它们不存在 - 并在默认和非默认相机之间来回切换。不要忘记复制它们的 translate/rotate 属性,这是该解决方案中棘手且不太优雅的部分。