diff options
author | kobewi <kobewi4e@gmail.com> | 2023-02-28 14:24:51 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-02-28 17:16:56 +0100 |
commit | 45f4d59fa477d6e22adb02432449e0fda10ac5d2 (patch) | |
tree | 2c661e1350b418de91b7431aec22865bbb5df94d /scene/animation/tween.cpp | |
parent | 491ded18983a4ae963ce9c29e8df5d5680873ccb (diff) | |
download | redot-engine-45f4d59fa477d6e22adb02432449e0fda10ac5d2.tar.gz |
Check for type mismatch in PropertyTweener.from()
Diffstat (limited to 'scene/animation/tween.cpp')
-rw-r--r-- | scene/animation/tween.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index 9d1118e0ef..e05c24ae09 100644 --- a/scene/animation/tween.cpp +++ b/scene/animation/tween.cpp @@ -489,6 +489,11 @@ Tween::Tween(bool p_valid) { } Ref<PropertyTweener> PropertyTweener::from(Variant p_value) { + ERR_FAIL_COND_V(tween.is_null(), nullptr); + if (!tween->_validate_type_match(p_value, final_val)) { + return nullptr; + } + initial_val = p_value; do_continue = false; return this; |