Closed Deepscorn closed 8 years ago
It's called when you use Artemis odb directly as usual:
public class ArtemisOnlyGame extends ApplicationAdapter {
@Override
public void create() {
super.create();
final WorldConfiguration config = new WorldConfigurationBuilder()
.with(
new RegularShapeRendererSystem(camera)
).build();
world = new World(config);
new Timer().scheduleTask(new Timer.Task() {
@Override
public void run() {
Gdx.app.exit();
}
}, 5F);
}
@Override
public void render() {
world.setDelta(Gdx.graphics.getDeltaTime());
world.process();
}
@Override
public void dispose() {
world.dispose();
}
}
Thanks!
Thank you! Will check soon. And thanks for great work!
Checked, it is fixed now
How to reproduce: Checked out your https://github.com/kotcrab/viseditor-superjumper-demo, updated sources, set breakpoint in dispose() of SpriteBoundsCreator.java. It's not called