Blender - 使用 bpy 插入一行文本

Posted

技术标签:

【中文标题】Blender - 使用 bpy 插入一行文本【英文标题】:Blender - Inserting a line of text using bpy 【发布时间】:2020-12-28 07:22:35 【问题描述】:

我正在为 Blender 2.80 插件设计一个简单的 GUI。我创建了一个对话框来输入一些数据:

class ExportFDSCloudHPC(Operator):

    bl_idname = "..."
    bl_label = "Dialog Box"
    bl_description = "..."

    data1 = bpy.props.StringProperty(
        name = "Data 1",
        default = "..."
    )

    data2 = bpy.props.StringProperty(
        name = "Data 2",
        default = "..."
    )

    data3 = bpy.props.StringProperty(
        name = "Data 3",
        default = "..."
    )
    
    def draw(self, context):
        col = self.layout.column(align = True)
        col.prop(self, "data1")

        col = self.layout.column(align = True)
        col.prop(self, "data2")

        col = self.layout.column(align = True)
        col.prop(self, "data3")

    def execute(self, context):
        ...

我想在数据 1 上方添加一行文本,其中包含与对话框长度相同的消息。有可能吗?

【问题讨论】:

【参考方案1】:

在添加列时在draw() 中添加label()

def draw(self, context):
    self.layout.label(text="text")
    col = self.layout.column(align = True)

这里是label documentation

【讨论】:

以上是关于Blender - 使用 bpy 插入一行文本的主要内容,如果未能解决你的问题,请参考以下文章

blender 中如何给 bpy.types.Operator 传值

Blender Python 将文本写入平面

通过线程调用blender的函数bpy.ops.import_mesh.stl(filepath = output_file)

获取选定对象的列表作为字符串 Blender python

python 基于API示例的场景集合:https://docs.blender.org/api/blender_python_api_current/bpy.props.html#collectio

Blender 2.6:通过 Python 按名称选择对象