diff options
author | LikeLakers2 <1008889+LikeLakers2@users.noreply.github.com> | 2019-07-05 16:30:01 -0400 |
---|---|---|
committer | LikeLakers2 <1008889+LikeLakers2@users.noreply.github.com> | 2019-07-05 17:40:06 -0400 |
commit | e86f6faf641ea909798ba7fef3414eae6d1400b2 (patch) | |
tree | 2e348a80432b4881f22fbac36c9b6e1354970d91 /core | |
parent | d897131ac555de84afe9ca6845abf87c26957895 (diff) |
MultiNodeEdit now only shows properties with the exact same PropertyInfo data
Diffstat (limited to 'core')
-rw-r--r-- | core/object.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/object.h b/core/object.h index 1e0b22c086..e6c5b7c5b9 100644 --- a/core/object.h +++ b/core/object.h @@ -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; } |