Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从 python 在 Blender 网格平面中写入文本?我需要非常快速地更改字符,并且刀并不理想。
最好的
文本对象似乎是您正在寻找的东西Add -> Text。然后,您可以像这样通过 python 更改其内容bpy.data.objects['Text'].data.body = 'some text':
Add -> Text
bpy.data.objects['Text'].data.body = 'some text'