Blender Python Write text to plane

605 Views Asked by At

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

1

There are 1 best solutions below

0
On

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'.