forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
16
leenkx/blender/lnx/logicnode/deprecated/LN_group_nodes.py
Normal file
16
leenkx/blender/lnx/logicnode/deprecated/LN_group_nodes.py
Normal file
@ -0,0 +1,16 @@
|
||||
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')
|
Reference in New Issue
Block a user