Hi to all!
I’m trying to instancing Constraint class for creating a my own constraint type. Is it possible?
After defining the new class with something simple like this:
class my_constraint(bpy.types.Constraint):
active = True
pass
what should I do to access it from GUI?
I saw that working with menu and panels there is the special method
bpy.utils.register_class('...')
There is something analogous for the modifiers or constraints?
thanks!