Created
August 29, 2015 11:29
-
-
Save SEVEZ/247beea1085931c4224d to your computer and use it in GitHub Desktop.
check key modifiers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import maya.cmds as cmds | |
mods = cmds.getModifiers() | |
if (mods & 4) > 0: | |
print "Ctrl pressed" | |
else: | |
print "Ctrl not pressed" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment