Merge pull request #1128 from Mathis-Z/master

Fixing #1127 by making return types of auto-generated functions dynamic
This commit is contained in:
Rémi Verschelde
2023-06-08 22:31:51 +02:00
committed by GitHub
4 changed files with 13 additions and 1 deletions

View File

@@ -79,6 +79,9 @@ func _ready():
# String += operator
assert_equal(example.test_string_ops(), "ABCĎE")
# UtilityFunctions::str()
assert_equal(example.test_str_utility(), "Hello, World! The answer is 42")
# PackedArray iterators
assert_equal(example.test_vector_ops(), 105)