2025-12-05 23:03:31 +08:00
|
|
|
/**
|
|
|
|
|
* 粒子编辑器模块入口
|
|
|
|
|
* Particle Editor Module Entry
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Module
|
|
|
|
|
export {
|
|
|
|
|
ParticleEditorModule,
|
|
|
|
|
particleEditorModule,
|
|
|
|
|
ParticlePlugin,
|
|
|
|
|
particleEditorModule as default
|
|
|
|
|
} from './ParticleEditorModule';
|
|
|
|
|
|
|
|
|
|
// Providers
|
|
|
|
|
export { ParticleInspectorProvider } from './providers/ParticleInspectorProvider';
|
|
|
|
|
|
|
|
|
|
// Panels
|
|
|
|
|
export { ParticleEditorPanel } from './panels/ParticleEditorPanel';
|
|
|
|
|
|
|
|
|
|
// Stores
|
|
|
|
|
export { useParticleEditorStore } from './stores/ParticleEditorStore';
|
|
|
|
|
export type { ParticleEditorState } from './stores/ParticleEditorStore';
|
|
|
|
|
|
|
|
|
|
// Components
|
|
|
|
|
export { GradientEditor, CurveEditor } from './components';
|
2025-12-07 01:00:35 +08:00
|
|
|
|
|
|
|
|
// Gizmos
|
|
|
|
|
export { registerParticleGizmo, unregisterParticleGizmo } from './gizmos/ParticleGizmo';
|