added isStart + (DU)

This commit is contained in:
Cedric Beck
2024-12-09 14:14:15 +01:00
parent 0e9ff609ec
commit dfd361d8be
5 changed files with 17 additions and 4 deletions

View File

@@ -128,7 +128,7 @@ private BitmapText createName(String name, boolean first, boolean own){
//renderedSize = 45
hudText.setSize(TEXT_SIZE);
hudText.setColor(first ? ACTIVE_COLOR : own ? OWN_COLOR : NORMAL_COLOR);
hudText.setText(name);
hudText.setText(own ? name + " (Du)" : name);
hudText.setLocalTranslation(PADDING_LEFT,hudText.getHeight()/2, 0);
return hudText;
}