mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +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
|
@ -56,6 +56,9 @@ void ScriptExtension::_bind_methods() {
|
|||
|
||||
GDVIRTUAL_BIND(_has_method, "method");
|
||||
GDVIRTUAL_BIND(_has_static_method, "method");
|
||||
|
||||
GDVIRTUAL_BIND(_get_script_method_argument_count, "method");
|
||||
|
||||
GDVIRTUAL_BIND(_get_method_info, "method");
|
||||
|
||||
GDVIRTUAL_BIND(_is_tool);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue