属性错误:“模块”对象没有属性“输入”

问题描述 投票:0回答:1

我正在开发一个搅拌机项目,需要安装插件。当我尝试在几何节点中添加此附加组件时,出现此错误。我尝试在输入中搜索一些相同的错误,但没有发现任何内容...... enter image description here 有如何修复的建议吗?

代码:


import bpy
from bpy.props import IntProperty, EnumProperty

bl_info = {
    "name": "Pick Node Generator",
    "author": "Johnny Matthews",
    "location": "Geometry Nodes Editor: Add Node Panel",
    "version": (1, 0),
    "blender": (3, 4, 1),
    "description": "Add a customizable pick node",
    "category": "Nodes"
}


def find_socket(list, type, name):
    for s in list:
        if s.type == type and s.name == name:
            return s


def main(self, context):
    space = context.space_data
    if space.node_tree == None:
        return
    group = space.node_tree


    cases = self.cases
    type_enum = self.type
    type = 'NodeSocket'+type_enum.capitalize()
    if type_enum == "RGBA":
        type = 'NodeSocketColor'
    if type_enum == "BOOLEAN":
        type = 'NodeSocketBool'
    if type_enum == "VALUE":
        type = 'NodeSocketFloat'

    tree = bpy.data.node_groups.new("test", 'GeometryNodeTree')
    tree.name = type_enum.capitalize() + ' Pick x'+str(cases)
    socket_case = tree.inputs.new('NodeSocketInt', 'Switch')
    for i in range(cases):
        socket_case = tree.inputs.new(type, 'Case '+str(i+self.start)+":")
    tree.inputs.new(type, 'Default ')

    socket_output = tree.outputs.new(type, 'Output')

    input = tree.nodes.new("NodeGroupInput")
    input.location = (0, 0)
    output = tree.nodes.new("NodeGroupOutput")
    output.location = (700+(cases*200), 0)

    compares = []
    switches = []
    for i in range(cases):
        compares.append(tree.nodes.new("FunctionNodeCompare"))
        compares[i].data_type = 'INT'
        compares[i].hide = True
        compares[i].name = 'Equals '+str(i+self.start)
        compares[i].operation = 'EQUAL'
        compares[i].inputs[3].default_value = i+self.start
        compares[i].location = (200+((cases-i)*150), -i*250+(cases*250/2)-60)
        tree.links.new(compares[i].inputs[2], input.outputs[0])

        switches.append(tree.nodes.new("GeometryNodeSwitch"))
        switches[i].location = (400+((cases-i)*150), -i*250+(cases*250/2))

        if type_enum == 'VALUE':
            switches[i].input_type = 'FLOAT'
        else:
            switches[i].input_type = type_enum

        switch_type = 0
        if type_enum in ('OBJECT', 'IMAGE', 'GEOMETRY', 'COLLECTION', 'TEXTURE', 'MATERIAL'):
            switch_type = 1

        tree.links.new(switches[i].inputs[switch_type], compares[i].outputs[0])

        sock = find_socket(switches[i].inputs, type_enum, "True")
        if sock != None:
            tree.links.new(sock, input.outputs[i+1])

    for i in range(cases):
        if i == 0:
            sock = find_socket(switches[i].outputs, type_enum, "Output")
            if sock != None:
                tree.links.new(output.inputs[0], sock)
        else:
            sock_o = find_socket(switches[i].outputs, type_enum, "Output")
            sock_i = find_socket(switches[i-1].inputs, type_enum, "False")
            tree.links.new(sock_i, sock_o)

    sock_i = find_socket(switches[cases-1].inputs, type_enum, "False")
    tree.links.new(sock_i, input.outputs[cases+1])

    group = group.nodes.new('GeometryNodeGroup')
    group.name = "Case Statement"
    group.node_tree = tree
    group.width = 150
    return {'FINISHED'}


class PickNodeOperator(bpy.types.Operator):
    """Pick Node Generator"""
    bl_idname = "node.swich_node"
    bl_label = "Pick Node Generator"
    bl_options = {'REGISTER', 'UNDO'}

    cases: bpy.props.IntProperty(min=0, default=6, max=25, name="# of Cases")
    start: bpy.props.IntProperty(default=0, name="Starting Value")
    type: bpy.props.EnumProperty(name="Type", items=[
        ('VALUE', 'Float', "", 0),
        ('INT', 'Int', "", 1),
        ('BOOLEAN', 'Bool', "", 2),
        ('VECTOR', 'Vector', "", 3),
        ('RGBA', 'Color', "", 4),
        ('STRING', 'String', "", 5),
        ('GEOMETRY', 'Geometry', "", 6),
        ('OBJECT', 'Object', "", 7),
        ('COLLECTION', 'Collection', "", 8),
        ('TEXTURE', 'Texture', "", 9),
        ('MATERIAL', 'Material', "", 10),
        ('IMAGE', 'Image', "", 11)
    ], default='GEOMETRY')

    @classmethod
    def poll(cls, context):
        space = context.space_data
        return space.type == 'NODE_EDITOR'

    def execute(self, context):
        main(self, context)
        return {'FINISHED'}


def menu_func(self, context):
    self.layout.operator(PickNodeOperator.bl_idname,
                         text=PickNodeOperator.bl_label)


def register():
    bpy.utils.register_class(PickNodeOperator)
    bpy.types.NODE_MT_add.append(menu_func)


def unregister():
    bpy.utils.unregister_class(PickNodeOperator)
    bpy.types.NODE_MT_add.remove(menu_func)


if __name__ == "__main__":
    register()

我尝试用 Input 替换 input 并尝试修复第 40 行的错误,但我不擅长 Blender 附加编程 :P

python blender
1个回答
0
投票

我无法在 Blender 3.4.1 上重现此错误,但我在 Blender 4.0.2 上重现此错误,表明存在版本特定问题。通过查看 bpy.types.NodeTree

Blender 更改日志,我们注意到 
inputs
属性在 Blender 3.6 和 4.0 之间被删除,因此您会收到该错误。在它的位置添加的是
bpy.types.NodeTree.interface
,它有一个
new_socket
方法,因此要“更新”Blender 4.0+ 的此附加组件,您必须使用
 切换 
tree.inputs
tree.outputs

的所有实例
tree.interface.new_socket(name = "the name", in_out='INPUT or OUTPUT',socket_type='socket type')

对于附加代码,这意味着用此更新的代码替换第 40 行到 45 行(从

socket_case = tree.interface.new_socket(name = "Switch"...
socket_output = tree.interface...
):

    tree.name = type_enum.capitalize() + ' Pick x'+str(cases)
    socket_case = tree.interface.new_socket(name = "Switch", in_out='INPUT',socket_type='NodeSocketInt')
    for i in range(cases):
        socket_case = tree.interface.new_socket(name = 'Case '+str(i+self.start)+":", in_out='INPUT',socket_type= type)
    tree.interface.new_socket(name = "Default ", in_out='INPUT',socket_type=type)

    socket_output = tree.interface.new_socket(name = "Output", in_out='OUTPUT',socket_type=type)

我能够确认这在我的 Blender 4.0.2 的新副本上有效。

看起来

BlenderArtists Forum
有一个非常相似的问题所以你可能想检查一下。

PS:通常避免在帖子中附加文本图像,因为它会引入复杂性

© www.soinside.com 2019 - 2024. All rights reserved.