Fix crash on NaN offset in path_follower 2d and 3d

This commit is contained in:
Hayden 2022-06-01 23:54:50 +12:00 committed by Hayden Leete
parent 3f0201335e
commit e05f969adb
2 changed files with 2 additions and 0 deletions

View File

@ -312,6 +312,7 @@ void PathFollow2D::_bind_methods() {
}
void PathFollow2D::set_offset(float p_offset) {
ERR_FAIL_COND(!isfinite(p_offset));
offset = p_offset;
if (path) {
if (path->get_curve().is_valid()) {

View File

@ -320,6 +320,7 @@ void PathFollow::_bind_methods() {
}
void PathFollow::set_offset(float p_offset) {
ERR_FAIL_COND(!isfinite(p_offset));
delta_offset = p_offset - offset;
offset = p_offset;