when I type this into console:
>>> bpy.data.objects['Time_Text'].body
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
AttributeError: 'Object' object has no attribute 'body'
Salai Vedha ViradhanCreator
Oops, a small correction. Append `data` before the body. That is,
bpy.data.objects['Time_Text'].data.body
Salai Vedha ViradhanCreator
Thanks for pointing out! ππ»
I have updated it above in the post as well.
3 comments
when I type this into console: >>> bpy.data.objects['Time_Text'].body Traceback (most recent call last): File "<blender_console>", line 1, in <module> AttributeError: 'Object' object has no attribute 'body'
Oops, a small correction. Append `data` before the body. That is, bpy.data.objects['Time_Text'].data.body
Thanks for pointing out! ππ» I have updated it above in the post as well.