summaryrefslogtreecommitdiffstats
path: root/test/demo/main.gd
diff options
context:
space:
mode:
Diffstat (limited to 'test/demo/main.gd')
-rw-r--r--test/demo/main.gd9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/demo/main.gd b/test/demo/main.gd
index 671a879..7ef3ace 100644
--- a/test/demo/main.gd
+++ b/test/demo/main.gd
@@ -54,6 +54,15 @@ func _ready():
var array: Array[int] = [1, 2, 3]
$Example.test_tarray_arg(array)
+ prints("String += operator")
+ prints(" test string +=", $Example.test_string_ops())
+
+ prints("WorkerThreadPool")
+ prints(" test worker_thread_pool", $Example.test_workpool_ops())
+
+ prints("PackedArray iterators")
+ prints(" test packed array iterators", $Example.test_vector_ops())
+
prints("Properties")
prints(" custom position is", $Example.group_subgroup_custom_position)
$Example.group_subgroup_custom_position = Vector2(50, 50)