我也不知道在做什么 反正做的东西不少....

This commit is contained in:
DESKTOP-5RP3AKU\Jisol
2023-12-01 02:08:21 +08:00
parent e73cf98ff4
commit 088e91a32b
58 changed files with 4506 additions and 122 deletions

View File

@@ -50,6 +50,16 @@ export class MainView extends JNGLayerBase {
app.socket.Send(GAction.S_MODE_PVP_JOIN);
}
//点击挂机按钮
onOpenOnHookView(){
app.layer.Open(GUI.MainOnHookView);
}
//点击地图
onOpenMap(){
app.layer.Open(GUI.MapSelectView);
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "3ea68af5-bbc6-48ae-bc9f-7d60a2f55f8c",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,10 @@
import { _decorator, Component, Node } from 'cc';
import { JNGLayerBase } from '../../../components/JNComponent';
const { ccclass, property } = _decorator;
@ccclass('MainOnHookView')
export class MainOnHookView extends JNGLayerBase {
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "2ff462ee-27ac-4917-a72c-932754221b93",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "1421f8ee-f141-4e8e-9d80-53b75b883859",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,40 @@
import { _decorator, Component, Node } from 'cc';
import JNScrollViewItem from '../../../../extensions/ngame/assets/ngame/util/components/scrollview/JNScrollViewItem';
import { TB } from '../../../resources/config/data/schema';
import { Label } from 'cc';
import { Sprite } from 'cc';
import TbResource from '../../tools/TbResource';
const { ccclass, property } = _decorator;
@ccclass('MapSelectShowItem')
export class MapSelectShowItem extends JNScrollViewItem<TB.TbGOnHookMaps> {
@property({type:Sprite,displayName:"地图预览图"})
mapImage:Sprite;
@property({type:Label,displayName:"地图名称"})
mapName:Label;
@property({type:Label,displayName:"地图介绍"})
mapText:Label;
onInit(data: TB.TbGOnHookMaps): void {
this.onUpdateView();
}
//刷新页面
onUpdateView(){
this.mapName.string = this.data.name;
this.mapText.string = this.data.introduce;
//加载预览图
TbResource.loadSpriteFrame(this.data.mapImage,this.mapImage,this);
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "e30501ff-fe51-4db6-9fc9-aaf7df8f6ba0",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -0,0 +1,23 @@
import { _decorator, Component, Node } from 'cc';
import JNLayerBase from '../../../../extensions/ngame/assets/ngame/ui/base/JNLayerBase';
import JNScrollView from '../../../../extensions/ngame/assets/ngame/util/components/scrollview/JNScrollView';
import { TD } from '../../App';
const { ccclass, property } = _decorator;
@ccclass('MapSelectView')
export class MapSelectView extends JNLayerBase {
//地图列表
@property(JNScrollView)
views:JNScrollView;
onJNLoad(data?: any): void {
super.onJNLoad(data);
this.views.refreshData(TD.TbGOnHookMaps.getDataList())
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "dcbf1c81-3947-4aae-9a11-bd14764750a0",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -20,10 +20,10 @@ export enum GUI{
/** 主页页面 */
MainChat = "MainChat", //主页聊天页面
IntoBattleView = "IntoBattleView", //上阵页面
PetUpStarView = "PetUpStarView", //宠物升星页面
MainOnHookView = "MainOnHookView", //挂机弹窗
MapSelectView = "MapSelectView", //地图选择页面
/**游戏模式页面 */
PVPModeMatchView = "PVPModeMatchView", //PVP模式匹配页面
@@ -85,6 +85,16 @@ const UIMainConfig:{ [key: string]: JNLayerInfo; } = {
uri: "prefab/ui/阵法/阵法选择页面",
anims:BackOutScale,
},
[GUI.MainOnHookView]:{
layer:GLayer.Popup,
uri: "prefab/ui/主页/挂机/主页挂机页面",
anims:BackOutScale,
},
[GUI.MapSelectView]:{
layer:GLayer.Popup,
uri: "prefab/ui/地图/地图选择页面",
anims:BackOutScale,
},
}
//宠物页面