Update leenkx/blender/lnx/utils.py

This commit is contained in:
Onek8 2025-01-23 17:15:03 +00:00
parent 0f0c67dc07
commit 06c0c430a8

View File

@ -803,7 +803,7 @@ def check_blender_version(op: bpy.types.Operator):
"""Check whether the Blender version is supported by Leenkx, """Check whether the Blender version is supported by Leenkx,
if not, report in UI. if not, report in UI.
""" """
if bpy.app.version[0] != 3 or bpy.app.version[1] != 6: if bpy.app.version[0] != 4 or bpy.app.version[1] != 2:
op.report({'INFO'}, 'INFO: For Leenkx to work correctly, use a Blender LTS version such as 4.2 | 3.6 | 3.3') op.report({'INFO'}, 'INFO: For Leenkx to work correctly, use a Blender LTS version such as 4.2 | 3.6 | 3.3')