I am an animator and I am not used to use the keyboard shortcut to scrubbing the timeline.
I am looking for a keyboard shortcut to activate or deactivate setToolTo TimeDragger, click once to activate it and click again to deactivate it.
Thank you very much.
Solved! Go to Solution.
I am an animator and I am not used to use the keyboard shortcut to scrubbing the timeline.
I am looking for a keyboard shortcut to activate or deactivate setToolTo TimeDragger, click once to activate it and click again to deactivate it.
Thank you very much.
Solved! Go to Solution.
Solved by dg3duy. Go to Solution.
There is only the k shortcut to scrub.
There is only the k shortcut to scrub.
something similar to this I'm looking for, but only change scrubb on and off, not change the way you see your options on the screen.
{
string $focus = `getPanel -withFocus`;
if ( `getPanel -to $focus` == "modelPanel") {
string $mode = `modelEditor -q -displayAppearance $focus`;
if ( $mode != "smoothShaded" ) {
modelEditor -e -displayAppearance "smoothShaded" $focus;
storeLastAction( "restoreLastContext " + `currentCtx` );setToolTo TimeDragger;
}
else {
SelectToolOptionsMarkingMenu;
modelEditor -e -displayAppearance "wireframe" $focus;
SelectToolOptionsMarkingMenuPopDown;
MarkingMenuPopDown;
}
}
}
something similar to this I'm looking for, but only change scrubb on and off, not change the way you see your options on the screen.
{
string $focus = `getPanel -withFocus`;
if ( `getPanel -to $focus` == "modelPanel") {
string $mode = `modelEditor -q -displayAppearance $focus`;
if ( $mode != "smoothShaded" ) {
modelEditor -e -displayAppearance "smoothShaded" $focus;
storeLastAction( "restoreLastContext " + `currentCtx` );setToolTo TimeDragger;
}
else {
SelectToolOptionsMarkingMenu;
modelEditor -e -displayAppearance "wireframe" $focus;
SelectToolOptionsMarkingMenuPopDown;
MarkingMenuPopDown;
}
}
}
global int $x;
if ($x % 2)
setToolTo TimeDragger;
else
invokeLastAction;
$x++;
here is the solution!
global int $x;
if ($x % 2)
setToolTo TimeDragger;
else
invokeLastAction;
$x++;
here is the solution!
here is the solution.
global int $x;
if ($x % 2)
setToolTo TimeDragger;
else
invokeLastAction;
$x++;
here is the solution.
global int $x;
if ($x % 2)
setToolTo TimeDragger;
else
invokeLastAction;
$x++;
Can't find what you're looking for? Ask the community or share your knowledge.