2025-10-08 18:34:15 +08:00
|
|
|
/**
|
|
|
|
|
* ECS序列化系统
|
|
|
|
|
*
|
|
|
|
|
* 提供完整的场景、实体和组件序列化支持
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// 装饰器
|
|
|
|
|
export {
|
|
|
|
|
Serializable,
|
|
|
|
|
Serialize,
|
|
|
|
|
SerializeAsMap,
|
|
|
|
|
SerializeAsSet,
|
|
|
|
|
IgnoreSerialization,
|
|
|
|
|
getSerializationMetadata,
|
|
|
|
|
isSerializable,
|
|
|
|
|
SERIALIZABLE_METADATA,
|
|
|
|
|
SERIALIZE_FIELD,
|
|
|
|
|
SERIALIZE_OPTIONS
|
|
|
|
|
} from './SerializationDecorators';
|
|
|
|
|
|
|
|
|
|
export type {
|
|
|
|
|
SerializableOptions,
|
|
|
|
|
FieldSerializeOptions,
|
|
|
|
|
SerializationMetadata
|
|
|
|
|
} from './SerializationDecorators';
|
|
|
|
|
|
|
|
|
|
// 组件序列化器
|
|
|
|
|
export { ComponentSerializer } from './ComponentSerializer';
|
|
|
|
|
export type { SerializedComponent } from './ComponentSerializer';
|
|
|
|
|
|
|
|
|
|
// 实体序列化器
|
|
|
|
|
export { EntitySerializer } from './EntitySerializer';
|
|
|
|
|
export type { SerializedEntity } from './EntitySerializer';
|
|
|
|
|
|
|
|
|
|
// 场景序列化器
|
|
|
|
|
export { SceneSerializer } from './SceneSerializer';
|
|
|
|
|
export type {
|
|
|
|
|
SerializedScene,
|
|
|
|
|
SerializationFormat,
|
|
|
|
|
DeserializationStrategy,
|
|
|
|
|
MigrationFunction,
|
|
|
|
|
SceneSerializationOptions,
|
|
|
|
|
SceneDeserializationOptions
|
|
|
|
|
} from './SceneSerializer';
|
|
|
|
|
|
|
|
|
|
// 版本迁移
|
|
|
|
|
export { VersionMigrationManager, MigrationBuilder } from './VersionMigration';
|
|
|
|
|
export type {
|
|
|
|
|
ComponentMigrationFunction,
|
|
|
|
|
SceneMigrationFunction
|
|
|
|
|
} from './VersionMigration';
|
2025-10-09 12:30:04 +08:00
|
|
|
|
|
|
|
|
// 增量序列化
|
|
|
|
|
export { IncrementalSerializer, ChangeOperation } from './IncrementalSerializer';
|
|
|
|
|
export type {
|
|
|
|
|
IncrementalSnapshot,
|
|
|
|
|
IncrementalSerializationOptions,
|
|
|
|
|
EntityChange,
|
|
|
|
|
ComponentChange,
|
|
|
|
|
SceneDataChange
|
|
|
|
|
} from './IncrementalSerializer';
|