TestSweepTest: ignore collisions against ourselves (needed for native bullet)
This commit is contained in:
parent
fe7f30d5ec
commit
87b6c117f2
@ -59,14 +59,19 @@ public class TestSweepTest extends SimpleApplication {
|
||||
public void simpleUpdate(float tpf) {
|
||||
|
||||
float move = tpf * 1;
|
||||
boolean colliding = false;
|
||||
|
||||
List<PhysicsSweepTestResult> sweepTest = bulletAppState.getPhysicsSpace().sweepTest(capsuleCollisionShape, new Transform(capsule.getWorldTranslation()), new Transform(capsule.getWorldTranslation().add(dist, 0, 0)));
|
||||
|
||||
if (sweepTest.size() > 0) {
|
||||
PhysicsSweepTestResult get = sweepTest.get(0);
|
||||
PhysicsCollisionObject collisionObject = get.getCollisionObject();
|
||||
fpsText.setText("Almost colliding with " + collisionObject.getUserObject().toString());
|
||||
} else {
|
||||
for (PhysicsSweepTestResult result : sweepTest) {
|
||||
if (result.getCollisionObject().getCollisionShape() != capsuleCollisionShape) {
|
||||
PhysicsCollisionObject collisionObject = result.getCollisionObject();
|
||||
fpsText.setText("Almost colliding with " + collisionObject.getUserObject().toString());
|
||||
colliding = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!colliding) {
|
||||
// if the sweep is clear then move the spatial
|
||||
capsule.move(move, 0, 0);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user