deployment

This commit is contained in:
2025-09-11 14:07:55 +03:00
parent c1ac5297f2
commit 9c2c879483
54 changed files with 1859 additions and 26 deletions

12
src/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 *