Update leenkx/blender/lnx/props_ui.py

This commit is contained in:
LeenkxTeam 2025-04-07 21:17:23 +00:00
parent 2c5c8d0e4f
commit 8765e894f5

View File

@ -1974,6 +1974,11 @@ class LNX_PT_RenderPathCompositorPanel(bpy.types.Panel):
layout.enabled = rpdat.rp_compositornodes
layout.prop(rpdat, 'lnx_tonemap')
layout.prop(rpdat, 'lnx_dithering')
if rpdat.lnx_dithering != 'Off':
row = layout.row(align=True)
row.prop(rpdat, 'lnx_dithering_strength')
layout.separator()
col = layout.column()