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

15 lines
468 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class WindowInfoNode(ArmLogicTreeNode):
2020-09-23 22:12:25 +02:00
"""Use to get the window resolution."""
bl_idname = 'LNWindowInfoNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Window Resolution'
arm_version = 1
def init(self, context):
super(WindowInfoNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketInt', 'Width')
self.add_output('NodeSocketInt', 'Height')
add_node(WindowInfoNode, category=PKG_AS_CATEGORY, section='screen')