export { Orientation } from './Orientation'; export { SceneType } from './SceneType'; // Legacy exports for backward compatibility // These are maintained for existing code that uses the old enum names export enum EDirection { Landscape = "landscape", Portrait = "portrait", } export enum EP { Normal, // 普通场景 - 退出时销毁 Resident, // 常驻场景 - 只隐藏不销毁 }