diff --git a/leenkx/blender/lnx/props_ui.py b/leenkx/blender/lnx/props_ui.py index d3d6bd0..50af3e3 100644 --- a/leenkx/blender/lnx/props_ui.py +++ b/leenkx/blender/lnx/props_ui.py @@ -1220,6 +1220,12 @@ class LNX_PT_ProjectFlagsPanel(bpy.types.Panel): row.prop(wrd, 'lnx_canvas_img_scaling_quality', expand=True) col.prop(wrd, 'lnx_texture_quality') col.prop(wrd, 'lnx_sound_quality') + + col = column_with_heading(layout, 'Texture Optimization') + col.prop(wrd, 'lnx_max_texture_size') + if wrd.lnx_max_texture_size != '0': + box = col.box() + box.label(text=f"Textures larger than {wrd.lnx_max_texture_size}px will be automatically downscaled on export", icon='INFO') col = column_with_heading(layout, 'External Assets') col.prop(wrd, 'lnx_copy_override')