kashik
kashik

Reputation: 9

Blender Python Write text to plane

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

Answers (1)

Jan Husák
Jan Husák

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

Related Questions