The purpose of the scene module is to provide an easy to use layer of abstraction on top of the devkit2 game engine and other devkit2 modules.
To install the scene module into your devkit2 project, execute:
devkit install https://github.com/gameclosure/devkit-scene
Then, to use the scene module change your Application.js
to fit the following:
import scene;
exports = scene(function() {
// Setup your game here
});
This is the coolest and easiest way to make games with devkit. Check out some of the examples at github examples!
If you are looking for the actual documentation, a good place to get started is checking out devkit-scene on docgen
Pull requests are always welcome, but make sure to check out the contributing guidelines first.