armory/blender/arm/logicnode/event/LN_on_init.py

14 lines
411 B
Python
Raw Normal View History

2017-04-03 22:29:46 +02:00
from arm.logicnode.arm_nodes import *
class OnInitNode(ArmLogicTreeNode):
2020-09-28 15:58:41 +02:00
"""Activates the output on the first frame of execution of the logic tree."""
2017-04-04 23:11:31 +02:00
bl_idname = 'LNOnInitNode'
2017-04-03 22:29:46 +02:00
bl_label = 'On Init'
arm_version = 1
2017-04-03 22:29:46 +02:00
def init(self, context):
super(OnInitNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', 'Out')
2017-04-03 22:29:46 +02:00
add_node(OnInitNode, category=PKG_AS_CATEGORY)