diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-06-15 14:51:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 14:51:24 +0200 |
commit | cbcdda60c0719dd6dfadc002e68554ae0dbd9409 (patch) | |
tree | 5d73280e4634af2bb8216d2cf2e31cc52def39ca /modules/mono/csharp_script.h | |
parent | db0816e129b88073660ac6d10e8309eec42f85db (diff) | |
parent | 2ca6b9c61028b10bd1b7821cd32f6fbf505d71d1 (diff) |
Merge pull request #49570 from RandomShaper/fix_slow_scene_io
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index c347a902ed..965e882c5b 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -163,7 +163,7 @@ private: void load_script_signals(GDMonoClass *p_class, GDMonoClass *p_native_class); bool _get_signal(GDMonoClass *p_class, GDMonoMethod *p_delegate_invoke, Vector<SignalParameter> ¶ms); - bool _update_exports(); + bool _update_exports(PlaceHolderScriptInstance *p_instance_to_update = nullptr); bool _get_member_export(IMonoClassMember *p_member, bool p_inspect_export, PropertyInfo &r_prop_info, bool &r_exported); #ifdef TOOLS_ENABLED |