Files
Text-Texture-Generator-for-…/src/presets/__init__.py
2025-09-11 14:07:55 +03:00

12 lines
347 B
Python

"""
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 *