24 lines
657 B
Python
24 lines
657 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'
|
|
] |