You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
committed by
Hein-Pieter van Braam
parent
a519dcd576
commit
c8ce9c0080
@@ -306,7 +306,9 @@ Variant GDNative::call_native(StringName p_native_call_type, StringName p_proced
|
|||||||
|
|
||||||
godot_variant result = E->get()(procedure_handle, (godot_array *)&p_arguments);
|
godot_variant result = E->get()(procedure_handle, (godot_array *)&p_arguments);
|
||||||
|
|
||||||
return *(Variant *)&result;
|
Variant res = *(Variant *)&result;
|
||||||
|
godot_variant_destroy(&result);
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
Error GDNative::get_symbol(StringName p_procedure_name, void *&r_handle, bool p_optional) {
|
Error GDNative::get_symbol(StringName p_procedure_name, void *&r_handle, bool p_optional) {
|
||||||
|
|||||||
Reference in New Issue
Block a user