mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 22:23:04 +00:00
Merge pull request #19149 from neikeq/x
Mono: Improve 'script class not found' error
This commit is contained in:
commit
64c903580e
@ -1954,11 +1954,6 @@ Variant CSharpScript::_new(const Variant **p_args, int p_argcount, Variant::Call
|
|||||||
|
|
||||||
ScriptInstance *CSharpScript::instance_create(Object *p_this) {
|
ScriptInstance *CSharpScript::instance_create(Object *p_this) {
|
||||||
|
|
||||||
if (!script_class) {
|
|
||||||
ERR_EXPLAIN("Cannot find class " + name + " for script " + get_path());
|
|
||||||
ERR_FAIL_V(NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
ERR_FAIL_COND_V(!valid, NULL);
|
ERR_FAIL_COND_V(!valid, NULL);
|
||||||
|
|
||||||
if (!tool && !ScriptServer::is_scripting_enabled()) {
|
if (!tool && !ScriptServer::is_scripting_enabled()) {
|
||||||
@ -1972,6 +1967,18 @@ ScriptInstance *CSharpScript::instance_create(Object *p_this) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!script_class) {
|
||||||
|
if (GDMono::get_singleton()->get_project_assembly() == NULL) {
|
||||||
|
// The project assembly is not loaded
|
||||||
|
ERR_EXPLAIN("Cannot instance script because the project assembly is not loaded. Script: " + get_path());
|
||||||
|
ERR_FAIL_V(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
// The project assembly is loaded, but the class could not found
|
||||||
|
ERR_EXPLAIN("Cannot instance script because the class '" + name + "' could not be found. Script: " + get_path());
|
||||||
|
ERR_FAIL_V(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
update_signals();
|
update_signals();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user