mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 16:33:30 +00:00
Refactor variant built-in methods yet again.
* Using C-style function pointers now, InternalMethod is gone. * This ensures much better performance in typed code. * Renamed builtin_funcs to utility_funcs, to avoid naming confusion
This commit is contained in:
parent
fb2151089c
commit
635d33dc6c
11 changed files with 883 additions and 926 deletions
|
@ -1463,7 +1463,7 @@ public:
|
|||
argp.write[i] = &arr[i];
|
||||
}
|
||||
|
||||
r_ret = base.call(call->method, (const Variant **)argp.ptr(), argp.size(), ce);
|
||||
base.call(call->method, (const Variant **)argp.ptr(), argp.size(), r_ret, ce);
|
||||
|
||||
if (ce.error != Callable::CallError::CALL_OK) {
|
||||
r_error_str = "On call to '" + String(call->method) + "':";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue