Update Files
This commit is contained in:
14
leenkx/blender/lnx/logicnode/string/LN_sub_string.py
Normal file
14
leenkx/blender/lnx/logicnode/string/LN_sub_string.py
Normal file
@ -0,0 +1,14 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class SubStringNode(LnxLogicTreeNode):
|
||||
"""Returns a part of the given string."""
|
||||
bl_idname = 'LNSubStringNode'
|
||||
bl_label = 'Sub String'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxStringSocket', 'String In')
|
||||
self.add_input('LnxIntSocket', 'Start')
|
||||
self.add_input('LnxIntSocket', 'End')
|
||||
|
||||
self.add_output('LnxStringSocket', 'String Out')
|
Reference in New Issue
Block a user