animaide
animaide copied to clipboard
3.6 curve tool not working ("use_only_selected_curve_handles")
When using curve tool in 3.6, the following error triggers:
It might have something to do with the fact they removed the "Only show selected F-curve keyframes" option from the view menu, to put it in the pref (which is really bad to me as I need to toggle it on and off constantly, working on hundred of shapekeys channels with mocap data.) and so maybe renamed some things curve/keyframes ?
I opened curve.py in the utils folder and changed the line:
if context.space_data.use_only_selected_curves_handles and not fcurve.select:
To:
if context.space_data.use_only_selected_keyframe_handles and not fcurve.select:
and it seems to work fine now in 3.6.
Thanks a lot! Ah it worked! I just had to close & open a new blender instance, maybe it needed to purge the cache or something to reload the script from disk. First time I tweak a line of code haha, thanks again I can sleep better tonight !
Faced this too, thx !