Allow unicode class names

This commit is contained in:
David Snopek
2024-09-06 17:24:07 -05:00
parent d477589104
commit 536ea8561e
7 changed files with 34 additions and 7 deletions

View File

@@ -276,6 +276,10 @@ func _ready():
assert_equal(library_path, ProjectSettings.globalize_path(library_path))
assert_equal(FileAccess.file_exists(library_path), true)
# Test a class with a unicode name.
var przykład = ExamplePrzykład.new()
assert_equal(przykład.get_the_word(), "słowo to przykład")
exit_with_status()
func _on_Example_custom_signal(signal_name, value):