mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Merge pull request #16804 from Valentactive/fix_mono_template_compiling
fix template builds with mono
This commit is contained in:
commit
08584b7e22
2 changed files with 3 additions and 8 deletions
|
@ -1552,7 +1552,6 @@ bool CSharpScript::_update_exports() {
|
|||
}
|
||||
|
||||
bool CSharpScript::_update_signals() {
|
||||
#ifdef TOOLS_ENABLED
|
||||
if (!valid)
|
||||
return false;
|
||||
|
||||
|
@ -1583,8 +1582,6 @@ bool CSharpScript::_update_signals() {
|
|||
}
|
||||
|
||||
return changed;
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CSharpScript::_get_signal(GDMonoClass *p_class, GDMonoClass *p_delegate, Vector<Argument> ¶ms) {
|
||||
|
@ -2137,9 +2134,7 @@ void CSharpScript::get_script_signal_list(List<MethodInfo> *r_signals) const {
|
|||
}
|
||||
|
||||
void CSharpScript::update_signals() {
|
||||
#ifdef TOOLS_ENABLED
|
||||
_update_signals();
|
||||
#endif
|
||||
}
|
||||
|
||||
Ref<Script> CSharpScript::get_base_script() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue