use of org.terasology.engine.physics.engine.PhysicsEngine in project Terasology by MovingBlocks.
the class InitialisePhysics method step.
@Override
public boolean step() {
PhysicsEngine physicsEngine = PhysicsEngineManager.getNewPhysicsEngine(context);
context.put(Physics.class, physicsEngine);
context.put(PhysicsEngine.class, physicsEngine);
return true;
}
Aggregations