Anyone know how to make our python addon properties update with keyframes and driver?
Somehow drivers/keyframes don’t send any update signal (as in update=fct argument in our bpy.props)
and i think the only solution is to check every properties in a frame_post handler, which is quite a bad workaround.
Note that the set function react to driver/keyframe writings, but this function will get us nowhere (?)
Related
Maybe a C developer know this answer/issue ?
Is there a task about this very specific issue? or shall i create a new one?
i heard it’s related to this task, but it seem quite a different issue here
Only solution i can think of is creating a function that retroactively loop to all your registered properties and run their update fct for each frame? but this seem quite like a really bad solution imho
we need a some advices from some cpp devs i believe