armory/blender/arm/logicnode/canvas/LN_set_canvas_asset.py

17 lines
578 B
Python
Raw Normal View History

2019-09-29 15:37:18 +02:00
from arm.logicnode.arm_nodes import *
class CanvasSetAssetNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Sets the asset of the given UI element."""
2019-09-29 15:37:18 +02:00
bl_idname = 'LNCanvasSetAssetNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Set Canvas Asset'
arm_version = 1
2019-09-29 15:37:18 +02:00
def init(self, context):
super(CanvasSetAssetNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketString', 'Element')
self.add_input('NodeSocketString', 'Asset')
self.add_output('ArmNodeSocketAction', 'Out')
2019-09-29 15:37:18 +02:00
add_node(CanvasSetAssetNode, category=PKG_AS_CATEGORY)