armory/blender/arm/logicnode/native/LN_expression.py

23 lines
720 B
Python
Raw Normal View History

2017-04-08 00:34:45 +02:00
from arm.logicnode.arm_nodes import *
class ExpressionNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Evaluates a Haxe expression and returns its output.
2020-09-28 15:58:41 +02:00
@output Result: the result of the expression."""
2017-04-08 00:34:45 +02:00
bl_idname = 'LNExpressionNode'
bl_label = 'Expression'
arm_version = 1
2017-04-08 00:34:45 +02:00
2018-12-18 23:48:38 +01:00
property0: StringProperty(name='', default='')
2017-04-08 00:34:45 +02:00
def init(self, context):
super(ExpressionNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_output('ArmNodeSocketAction', 'Out')
self.add_output('NodeSocketShader', 'Result')
2017-04-08 00:34:45 +02:00
def draw_buttons(self, context, layout):
layout.prop(self, 'property0')
add_node(ExpressionNode, category=PKG_AS_CATEGORY, section='haxe')