TarkanV / FCurveChannelFilter

Allows to filter individual transform channels in the Graph Editor.
GNU General Public License v2.0
1 stars 0 forks source link

seems like isol and tfrm need to be annotations #2

Open Krisoyo opened 3 years ago

Krisoyo commented 3 years ago

Addon wouldn't work properly in 2.93, so I had a quick look and got it to work after changing

isol = bpy.props.BoolProperty() tfrm = bpy.props.StringProperty()

into

isol: bpy.props.BoolProperty() tfrm: bpy.props.StringProperty()

TarkanV commented 3 years ago

Yeah thanks for pointing this out, that seems to be caused by a change with recent blender versions. I'll update the main project.