12 lines
347 B
Python
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 * |