summaryrefslogtreecommitdiffstats
path: root/modules/mono/csharp_script.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-08-07 14:47:51 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-08-07 14:47:51 +0200
commit8018b478ca0e5468d380f85c6979baebf38328d4 (patch)
treefa17badd308511a34a6b7bb79b57ecf420dc492a /modules/mono/csharp_script.cpp
parent016621f51d1c7367d1b1c5340cb19ac63cdd6c11 (diff)
parent23f7f24e8ab3673dd9967801bf4e4f4c82c54b8b (diff)
downloadredot-engine-8018b478ca0e5468d380f85c6979baebf38328d4.tar.gz
Merge pull request #79470 from raulsntos/dotnet/singleton-can-be-instances-too
C#: Generate instance types for singletons
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r--modules/mono/csharp_script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp
index f592533a5a..2971706c75 100644
--- a/modules/mono/csharp_script.cpp
+++ b/modules/mono/csharp_script.cpp
@@ -72,7 +72,7 @@
// Types that will be skipped over (in favor of their base types) when setting up instance bindings.
// This must be a superset of `ignored_types` in bindings_generator.cpp.
-const Vector<String> ignored_types = { "PhysicsServer2DExtension", "PhysicsServer3DExtension" };
+const Vector<String> ignored_types = {};
#ifdef TOOLS_ENABLED
static bool _create_project_solution_if_needed() {