mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 14:41:07 +00:00
Added a simpler/faster way to bind script languages instance wrappers to Godot
This commit is contained in:
parent
40ab9adec3
commit
4366b7c8b0
4 changed files with 37 additions and 6 deletions
|
|
@ -66,11 +66,6 @@ bool ScriptServer::is_scripting_enabled() {
|
|||
return scripting_enabled;
|
||||
}
|
||||
|
||||
int ScriptServer::get_language_count() {
|
||||
|
||||
return _language_count;
|
||||
}
|
||||
|
||||
ScriptLanguage *ScriptServer::get_language(int p_idx) {
|
||||
|
||||
ERR_FAIL_INDEX_V(p_idx, _language_count, NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue