armory/blender/arm/logicnode/miscellaneous/LN_get_debug_console_settings.py

16 lines
559 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class GetDebugConsoleSettings(ArmLogicTreeNode):
"""Get Debug Console Settings"""
bl_idname = 'LNGetDebugConsoleSettings'
bl_label = 'Get Debug Console Settings'
arm_version = 1
def init(self, context):
super(GetDebugConsoleSettings, self).init(context)
self.add_output('NodeSocketBool', 'Visible')
self.add_output('NodeSocketFloat', 'Scale')
self.add_output('NodeSocketString', 'Position')
# Add Node
add_node(GetDebugConsoleSettings, category=PKG_AS_CATEGORY)