This commit is contained in:
2025-09-11 12:12:58 +03:00
parent 32fc626caf
commit 80a71c1dc1
33 changed files with 6051 additions and 6826 deletions

12
presets/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
"""
Preset System Module
This module contains the three-tier preset storage system for the Text Texture Generator:
- Blend file storage (highest priority)
- Persistent file storage (survives addon updates)
- Legacy file storage (backward compatibility)
"""
# Import all preset functionality
from .storage_system import *
from .migration import *