1
0
forked from akanyan/mu3-mods

feat(MPO): add textures and fix an edge case

This commit is contained in:
2024-12-27 20:11:39 +00:00
parent 076fb75a6d
commit c6884bff7e
12 changed files with 2664 additions and 41 deletions

View File

@ -6,8 +6,12 @@ class patch_MU3UICounter: MU3UICounter {
protected extern void orig_calcNumFiguresFloat(double value);
protected new void calcNumFiguresFloat(double value) {
orig_calcNumFiguresFloat(value);
if(isDispSuffix) {
pushFigureFront(CustomRating.GetSuffix());
var b = CustomRating.GetSuffix();
if(b != 0) {
pushFigureFront(b);
}
}
}
public bool isDispSuffix { get; set; }