| 239 | } |
| 240 | |
| 241 | void ObjectDiffResult::set_property_diff(const Ref<PropertyDiffResult> &p_diff) { |
| 242 | property_diffs[p_diff->get_name()] = Variant(p_diff); |
| 243 | } |
| 244 | |
| 245 | Ref<PropertyDiffResult> ObjectDiffResult::get_property_diff(const String &p_name) const { |
| 246 | if (property_diffs.has(p_name)) { |