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
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
Copyright © 2021 Jogjafile Inc.
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'
.