Merge pull request #52492 from raulsntos/fix-csharp-array-properties
Fix properties arrays in C# bindings generator
This commit is contained in:
commit
6679be45aa
1 changed files with 1 additions and 1 deletions
|
@ -2610,7 +2610,7 @@ bool BindingsGenerator::_populate_object_type_interfaces() {
|
|||
Map<StringName, StringName> accessor_methods;
|
||||
|
||||
for (const PropertyInfo &property : property_list) {
|
||||
if (property.usage & PROPERTY_USAGE_GROUP || property.usage & PROPERTY_USAGE_SUBGROUP || property.usage & PROPERTY_USAGE_CATEGORY) {
|
||||
if (property.usage & PROPERTY_USAGE_GROUP || property.usage & PROPERTY_USAGE_SUBGROUP || property.usage & PROPERTY_USAGE_CATEGORY || (property.type == Variant::NIL && property.usage & PROPERTY_USAGE_ARRAY)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue