122 子 【武将】武将系统 / 【武将】武将系统-客户端 布阵去掉通天塔
2个文件已修改
20 ■■■■■ 已修改文件
Main/System/HeroUI/HeroPosWin.cs 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/Team/TeamType.cs 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/HeroUI/HeroPosWin.cs
@@ -34,7 +34,7 @@
    [SerializeField] Button saveBtn;        //保存阵型
    [SerializeField] Button backBtn;      //退出界面
    [SerializeField] GroupButtonEx jjcBtn;       //竞技场
    [SerializeField] GroupButtonEx tttBtn;        //通天塔
    // [SerializeField] GroupButtonEx tttBtn;        //通天塔
    [SerializeField] GroupButtonEx mainFBBtn;     //主线副本
    //羁绊
@@ -80,10 +80,10 @@
        {
            SelectTeamFunc(TeamType.Arena);
        });
        tttBtn.AddListener(() =>
        {
            SelectTeamFunc(TeamType.Tower);
        });
        // tttBtn.AddListener(() =>
        // {
        //     SelectTeamFunc(TeamType.Tower);
        // });
        showConnTipToggleBtn.AddListener((value) =>
        {
Main/System/Team/TeamType.cs
@@ -3,12 +3,8 @@
public enum TeamType
{
    None = 0,
    //    PVE
    Story = 1,
    //    PVP 进攻
    Arena = 2,
    //    PVP 防守
    ArenaDefense = 3,
    Tower = 4,
    Story = 1, //主线
    Arena = 2,    //竞技场进攻
    ArenaDefense = 3,    //竞技场防守
}