Updated the custom_nodes.py template script to reflect socket draw API changes in r56584 and r56585.

This commit is contained in:
Lukas Toenne 2013-05-08 16:17:04 +00:00
parent 8deba33497
commit a3c82d4cde

View File

@ -49,8 +49,11 @@ class MyCustomSocket(bpy.types.NodeSocket):
myEnumProperty = bpy.props.EnumProperty(name="Direction", description="Just an example", items=my_items, default='UP')
# Optional function for drawing the socket input value
def draw(self, context, layout, node):
layout.prop(self, "myEnumProperty", text=self.name)
def draw(self, context, layout, node, text):
if self.is_linked:
layout.label(text)
else:
layout.prop(self, "myEnumProperty", text=text)
# Socket color
def draw_color(self, context, node):