Remove unused create_script method from ScriptLanguage

This commit is contained in:
HolonProduction 2025-09-26 12:25:44 +02:00
parent 05c097e5e2
commit edabe363f9
7 changed files with 2 additions and 18 deletions

View file

@ -246,10 +246,6 @@ int GDScriptLanguage::find_function(const String &p_function, const String &p_co
return -1;
}
Script *GDScriptLanguage::create_script() const {
return memnew(GDScript);
}
/* DEBUGGER FUNCTIONS */
thread_local int GDScriptLanguage::_debug_parse_err_line = -1;