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

25 lines
772 B
Python
Raw Normal View History

2019-10-02 11:39:47 +02:00
from arm.logicnode.arm_nodes import *
class RpSuperSampleNode(ArmLogicTreeNode):
2020-09-23 22:12:25 +02:00
"""Use to set the supersampling quality."""
2019-10-02 11:39:47 +02:00
bl_idname = 'LNRpSuperSampleNode'
bl_label = 'Rp Super-sampling'
arm_version = 1
2019-10-02 11:39:47 +02:00
property0: EnumProperty(
items = [('1', '1', '1'),
('1.5', '1.5', '1.5'),
('2', '2', '2'),
('4', '4', '4')
],
name='', default='1')
2019-10-02 11:39:47 +02:00
def init(self, context):
super(RpSuperSampleNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_output('ArmNodeSocketAction', 'Out')
2019-10-02 11:39:47 +02:00
def draw_buttons(self, context, layout):
layout.prop(self, 'property0')
add_node(RpSuperSampleNode, category=PKG_AS_CATEGORY)