Repe [T3DU] Update - 31f26d171bba0355ce2a77031e3aad4c64dbc7e9

This commit is contained in:
2026-09-04 10:46:13 -07:00
parent c915312901
commit 0460b9d587
482 changed files with 27797 additions and 3226 deletions

View File

@ -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')