Implementing dictionary operators

This commit is contained in:
Bastiaan Olij
2021-11-18 14:05:14 +11:00
parent 5cacce7a26
commit b008810c01
7 changed files with 46 additions and 9 deletions

View File

@@ -13,7 +13,9 @@ func _ready():
var ref = ExampleRef.new()
prints("sending ref: ", ref.get_instance_id(), "returned ref: ", $Example.extended_ref_checks(ref).get_instance_id())
prints("vararg args", $Example.varargs_func("some", "arguments", "to", "test"))
prints("test array", $Example.test_array())
prints("test dictionary", $Example.test_dictionary())
# Use properties.
prints("custom position is", $Example.group_subgroup_custom_position)