Finally fixed font texture

This commit is contained in:
2024-05-09 14:12:40 +01:00
parent 10952b6502
commit 099340f870
20 changed files with 294 additions and 95 deletions

View File

@@ -6,7 +6,7 @@ func _ready() -> void:
func _on_text_changed(new_text : String) -> void:
var caret_pos = caret_column
text = new_text.to_upper().replace(" ", "")
text = new_text.to_upper()
caret_column = caret_pos
func _on_text_submitted(new_text : String) -> void: