From 236857c92a01473724f205eaba8fe8c0f89e3576 Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Fri, 24 Jul 2020 12:08:01 +0100 Subject: [PATCH] Ensure Bullet HeightMapShape3D data width and depth are at least 2. --- modules/bullet/shape_bullet.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/bullet/shape_bullet.cpp b/modules/bullet/shape_bullet.cpp index f4550c20246..274493ed177 100644 --- a/modules/bullet/shape_bullet.cpp +++ b/modules/bullet/shape_bullet.cpp @@ -504,6 +504,9 @@ void HeightMapShapeBullet::set_data(const Variant &p_data) { int l_width = d["width"]; int l_depth = d["depth"]; + ERR_FAIL_COND_MSG(l_width < 2, "Map width must be at least 2."); + ERR_FAIL_COND_MSG(l_depth < 2, "Map depth must be at least 2."); + // TODO This code will need adjustments if real_t is set to `double`, // because that precision is unnecessary for a heightmap and Bullet doesn't support it...