diff options
| author | Ignacio Etcheverry | 2018-04-24 20:46:28 +0200 |
|---|---|---|
| committer | Ignacio Etcheverry | 2018-04-24 20:47:06 +0200 |
| commit | ff7fe9e771c0146b79aea7fa23a7bf262397992c (patch) | |
| tree | 20557249a3093d9ecb75ae118737e03b5e017e9f | |
| parent | f8ce412560ed3061340f4b0b9e0457a1249fb528 (diff) | |
| download | godot-ff7fe9e771c0146b79aea7fa23a7bf262397992c.tar.gz godot-ff7fe9e771c0146b79aea7fa23a7bf262397992c.tar.zst godot-ff7fe9e771c0146b79aea7fa23a7bf262397992c.zip | |
| -rw-r--r-- | modules/mono/editor/bindings_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp index a210b8e48..fadcc4ef5 100644 --- a/modules/mono/editor/bindings_generator.cpp +++ b/modules/mono/editor/bindings_generator.cpp @@ -730,7 +730,7 @@ Error BindingsGenerator::_generate_cs_type(const TypeInterface &itype, const Str } output.push_back(INDENT1 "public "); - bool is_abstract = !ClassDB::can_instance(itype.name) && ClassDB::is_class_enabled(itype.name); // can_instance returns true if there's a constructor and the class is not 'disabled' + bool is_abstract = itype.is_object_type && !ClassDB::can_instance(itype.name) && ClassDB::is_class_enabled(itype.name); // can_instance returns true if there's a constructor and the class is not 'disabled' output.push_back(itype.is_singleton ? "static class " : (is_abstract ? "abstract class " : "class ")); output.push_back(itype.proxy_name); |
