UI: Add settings to change currency symbol and whether to show it after money value (#2453)

This commit is contained in:
kaoticengineering
2026-01-28 14:16:28 -06:00
committed by GitHub
parent 366c44d5c2
commit afddd284fc
8 changed files with 52 additions and 18 deletions
+4
View File
@@ -196,6 +196,10 @@ export const Settings = {
disableSuffixes: false,
/** The default amount of digits displayed after the decimal separator. */
fractionalDigits: 3,
/** Currency symbol used for displaying money. */
CurrencySymbol: "$",
/** Whether to show the currency symbol after the money value. */
CurrencySymbolAfterValue: false,
/**
* Player-defined key bindings. Don't use this property directly. It must be merged with DefaultKeyBindings in
* src\utils\KeyBindingUtils.ts.