I have a series of frames, which contain user-entered meta data. After a render I have to retrieve the user entered values.
The path shown is:
bpy.types.OBJECT_OT_paperdoll_operator.title_frame_1
Yet I get an error:
>>> print(bpy.types.OBJECT_OT_paperdoll_operator.title_frame_1)
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
AttributeError: type object 'PaperDoll' has no attribute 'title_frame_1'
In this case, it should return the string "This is Frame 1 meta"
So obviously I am missing something.
