1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Callable: add callv method

This method can be called from GDExtension.
This commit is contained in:
Ricardo Buring
2022-09-20 22:32:46 +02:00
parent e5594c26b1
commit 0c2055d15d
4 changed files with 24 additions and 0 deletions

View File

@@ -1859,6 +1859,7 @@ static void _register_variant_builtin_methods() {
/* Callable */
bind_method(Callable, callv, sarray("arguments"), varray());
bind_method(Callable, is_null, sarray(), varray());
bind_method(Callable, is_custom, sarray(), varray());
bind_method(Callable, is_standard, sarray(), varray());