Fix wrong heights data used to compute min and max heights
(cherry picked from commit cdcdba704b
)
This commit is contained in:
parent
948562261d
commit
c94e80a0a3
|
@ -510,18 +510,19 @@ void HeightMapShapeBullet::set_data(const Variant &p_data) {
|
|||
// Compute min and max heights if not specified.
|
||||
if (!d.has("min_height") && !d.has("max_height")) {
|
||||
|
||||
PoolVector<real_t>::Read r = heights.read();
|
||||
int heights_size = heights.size();
|
||||
PoolVector<real_t>::Read r = l_heights.read();
|
||||
int heights_size = l_heights.size();
|
||||
|
||||
for (int i = 0; i < heights_size; ++i) {
|
||||
real_t h = r[i];
|
||||
|
||||
if (h < l_min_height)
|
||||
if (h < l_min_height) {
|
||||
l_min_height = h;
|
||||
else if (h > l_max_height)
|
||||
} else if (h > l_max_height) {
|
||||
l_max_height = h;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setup(l_heights, l_width, l_depth, l_min_height, l_max_height);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue