1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

C#: Add global class support

Co-authored-by: willnationsdev <willnationsdev@gmail.com>
This commit is contained in:
Raul Santos
2023-02-02 00:54:16 +01:00
parent 2eec9a67d5
commit a1f454fee3
15 changed files with 201 additions and 25 deletions

View File

@@ -443,6 +443,8 @@ void GDMono::initialize() {
print_verbose(".NET: GodotPlugins initialized");
_on_core_api_assembly_loaded();
initialized = true;
}
#ifdef TOOLS_ENABLED
@@ -527,14 +529,6 @@ Error GDMono::reload_project_assemblies() {
GDMono::GDMono() {
singleton = this;
runtime_initialized = false;
finalizing_scripts_domain = false;
api_core_hash = 0;
#ifdef TOOLS_ENABLED
api_editor_hash = 0;
#endif
}
GDMono::~GDMono() {