TestSweepTest: fix crash on native bullet (natives not loaded when shapes are created)
This commit is contained in:
parent
414e1b3fff
commit
38e4580857
@ -21,8 +21,8 @@ import java.util.List;
|
||||
public class TestSweepTest extends SimpleApplication {
|
||||
|
||||
private BulletAppState bulletAppState = new BulletAppState();
|
||||
private CapsuleCollisionShape obstacleCollisionShape = new CapsuleCollisionShape(0.3f, 0.5f);
|
||||
private CapsuleCollisionShape capsuleCollisionShape = new CapsuleCollisionShape(1f, 1f);
|
||||
private CapsuleCollisionShape obstacleCollisionShape;
|
||||
private CapsuleCollisionShape capsuleCollisionShape;
|
||||
private Node capsule;
|
||||
private Node obstacle;
|
||||
private float dist = .5f;
|
||||
@ -33,6 +33,9 @@ public class TestSweepTest extends SimpleApplication {
|
||||
|
||||
@Override
|
||||
public void simpleInitApp() {
|
||||
obstacleCollisionShape = new CapsuleCollisionShape(0.3f, 0.5f);
|
||||
capsuleCollisionShape = new CapsuleCollisionShape(1f, 1f);
|
||||
|
||||
stateManager.attach(bulletAppState);
|
||||
|
||||
capsule = new Node("capsule");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user