summaryrefslogtreecommitdiffstats
path: root/scene/animation/tween.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-11-09 20:03:53 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-11-09 20:03:53 +0100
commit0e6160a00fe7097be9409e1a696b8df9a937f4ce (patch)
treeae2aa99c1e47bf9b9c7c5f1ec570362fc8e1ce60 /scene/animation/tween.cpp
parentc2246a5a6fe1da1815245a54342ef96da9515263 (diff)
parentbf9d9712153c468c391772f9c2562cfe5ee6a2b2 (diff)
downloadredot-engine-0e6160a00fe7097be9409e1a696b8df9a937f4ce.tar.gz
Merge pull request #81525 from KoBeWi/tweening_the_impossible
Check if property exists before tweening
Diffstat (limited to 'scene/animation/tween.cpp')
-rw-r--r--scene/animation/tween.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp
index c778129eb6..32028bcf28 100644
--- a/scene/animation/tween.cpp
+++ b/scene/animation/tween.cpp
@@ -104,7 +104,15 @@ Ref<PropertyTweener> Tween::tween_property(const Object *p_target, const NodePat
CHECK_VALID();
Vector<StringName> property_subnames = p_property.get_as_property_path().get_subnames();
- if (!_validate_type_match(p_target->get_indexed(property_subnames), p_to)) {
+#ifdef DEBUG_ENABLED
+ bool prop_valid;
+ const Variant &prop_value = p_target->get_indexed(property_subnames, &prop_valid);
+ ERR_FAIL_COND_V_MSG(!prop_valid, nullptr, vformat("The tweened property \"%s\" does not exist in object \"%s\".", p_property, p_target));
+#else
+ const Variant &prop_value = p_target->get_indexed(property_subnames);
+#endif
+
+ if (!_validate_type_match(prop_value, p_to)) {
return nullptr;
}