18 lines
392 B
Python
18 lines
392 B
Python
"""
|
|
Text Texture Generator - Properties Module
|
|
|
|
This module contains all property group definitions and configuration systems
|
|
for the text texture generator addon.
|
|
"""
|
|
|
|
from .property_groups import (
|
|
TEXT_TEXTURE_ImageOverlay,
|
|
TEXT_TEXTURE_Preset,
|
|
TEXT_TEXTURE_Properties
|
|
)
|
|
|
|
__all__ = [
|
|
'TEXT_TEXTURE_ImageOverlay',
|
|
'TEXT_TEXTURE_Preset',
|
|
'TEXT_TEXTURE_Properties',
|
|
] |