1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

-Make sure properties are exported the way they should in xml, fixes #1799

This commit is contained in:
Juan Linietsky
2015-05-03 20:31:50 -03:00
parent 767f71a35e
commit 04fb3402c5

View File

@@ -2563,7 +2563,7 @@ Error ResourceFormatSaverXMLInstance::save(const String &p_path,const RES& p_res
List<PropertyInfo> property_list; List<PropertyInfo> property_list;
res->get_property_list(&property_list); res->get_property_list(&property_list);
property_list.sort(); // property_list.sort();
for(List<PropertyInfo>::Element *PE = property_list.front();PE;PE=PE->next()) { for(List<PropertyInfo>::Element *PE = property_list.front();PE;PE=PE->next()) {