Files
esengine/packages/physics-rapier2d/src/index.ts

27 lines
783 B
TypeScript
Raw Normal View History

/**
* @esengine/physics-rapier2d
*
* Deterministic 2D physics engine based on Rapier2D with enhanced-determinism support.
* Rapier2D 2D
*
* WASM
* WASM使 '@esengine/physics-rapier2d/runtime'
*
* @packageDocumentation
*/
// Types (no WASM dependency)
export * from './types';
// Components (no WASM dependency)
export * from './components';
// Services (no WASM dependency)
export * from './services';
// Systems (type only for editor usage)
export type { Physics2DSystem } from './systems/Physics2DSystem';
// Plugin (for editor, no WASM dependency)
export { Physics2DPlugin } from './editor/Physics2DPlugin';