Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #64 from MoritzBrueckner/blender-3.6-lts
Browse files Browse the repository at this point in the history
Support for Blender 3.6 LTS
  • Loading branch information
luboslenco authored Jun 29, 2023
2 parents eee792d + f10a41c commit 97ce664
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions armory.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"description": "3D Game Engine for Blender",
"author": "Armory3D.org",
"version": (2023, 6, 0),
"blender": (3, 3, 0),
"blender": (3, 6, 0),
"doc_url": "https://github.com/armory3d/armory/wiki",
"tracker_url": "https://github.com/armory3d/armory/issues"
}
Expand Down Expand Up @@ -310,9 +310,9 @@ def draw(self, context):
layout.label(text="Welcome to Armory!")

# Compare version Blender and Armory (major, minor)
if bpy.app.version[0] != 3 or bpy.app.version[1] != 3:
if bpy.app.version[0] != 3 or bpy.app.version[1] != 6:
box = layout.box().column()
box.label(text="Warning: For Armory to work correctly, you need Blender 3.3 LTS.")
box.label(text="Warning: For Armory to work correctly, you need Blender 3.6 LTS.")

layout.prop(self, "sdk_path")
sdk_path = get_sdk_path(context)
Expand Down

0 comments on commit 97ce664

Please sign in to comment.