17 lines
483 B
Python
17 lines
483 B
Python
|
import bpy
|
||
|
from bpy.props import *
|
||
|
from bpy.types import Node, NodeSocket
|
||
|
from lnx.logicnode.lnx_nodes import *
|
||
|
|
||
|
@deprecated('Group Input Node')
|
||
|
class GroupOutputNode(LnxLogicTreeNode):
|
||
|
"""Sets the connected chain of nodes as a group of nodes."""
|
||
|
bl_idname = 'LNGroupOutputNode'
|
||
|
bl_label = 'Group Nodes'
|
||
|
lnx_category = 'Miscellaneous'
|
||
|
lnx_section = 'group'
|
||
|
lnx_version = 1
|
||
|
|
||
|
def lnx_init(self, context):
|
||
|
self.add_input('LnxNodeSocketAction', 'In')
|