19 lines
500 B
Python
19 lines
500 B
Python
"""
|
|
刚体动力学插件初始化文件
|
|
"""
|
|
|
|
from .core.physics_world import PhysicsWorld
|
|
from .core.rigid_body import RigidBody
|
|
from .core.material import PhysicsMaterial
|
|
from .constraints.constraint_manager import ConstraintManager
|
|
from .vehicles.vehicle_system import VehicleSystem
|
|
from .particles.particle_system import ParticleSystem
|
|
|
|
__all__ = [
|
|
'PhysicsWorld',
|
|
'RigidBody',
|
|
'PhysicsMaterial',
|
|
'ConstraintManager',
|
|
'VehicleSystem',
|
|
'ParticleSystem'
|
|
] |