mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Allow signal connecting even if script is invalid (only when compiled with tools), fixes #17070
This commit is contained in:
parent
616b91b498
commit
3a93499f89
11 changed files with 33 additions and 4 deletions
|
@ -294,6 +294,10 @@ MethodInfo NativeScript::get_method_info(const StringName &p_method) const {
|
|||
return MethodInfo();
|
||||
}
|
||||
|
||||
bool NativeScript::is_valid() const {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool NativeScript::is_tool() const {
|
||||
NativeScriptDesc *script_data = get_script_desc();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue