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

17 lines
476 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.
2020-10-27 19:44:37 +01:00
2020-10-05 19:55:56 +02:00
@seeNode Get Window Resolution
"""
bl_idname = 'LNDisplayInfoNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Display Resolution'
2020-10-27 19:44:37 +01:00
arm_section = 'screen'
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')