-
Notifications
You must be signed in to change notification settings - Fork 115
Upgrading Checklist 0.10
Daan van Yperen edited this page Jul 21, 2015
·
2 revisions
Before | After |
---|---|
w.initialize() |
remove, part of new World();
|
World w=new World(); w.setSystem(new MySystem()); w.setManager(new MyManager()); w.initialize()
|
WorldConfiguration config= new WorldConfiguration() .setSystem(new MySystem) .setManager(new MyManager()); World w = new World(setup);
|
extends VoidEntitySystem |
extends BaseSystem |
EntitySystem with Aspect.getEmpty()
|
extend BaseSystem instead |
see https://github.com/junkdog/artemis-odb/blob/master/CHANGELOG.md for all breaking changes.
- Overview
- Concepts
- Getting Started
- Using
- More guides
- Plugins
- Game Gallery
- Tools and Frameworks
- API reference