diff options
author | alpacat <hayahane02@gmail.com> | 2024-06-30 19:48:35 +0800 |
---|---|---|
committer | alpacat <hayahane02@gmail.com> | 2024-06-30 19:48:35 +0800 |
commit | 2d493e85a93ada822e4b61f5f001775c67e076fd (patch) | |
tree | 3d5019939f54bf695c266faa5cba0a11fa864645 /modules/mono | |
parent | 811ce36c6090013f1a48676c0388892bf1621288 (diff) | |
download | redot-engine-2d493e85a93ada822e4b61f5f001775c67e076fd.tar.gz |
Fix `get_property_list` get wrong order of properties
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/csharp_script.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 36c8a40ed9..a917180da3 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -1515,9 +1515,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); } } |