2023-11-05 03:26:09 +08:00
|
|
|
import { v3 } from "cc";
|
|
|
|
import { JNLayerAnim, JNLayerInfo } from "../../../extensions/ngame/assets/ngame/ui/JNLayer";
|
2023-10-23 18:56:01 +08:00
|
|
|
|
|
|
|
export enum GLayer{
|
|
|
|
View = "View",
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum GUI{
|
2023-11-05 03:26:09 +08:00
|
|
|
Loading = "Loading",
|
2023-10-23 18:56:01 +08:00
|
|
|
Home = "Home",
|
|
|
|
}
|
|
|
|
|
|
|
|
export const UIConfig:{ [key: string]: JNLayerInfo; } = {
|
2023-11-05 03:26:09 +08:00
|
|
|
[GUI.Loading]:{
|
|
|
|
layer:GLayer.View,
|
|
|
|
uri: "prefab/ui/Loading/LoadingView",
|
|
|
|
anims:{
|
|
|
|
back:JNLayerAnim.Smaller,
|
|
|
|
backInfo:{key:"position",start:v3(0,0,0),end:v3(-720,0,0)}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
[GUI.Home]:{
|
|
|
|
layer:GLayer.View,
|
|
|
|
uri: "prefab/ui/Home/HomeView",
|
|
|
|
anims:{
|
|
|
|
front:JNLayerAnim.Enlarge,
|
|
|
|
back:JNLayerAnim.Smaller,
|
|
|
|
frontInfo:{key:"position",start:v3(720,0,0),end:v3(0,0,0)},
|
|
|
|
backInfo:{key:"position",start:v3(0,0,0),end:v3(-720,0,0)}
|
|
|
|
},
|
|
|
|
},
|
2023-10-23 18:56:01 +08:00
|
|
|
}
|
|
|
|
|