Skip to content

Commit

Permalink
Fix type on 'programming/physics/bullet/queries.rst'
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeyul-woo committed Aug 23, 2023
1 parent 836b1d2 commit 2fba2be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programming/physics/bullet/queries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 2fba2be

Please sign in to comment.