Reputation: 9
Is it possible to write text in a Blender mesh plane from python? I need to change characters very quickly and the knife is not ideal.
Best
Upvotes: 0
Views: 630
Reputation: 343
Text object seems like the thing you are looking for Add -> Text
. You can then change its content via python like this: bpy.data.objects['Text'].data.body = 'some text'
.
Upvotes: 0