Update leenkx/blender/lnx/props_ui.py

This commit is contained in:
2025-11-06 16:17:18 +00:00
parent b265ab863c
commit b72a22b5e9

View File

@ -1221,6 +1221,12 @@ class LNX_PT_ProjectFlagsPanel(bpy.types.Panel):
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')
col.operator('lnx.copy_to_bundled', icon='IMAGE_DATA')