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

18 lines
524 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class DisplayInfoNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the current display resolution.
@seeNode Get Window Resolution
"""
bl_idname = 'LNDisplayInfoNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Display Resolution'
arm_version = 1
def init(self, context):
super(DisplayInfoNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketInt', 'Width')
self.add_output('NodeSocketInt', 'Height')
add_node(DisplayInfoNode, category=PKG_AS_CATEGORY, section='screen')