Python Effector with custom FieldList
-
Hi,
I'm developing Python Effector which will have FieldList parameter (separate of the default one).
Since Cinema 2024 introduced some optimizations, Python Effector is not being automatically executed, once any of Field objects related to custom FieldsList object are updated in the document.
I suppose there's no CheckDirty() method for Python Effector to check FieldList dirtyness.
What would be the approach to force Effector update?Rough sample: py_effector_with_custom_field.c4d
Just drag Spherical Field left to right with the mouse device.
Here left Matrix with Python Effector where Field is attached to custom FieldList — doesn't updating,
but right Matrix with Python Effector where Field is attached to default FieldList — does -
Any inputs?..
-
Hi @baca, this is unfortunately not possible there is some default CheckDirty in place to support the default FiledList, but since you can not override CheckDirty in an effector yourself you can't add another FieldList dependency check.
Cheers
Maxime.