armory/blender/arm/logicnode/renderpath/LN_set_ssaa_quality.py

24 lines
687 B
Python
Raw Normal View History

2019-10-02 11:39:47 +02:00
from arm.logicnode.arm_nodes import *
class RpSuperSampleNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Sets the supersampling quality."""
2019-10-02 11:39:47 +02:00
bl_idname = 'LNRpSuperSampleNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Set SSAA Quality'
arm_version = 1
property0: HaxeEnumProperty(
'property0',
2019-10-02 11:39:47 +02:00
items = [('1', '1', '1'),
('1.5', '1.5', '1.5'),
('2', '2', '2'),
('4', '4', '4')
],
name='', default='1')
2021-07-20 20:53:22 +02:00
def arm_init(self, context):
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', 'Out')
2019-10-02 11:39:47 +02:00
def draw_buttons(self, context, layout):
layout.prop(self, 'property0')