forked from LeenkxTeam/LNXSDK
Repe [T3DU] Update - 31f26d171bba0355ce2a77031e3aad4c64dbc7e9
This commit is contained in:
@ -16,10 +16,16 @@ class GetObjectGeomNode(LnxLogicTreeNode):
|
||||
"""
|
||||
|
||||
bl_idname = 'LNGetObjectGeomNode'
|
||||
bl_label = 'Get Object Geometry Node'
|
||||
bl_label = 'Get Object Geometry'
|
||||
lnx_section = 'relations'
|
||||
lnx_version = 1
|
||||
|
||||
property0: HaxeEnumProperty(
|
||||
'property0',
|
||||
items = [('Local', 'Local', 'Local'),
|
||||
('Global', 'Global', 'Global')],
|
||||
name='', default='Local', update='')
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketObject', 'Object')
|
||||
|
||||
@ -28,5 +34,8 @@ class GetObjectGeomNode(LnxLogicTreeNode):
|
||||
self.add_output('LnxNodeSocketArray', 'Vertices Indices')
|
||||
self.add_output('LnxNodeSocketArray', 'Vertices Material Indices')
|
||||
self.add_output('LnxNodeSocketArray', 'Vertices Face Indices')
|
||||
self.add_output('LnxDynamicSocket', 'Vertex Groups Maps')
|
||||
self.add_output('LnxNodeSocketArray', 'Vertex Groups Names')
|
||||
self.add_output('LnxDynamicSocket', 'Vertex Groups Map')
|
||||
self.add_output('LnxNodeSocketArray', 'Vertex Groups Names')
|
||||
|
||||
def draw_buttons(self, context, layout):
|
||||
layout.prop(self, 'property0')
|
||||
Reference in New Issue
Block a user