mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fix get_property_list
get wrong order of properties
This commit is contained in:
parent
811ce36c60
commit
2d493e85a9
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user