Update Files
This commit is contained in:
13
leenkx/blender/lnx/logicnode/string/LN_parse_int.py
Normal file
13
leenkx/blender/lnx/logicnode/string/LN_parse_int.py
Normal file
@ -0,0 +1,13 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class ParseIntNode(LnxLogicTreeNode):
|
||||
"""Returns the Ints that are in the given string."""
|
||||
bl_idname = 'LNParseIntNode'
|
||||
bl_label = 'Parse Int'
|
||||
lnx_section = 'parse'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_output('LnxIntSocket', 'Int')
|
||||
|
||||
self.add_input('LnxStringSocket', 'String')
|
Reference in New Issue
Block a user