[+] Make it configurable
Build AquaMai / build (push) Has been cancelled Details

pull/85/head^2
Clansty 2024-11-19 01:38:29 +08:00
parent 4d25b6a43c
commit 786a8832d3
No known key found for this signature in database
GPG Key ID: 3A6BE8BAF2EDE134
2 changed files with 11 additions and 4 deletions

View File

@ -188,9 +188,6 @@ namespace AquaMai
Patch(typeof(TestProof)); Patch(typeof(TestProof));
Patch(typeof(PractiseMode)); Patch(typeof(PractiseMode));
Patch(typeof(HideSelfMadeCharts)); Patch(typeof(HideSelfMadeCharts));
Patch(typeof(SlideFadeInTweak));
Patch(typeof(JudgeAccuracyInfo));
# if CI # if CI
Patch(typeof(CiBuildAlert)); Patch(typeof(CiBuildAlert));

View File

@ -99,6 +99,16 @@ public class Config
""")] """)]
public bool HideHanabi { get; set; } public bool HideHanabi { get; set; }
[ConfigComment(
zh: "取消星星从 50% 透明度直接闪为 100% 的特性,星星会慢慢出现",
en: "Slides will fade in instead of instantly appearing")]
public bool SlideFadeInTweak { get; set; }
[ConfigComment(
zh: "在游戏总结的计分板中显示判定的详细信息(毫秒数)",
en: "Show detailed judgment information (in milliseconds) in the score board")]
public bool JudgeAccuracyInfo { get; set; }
[ConfigComment( [ConfigComment(
en: "Set the version string displayed at the top-right corner of the screen", en: "Set the version string displayed at the top-right corner of the screen",
zh: "把右上角的版本更改为自定义文本")] zh: "把右上角的版本更改为自定义文本")]
@ -127,4 +137,4 @@ public class Config
en: "Execute some command on game start", en: "Execute some command on game start",
zh: "在玩家登录的时候执行指定的命令脚本")] zh: "在玩家登录的时候执行指定的命令脚本")]
public string ExecOnEntry { get; set; } = ""; public string ExecOnEntry { get; set; } = "";
} }