Fix NavigationObstacle not estimating radius
This commit is contained in:
parent
d3662d0e23
commit
acf86efebc
1 changed files with 3 additions and 4 deletions
|
@ -216,12 +216,11 @@ real_t NavigationObstacle::estimate_agent_radius() const {
|
||||||
}
|
}
|
||||||
Vector3 s = parent_spatial->get_global_transform().basis.get_scale();
|
Vector3 s = parent_spatial->get_global_transform().basis.get_scale();
|
||||||
radius *= MAX(s.x, MAX(s.y, s.z));
|
radius *= MAX(s.x, MAX(s.y, s.z));
|
||||||
}
|
|
||||||
|
|
||||||
if (radius > 0.0) {
|
if (radius > 0.0) {
|
||||||
return radius;
|
return radius;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1.0; // Never a 0 radius
|
return 1.0; // Never a 0 radius
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue