Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I can't believe that this option is not enabled by default in the graph editor.
An alternative plan is to make a scriptjob but it is not viable because I don't have the knowledge to stop flickering when doing Fit.
Any suggestions on how to make it not update the graph editor when doing fit and then update it?
Frame/Frame Playback Range
global proc setAutoFrame()
{
animCurveEditor -edit -autoFit 1 graphEditor1GraphEd;
optionVar -intValue graphEditorAutoFit 1;
animView -startTime (`playbackOptions -query -minTime` - 1) -endTime (`playbackOptions -query -maxTime` + 1) graphEditor1GraphEd;
}
scriptJob -event graphEditorParamCurveSelected setAutoFrame;
Solved! Go to Solution.