Message 1 of 1
Script for hotkey for Incremental Transformation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi There,
To avoid opening transformation/rotation/scale settings window each time I want to change value of snap incremental move/rotate/scale, I have made a shelf buttons with options under right click.
However, the script doesn't work until I will manually open the settings at least once.
It needs some improvements.
Here are the scripts:
print("50 Units Move Step Set");
manipMoveContext -e -snapValue 50 $currManipMovePropertiesCtx;
print("45 Degrees Step Set");
manipRotateContext -e -snapValue 45 $currManipRotatePropertiesCtx;
print("25 Percent Scale Step Set");
manipScaleContext -e -snapValue 25 $currManipScalePropertiesCtx;
$currManipScalePropertiesCtx; causes issues...
Thanks for any help,
DS