Add ark-pixel font

This commit is contained in:
2025-05-25 08:42:17 -05:00
parent e4424f6abe
commit 1e2d971643
42 changed files with 858 additions and 102 deletions

View File

@@ -21,8 +21,8 @@ const LANGUAGE_MATCH:Dictionary[String, Language] = {
const REGION_MATCH:Dictionary[String, Region] = {
"US": Region.US,
"EU": Region.EU,
"AU": Region.AU,
"EU": Region.EU,
"JP": Region.JP
}
@@ -94,7 +94,7 @@ func setLocale(language:Language, region:Region) -> void:
var matchRegion = REGION_MATCH.find_key(region)
if matchRegion:
l += matchRegion.to_upper
l += matchRegion.to_upper()
else:
print("Invalid region: " + str(region))
l += REGION_MATCH.find_key(DEFAULT_REGION).to_upper()