diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-04 18:55:24 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-04 18:55:24 +0200 |
commit | a1012058dd8cf9da42c36a75232e54f738f51314 (patch) | |
tree | 4604a04835808398cc9d2d2425e57ce555f6e10a /scene/3d | |
parent | db6af2ecc697be74cab63f3715f4119ab3d6eabd (diff) | |
parent | ea9dff87ae29ea34cff8d0452c2ea799c16b2d0c (diff) | |
download | redot-engine-a1012058dd8cf9da42c36a75232e54f738f51314.tar.gz |
Merge pull request #94886 from gturri/dev
Add error checks for bad configuration in `PathFollow2D/3D` `set_progress_ratio`
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/path_3d.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scene/3d/path_3d.cpp b/scene/3d/path_3d.cpp index 1f8f7cd54c..dc030b6a0f 100644 --- a/scene/3d/path_3d.cpp +++ b/scene/3d/path_3d.cpp @@ -461,9 +461,10 @@ real_t PathFollow3D::get_progress() const { } void PathFollow3D::set_progress_ratio(real_t p_ratio) { - if (path && path->get_curve().is_valid() && path->get_curve()->get_baked_length()) { - set_progress(p_ratio * path->get_curve()->get_baked_length()); - } + ERR_FAIL_NULL_MSG(path, "Can only set progress ratio on a PathFollow3D that is the child of a Path3D which is itself part of the scene tree."); + ERR_FAIL_COND_MSG(path->get_curve().is_null(), "Can't set progress ratio on a PathFollow3D that does not have a Curve."); + ERR_FAIL_COND_MSG(!path->get_curve()->get_baked_length(), "Can't set progress ratio on a PathFollow3D that has a 0 length curve."); + set_progress(p_ratio * path->get_curve()->get_baked_length()); } real_t PathFollow3D::get_progress_ratio() const { |