diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2021-12-11 14:03:48 +0100 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2021-12-11 14:03:48 +0100 |
commit | 18663aa305ef1ed5c87efd74425146112322b91f (patch) | |
tree | bfbe62692d1b878aaf1364c69743ddb0b18e4aa6 /scene/property_utils.h | |
parent | 092a2861277e7df87aec10516d713d0bf4adba79 (diff) | |
download | redot-engine-18663aa305ef1ed5c87efd74425146112322b91f.tar.gz |
Stop asuming a default value of NIL means there's no default
Diffstat (limited to 'scene/property_utils.h')
-rw-r--r-- | scene/property_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/property_utils.h b/scene/property_utils.h index fde9163548..aa06649cdc 100644 --- a/scene/property_utils.h +++ b/scene/property_utils.h @@ -38,7 +38,7 @@ class PropertyUtils { public: static bool is_property_value_different(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, 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); + 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); // Gets the instance/inheritance states of this node, in order of precedence, // that is, from the topmost (the most able to override values) to the lowermost |