If KapEngine include scenes system, create scenes is really important.
By this importance, our goal is to give you the easiest way to create your own. The main camera of the scene is create automaticly.
Example
/* since KapEngine 1.1 */intmain() { // before, KapEngine already init and in variable call engineauto scene =engine.getSceneManager()->createScene("Scene Name"); // here scene is shared_ptr}/* KapEngine 1.0 */intmain() { // before, KapEngine already init and in variable call engineauto scene = KapEngine::Factory::createScene("Scene Name",*engine.getSceneManager()); // here scene is shared_ptr}