animaide icon indicating copy to clipboard operation
animaide copied to clipboard

3.6 curve tool not working ("use_only_selected_curve_handles")

Open loicbramoulle opened this issue 1 year ago • 3 comments

When using curve tool in 3.6, the following error triggers: image 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 ?

loicbramoulle avatar Jun 29 '23 15:06 loicbramoulle

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.

justausernamesfm avatar Jun 30 '23 03:06 justausernamesfm

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 !

loicbramoulle avatar Jun 30 '23 03:06 loicbramoulle

Faced this too, thx !

Sobollion avatar Sep 26 '23 13:09 Sobollion