This commit is contained in:
2025-10-10 12:45:47 +02:00
parent f5b86d1e0f
commit 0edf324335
13 changed files with 1103 additions and 156 deletions

View File

@@ -3,7 +3,7 @@ Constants and metadata for the Text Texture Generator addon.
"""
# Version information
VERSION_TYPE = "full" # "free" or "full"
VERSION_TYPE = "free" # "free" or "full"
bl_info = {
"name": "Text Texture Generator" + (" Free" if VERSION_TYPE == "free" else " Full"),
@@ -27,8 +27,8 @@ def get_version_limits():
"""Get version-specific limits."""
if VERSION_TYPE == "free":
return {
"max_texture_size": 4096,
"max_concurrent_operations": 4
"max_texture_size": 1024,
"max_concurrent_operations": 1
}
else:
return {