Browse Source

Merge pull request #93779 from hayahane/fix_get_property_cs

[C#] Fix `get_property_list` get wrong order of properties
Rémi Verschelde 11 months ago
parent
commit
40d8d82b85
1 changed files with 2 additions and 1 deletions
  1. 2 1
      modules/mono/csharp_script.cpp

+ 2 - 1
modules/mono/csharp_script.cpp

@@ -1524,9 +1524,10 @@ void CSharpInstance::get_property_list(List<PropertyInfo> *p_properties) const {
 		}
 	}
 
+	props.reverse();
 	for (PropertyInfo &prop : props) {
 		validate_property(prop);
-		p_properties->push_back(prop);
+		p_properties->push_front(prop);
 	}
 }