mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
Add methods to get argument count of methods
Added to: * `Callable`s * `Object`s * `ClassDB` * `Script(Instance)`s
This commit is contained in:
parent
0ace0a1292
commit
59bcc2888c
50 changed files with 821 additions and 3 deletions
|
|
@ -46,7 +46,7 @@ public:
|
|||
static Variant::Type get_function_return_type(const StringName &p_function);
|
||||
static StringName get_function_return_class(const StringName &p_function);
|
||||
static Variant::Type get_function_argument_type(const StringName &p_function, int p_arg);
|
||||
static int get_function_argument_count(const StringName &p_function, int p_arg);
|
||||
static int get_function_argument_count(const StringName &p_function);
|
||||
static bool is_function_vararg(const StringName &p_function);
|
||||
static bool is_function_constant(const StringName &p_function);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue