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