0

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

kashik
  • 9
  • 4

1 Answers1

0

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

Jan Husák
  • 331
  • 3
  • 12