armory/blender/arm/logicnode/string/LN_parse_float.py

15 lines
476 B
Python
Raw Normal View History

2019-09-29 20:52:00 +02:00
from arm.logicnode.arm_nodes import *
class ParseFloatNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the floats that are in the given string."""
2019-09-29 20:52:00 +02:00
bl_idname = 'LNParseFloatNode'
bl_label = 'Parse Float'
arm_version = 1
2019-09-29 20:52:00 +02:00
def init(self, context):
super(ParseFloatNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketFloat', 'Float')
self.add_input('NodeSocketString', 'String')
2019-09-29 20:52:00 +02:00
add_node(ParseFloatNode, category=PKG_AS_CATEGORY, section='parse')