MultiNodeEdit now only shows properties with the exact same PropertyInfo data

This commit is contained in:
LikeLakers2
2019-07-05 16:30:01 -04:00
parent d897131ac5
commit e86f6faf64
2 changed files with 12 additions and 1 deletions

View File

@ -179,6 +179,15 @@ struct PropertyInfo {
usage(PROPERTY_USAGE_DEFAULT) {
}
bool operator==(const PropertyInfo &p_info) const {
return ((type == p_info.type) &&
(name == p_info.name) &&
(class_name == p_info.class_name) &&
(hint == p_info.hint) &&
(hint_string == p_info.hint_string) &&
(usage == p_info.usage));
}
bool operator<(const PropertyInfo &p_info) const {
return name < p_info.name;
}