EG/plugins/user/soft_body_cloth_physics/__init__.py
2025-12-12 16:16:15 +08:00

24 lines
680 B
Python

"""
软体物理和布料模拟插件初始化文件
"""
# 导入主要的类和函数
from .plugin import Plugin
from .core.cloth_manager import ClothManager
from .core.soft_body_manager import SoftBodyManager
from .core.cloth_physics import ClothPhysics
from .core.soft_body_physics import SoftBodyPhysics
from .materials.cloth_materials import ClothMaterialManager
from .utils.mesh_generator import MeshGenerator
from .debug.cloth_debug import PhysicsDebugManager
__all__ = [
'Plugin',
'ClothManager',
'SoftBodyManager',
'ClothPhysics',
'SoftBodyPhysics',
'ClothMaterialManager',
'MeshGenerator',
'PhysicsDebugManager'
]