summaryrefslogtreecommitdiff
path: root/thirdparty/misc
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-09-24 13:21:55 +0200
committerGitHub <noreply@github.com>2021-09-24 13:21:55 +0200
commit5e4a71200e25811d8e570d87f08f0878dabb8bb9 (patch)
treec3271d3a6ec7b6647d97fcddc408f676718b21d7 /thirdparty/misc
parent32ab77ef8f537b2f2d0e4c6c0e6127ea9c2a20f4 (diff)
parent5c1195e456a168486c251340275ad8e9193873e9 (diff)
Merge pull request #53003 from KoBeWi/tween_0()
Diffstat (limited to 'thirdparty/misc')
-rw-r--r--thirdparty/misc/easing_equations.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/thirdparty/misc/easing_equations.cpp b/thirdparty/misc/easing_equations.cpp
index ce32c1a362..d164e3d560 100644
--- a/thirdparty/misc/easing_equations.cpp
+++ b/thirdparty/misc/easing_equations.cpp
@@ -312,6 +312,10 @@ Tween::interpolater Tween::interpolaters[Tween::TRANS_MAX][Tween::EASE_MAX] = {
};
real_t Tween::run_equation(TransitionType p_trans_type, EaseType p_ease_type, real_t t, real_t b, real_t c, real_t d) {
+ if (d == 0) {
+ // Special case to avoid dividing by 0 in equations.
+ return b + c;
+ }
interpolater cb = interpolaters[p_trans_type][p_ease_type];
ERR_FAIL_COND_V(cb == NULL, b);