UGCProjects/ProjectTemp_T/Script/Global/DefaultSettings.lua
2025-01-04 23:00:19 +08:00

31 lines
1.1 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

DefaultSettings = {}
---@type TeamId
DefaultSettings.LocalTeamId = nil;
DefaultSettings.EnemyTeamId = nil;
DefaultSettings.MapCenterLocation = { X = 205136.140625, Y = 279220.031250, Z = 1069.231689 };
--- 游戏等待时间1.0 是 30 秒2.0 是 20 + 22 秒
DefaultSettings.EnableLevels = true;
DefaultSettings.SelectMapTime = DefaultSettings.EnableLevels and 20 or 8;
DefaultSettings.SelectSoldierTime = 22;
--- 显示 选择武器 的时间
DefaultSettings.SelectWeaponShowTime = 8;
DefaultSettings.HadShowFaceNotice = false;
--- 回合信息
DefaultSettings.RoundInfo = {
RoundNum = 7; -- 回合次数该数为奇数
EachRoundTime = 1200.; -- 每回合时间,单位 秒
RoundSettleTime = 6.; -- 每回合结算时间,单位秒
};
--- 自动返回大厅的时间
DefaultSettings.DelayReturnToLobbyTime = 20;
--- 助攻时间
DefaultSettings.AssistTime = 6.;
--- 显示是否是全部的 KDA
DefaultSettings.bUseTotalPlayerKDA = true;
--- 是否支持友伤
DefaultSettings.DamageByTeamPlayer = false;