Keep order for C# exported members
This commit is contained in:
parent
4febf69f2a
commit
da419bbeed
2 changed files with 10 additions and 9 deletions
|
@ -1585,8 +1585,8 @@ void CSharpInstance::get_properties_state_for_reloading(List<Pair<StringName, Va
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSharpInstance::get_property_list(List<PropertyInfo> *p_properties) const {
|
void CSharpInstance::get_property_list(List<PropertyInfo> *p_properties) const {
|
||||||
for (Map<StringName, PropertyInfo>::Element *E = script->member_info.front(); E; E = E->next()) {
|
for (OrderedHashMap<StringName, PropertyInfo>::ConstElement E = script->member_info.front(); E; E = E.next()) {
|
||||||
p_properties->push_back(E->value());
|
p_properties->push_front(E.value());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Call _get_property_list
|
// Call _get_property_list
|
||||||
|
@ -1608,12 +1608,12 @@ void CSharpInstance::get_property_list(List<PropertyInfo> *p_properties) const {
|
||||||
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
Array array = Array(GDMonoMarshal::mono_object_to_variant(ret));
|
Array array = Array(GDMonoMarshal::mono_object_to_variant(ret));
|
||||||
for (int i = 0, size = array.size(); i < size; i++)
|
for (int i = 0, size = array.size(); i < size; i++) {
|
||||||
p_properties->push_back(PropertyInfo::from_dict(array.get(i)));
|
p_properties->push_back(PropertyInfo::from_dict(array.get(i)));
|
||||||
return;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
top = top->get_parent_class();
|
top = top->get_parent_class();
|
||||||
|
@ -1634,8 +1634,9 @@ Variant::Type CSharpInstance::get_property_type(const StringName &p_name, bool *
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSharpInstance::get_method_list(List<MethodInfo> *p_list) const {
|
void CSharpInstance::get_method_list(List<MethodInfo> *p_list) const {
|
||||||
if (!script->is_valid() || !script->script_class)
|
if (!script->is_valid() || !script->script_class) {
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
GD_MONO_SCOPE_THREAD_ATTACH;
|
GD_MONO_SCOPE_THREAD_ATTACH;
|
||||||
|
|
||||||
|
@ -3280,8 +3281,8 @@ Ref<Script> CSharpScript::get_base_script() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSharpScript::get_script_property_list(List<PropertyInfo> *p_list) const {
|
void CSharpScript::get_script_property_list(List<PropertyInfo> *p_list) const {
|
||||||
for (Map<StringName, PropertyInfo>::Element *E = member_info.front(); E; E = E->next()) {
|
for (OrderedHashMap<StringName, PropertyInfo>::ConstElement E = member_info.front(); E; E = E.next()) {
|
||||||
p_list->push_back(E->value());
|
p_list->push_front(E.value());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ class CSharpScript : public Script {
|
||||||
Set<StringName> exported_members_names;
|
Set<StringName> exported_members_names;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Map<StringName, PropertyInfo> member_info;
|
OrderedHashMap<StringName, PropertyInfo> member_info;
|
||||||
|
|
||||||
void _clear();
|
void _clear();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue