From 2fba2bef9d5985ff8fc2992d6a21ab500f2514f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9A=B0=EC=A0=9C=EC=9C=A8/Jae=20Yul=20Woo?= Date: Wed, 23 Aug 2023 16:35:11 +0900 Subject: [PATCH] Fix type on 'programming/physics/bullet/queries.rst' --- programming/physics/bullet/queries.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programming/physics/bullet/queries.rst b/programming/physics/bullet/queries.rst index c86b48c1..a5fa2366 100644 --- a/programming/physics/bullet/queries.rst +++ b/programming/physics/bullet/queries.rst @@ -129,7 +129,7 @@ instead of a BulletTriangleMeshShape.) shape = BulletSphereShape(0.5) penetration = 0.0 - result = world.sweepTestClosest(shape, tsFrom, tsTo, penetration) + result = world.sweepTestClosest(shape, tsFrom, tsTo, BitMask32.allOn(), penetration) print(result.hasHit()) print(result.getHitPos())