This repository was archived by the owner on May 30, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 248248 "TAG_DESC_MARGINSCALE" : " Level's judgment range" ,
249249 "TAG_DESC_MAXACCURACY" : " The highest achievable Accuracy in the current tile" ,
250250 "TAG_DESC_MAXCOMBO" : " Maximum Combo" ,
251+ "TAG_DESC_MAXTILEBPM" : " The highest BPM in the level" ,
251252 "TAG_DESC_MAXXACCURACY" : " The highest achievable XAccuracy in the current tile" ,
252253 "TAG_DESC_MEMORYUSAGE" : " Shows the current memory usage of the ADOFAI process.\n Only Windows Available" ,
253254 "TAG_DESC_MILLISECOND" : " Milliseconds on current computer" ,
Original file line number Diff line number Diff line change 248248 "TAG_DESC_MARGINSCALE" : " Level's judgment range" ,
249249 "TAG_DESC_MAXACCURACY" : " The highest achievable Accuracy in the current tile" ,
250250 "TAG_DESC_MAXCOMBO" : " Maximum Combo" ,
251+ "TAG_DESC_MAXTILEBPM" : " The highest BPM in the level" ,
251252 "TAG_DESC_MAXXACCURACY" : " The highest achievable XAccuracy in the current tile" ,
252253 "TAG_DESC_MEMORYUSAGE" : " Shows the current memory usage of the ADOFAI process.\n Only Windows Available" ,
253254 "TAG_DESC_MILLISECOND" : " Milliseconds on current computer" ,
Original file line number Diff line number Diff line change 248248 "TAG_DESC_MARGINSCALE" : " 레벨의 판정 범위" ,
249249 "TAG_DESC_MAXACCURACY" : " 현재 타일에서 달성 가능한 최대 정확도" ,
250250 "TAG_DESC_MAXCOMBO" : " 최대 콤보" ,
251+ "TAG_DESC_MAXTILEBPM" : " 레벨에서 가장 높은 BPM" ,
251252 "TAG_DESC_MAXXACCURACY" : " 현재 타일에서 달성 가능한 최대 절대 정확도" ,
252253 "TAG_DESC_MEMORYUSAGE" : " 현재 얼불춤의 메모리 사용률을 백분율로 표시합니다.\n 윈도우에서만 사용 가능" ,
253254 "TAG_DESC_MILLISECOND" : " 현재 컴퓨터 밀리초" ,
Original file line number Diff line number Diff line change 248248 "TAG_DESC_MARGINSCALE" : " Level's judgment range" ,
249249 "TAG_DESC_MAXACCURACY" : " The highest achievable Accuracy in the current tile" ,
250250 "TAG_DESC_MAXCOMBO" : " Maximum Combo" ,
251+ "TAG_DESC_MAXTILEBPM" : " The highest BPM in the level" ,
251252 "TAG_DESC_MAXXACCURACY" : " The highest achievable XAccuracy in the current tile" ,
252253 "TAG_DESC_MEMORYUSAGE" : " Shows the current memory usage of the ADOFAI process.\n Only Windows Available" ,
253254 "TAG_DESC_MILLISECOND" : " Milliseconds on current computer" ,
Original file line number Diff line number Diff line change 248248 "TAG_DESC_MARGINSCALE" : " Level's judgment range" ,
249249 "TAG_DESC_MAXACCURACY" : " The highest achievable Accuracy in the current tile" ,
250250 "TAG_DESC_MAXCOMBO" : " Maximum Combo" ,
251+ "TAG_DESC_MAXTILEBPM" : " The highest BPM in the level" ,
251252 "TAG_DESC_MAXXACCURACY" : " The highest achievable XAccuracy in the current tile" ,
252253 "TAG_DESC_MEMORYUSAGE" : " Shows the current memory usage of the ADOFAI process.\n Only Windows Available" ,
253254 "TAG_DESC_MILLISECOND" : " Milliseconds on current computer" ,
Original file line number Diff line number Diff line change 249249 "TAG_DESC_MARGINSCALE" : " 关卡的判定区间" ,
250250 "TAG_DESC_MAXACCURACY" : " 当前 Tile 可达到的最高精准度" ,
251251 "TAG_DESC_MAXCOMBO" : " 最大连击数量" ,
252+ "TAG_DESC_MAXTILEBPM" : " The highest BPM in the level" ,
252253 "TAG_DESC_MAXXACCURACY" : " 当前 Tile 可达到的最高 X-精准度" ,
253254 "TAG_DESC_MEMORYUSAGE" : " 显示 ADOFAI 进程当前的内存使用量。\n 仅适用于 Windows" ,
254255 "TAG_DESC_MILLISECOND" : " 当前电脑上的毫秒" ,
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ public static class Bpm {
66 [ Tag ( ProcessingFlags = ValueProcessing . RoundNumber ) ]
77 public static double TileBpm ;
88 [ Tag ( ProcessingFlags = ValueProcessing . RoundNumber ) ]
9+ public static double MaxTileBpm => scnGame . instance . highestBPM ;
10+ [ Tag ( ProcessingFlags = ValueProcessing . RoundNumber ) ]
911 public static double CurBpm ;
1012 [ Tag ( ProcessingFlags = ValueProcessing . RoundNumber ) ]
1113 public static double RecKPS ;
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ public static string GetTagDescription(string key) {
116116 [ "MARGINSCALE" ] = "Level's judgment range" ,
117117 [ "MAXACCURACY" ] = "The highest achievable Accuracy in the current tile" ,
118118 [ "MAXCOMBO" ] = "Maximum Combo" ,
119+ [ "MAXTILEBPM" ] = "The highest BPM in the level" ,
119120 [ "MAXXACCURACY" ] = "The highest achievable XAccuracy in the current tile" ,
120121 [ "MILLISECOND" ] = "Milliseconds on current computer" ,
121122 [ "MILLISECONDS" ] = "Total milliseconds so far" ,
You can’t perform that action at this time.
0 commit comments