From cd5a3891b35f6d9e50ea9e2763341cb4e5935699 Mon Sep 17 00:00:00 2001 From: Aaron Kriegman Date: Fri, 22 May 2026 21:14:43 +0800 Subject: [PATCH] bugfix: missing bvh.scale() in voxel collider --- src/shape/voxels/voxels.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shape/voxels/voxels.rs b/src/shape/voxels/voxels.rs index 8a0a4329..def2e109 100644 --- a/src/shape/voxels/voxels.rs +++ b/src/shape/voxels/voxels.rs @@ -746,6 +746,7 @@ impl Voxels { /// Scale this shape. pub fn scaled(mut self, scale: Vector) -> Self { self.voxel_size *= scale; + self.chunk_bvh.scale(scale); self }