mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
parent
74796d9b6c
commit
27d70924a0
1 changed files with 6 additions and 0 deletions
|
|
@ -1726,6 +1726,12 @@ void CSharpScript::_clear() {
|
||||||
|
|
||||||
Variant CSharpScript::call(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error) {
|
Variant CSharpScript::call(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error) {
|
||||||
|
|
||||||
|
if (unlikely(GDMono::get_singleton() == NULL)) {
|
||||||
|
// Probably not the best error but eh.
|
||||||
|
r_error.error = Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL;
|
||||||
|
return Variant();
|
||||||
|
}
|
||||||
|
|
||||||
GDMonoClass *top = script_class;
|
GDMonoClass *top = script_class;
|
||||||
|
|
||||||
while (top && top != native) {
|
while (top && top != native) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue