import bpy from bpy.props import * from bpy.types import Node, NodeSocket from arm.logicnode.arm_nodes import * class OnMouseNode(ArmLogicTreeNode): """On mouse node""" bl_idname = 'LNOnMouseNode' bl_label = 'On Mouse' bl_icon = 'NONE' property0: EnumProperty( items = [('Down', 'Down', 'Down'), ('Started', 'Started', 'Started'), ('Released', 'Released', 'Released'), ('Moved', 'Moved', 'Moved')], name='', default='Down') property1: EnumProperty( items = [('left', 'left', 'left'), ('right', 'right', 'right'), ('middle', 'middle', 'middle')], name='', default='left') def init(self, context): self.add_output('ArmNodeSocketAction', 'Out') def draw_buttons(self, context, layout): layout.prop(self, 'property0') layout.prop(self, 'property1') add_node(OnMouseNode, category=MODULE_AS_CATEGORY, section='mouse')