armory/blender/arm/logicnode/canvas/LN_get_canvas_progress_bar.py
2021-07-20 20:53:37 +02:00

16 lines
522 B
Python

from arm.logicnode.arm_nodes import *
class CanvasGetPBNode(ArmLogicTreeNode):
"""Returns the value of the given UI progress bar."""
bl_idname = 'LNCanvasGetPBNode'
bl_label = 'Get Canvas Progress Bar'
arm_version = 1
def arm_init(self, context):
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmStringSocket', 'Element')
self.add_output('ArmNodeSocketAction', 'Out')
self.add_output('ArmIntSocket', 'At')
self.add_output('ArmIntSocket', 'Max')