summaryrefslogtreecommitdiffstats
path: root/scene/property_utils.h
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-05-19 00:17:34 +0200
committerkobewi <kobewi4e@gmail.com>2024-06-03 13:10:23 +0200
commitbe111004dd012850f2050a2453b8f88c4ef5b10c (patch)
treeea59fdd4a357112a559bd08edba9d4263a29024a /scene/property_utils.h
parent0d11108a01ca5017e055e498c579a271f3153ee1 (diff)
downloadredot-engine-be111004dd012850f2050a2453b8f88c4ef5b10c.tar.gz
Fix default NodePaths saved in scene
Diffstat (limited to 'scene/property_utils.h')
-rw-r--r--scene/property_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/property_utils.h b/scene/property_utils.h
index e934792e34..0bf040ad26 100644
--- a/scene/property_utils.h
+++ b/scene/property_utils.h
@@ -36,7 +36,7 @@
class PropertyUtils {
public:
- static bool is_property_value_different(const Variant &p_a, const Variant &p_b);
+ static bool is_property_value_different(const Object *p_object, const Variant &p_a, const Variant &p_b);
// Gets the most pure default value, the one that would be set when the node has just been instantiated
static Variant get_property_default_value(const Object *p_object, const StringName &p_property, bool *r_is_valid = nullptr, const Vector<SceneState::PackState> *p_states_stack_cache = nullptr, bool p_update_exports = false, const Node *p_owner = nullptr, bool *r_is_class_default = nullptr);