Create a live 3D clock in Blender in less than 10 lines of Python π
3 comments
Write a comment
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'
Creator
Oops, a small correction. Append `data` before the body. That is, bpy.data.objects['Time_Text'].data.body
Creator
Thanks for pointing out! ππ» I have updated it above in the post as well.