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

17 lines
472 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class WindowInfoNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the current window resolution.
2020-10-27 19:44:37 +01:00
2020-10-05 19:55:56 +02:00
@seeNode Get Display Resolution
"""
bl_idname = 'LNWindowInfoNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Window Resolution'
2020-10-27 19:44:37 +01:00
arm_section = 'screen'
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')