You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
407 B
14 lines
407 B
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, // 常驻场景 - 只隐藏不销毁
|
|
}
|
|
|