Is a lightweight cross-platform game engine. Written mostly on C++. Main purpose of this engine to be easy to learn, read and understand.
Questions can be asked via facebook instagram
Windows, MacOS, Linux, Android, iOS
Demo project can be found in Demo/Projects/{TargetPlatfor} directory.
- Entity-Component system and scene management
- Renderer with materials, lighting and model loading
- Lightweight and fast. Distributable binaries and assets weight around 1.5mb
- Crossp-platform input system
- Audio system
- Documented most part of code
- Base scene, material and shaders editor
- Event System
- Assert System. Allowing stop or skip broken code fragments
- Memory Manager
- Function Holders. Provides ability to bind to any method or function and call it later on demand
- Propereties. Aka Reflection support for basic types. Сonvenient for editor and load/save functionalities
- Factory for lazy objects creation added
- Introduction and Windows Setup: https://www.youtube.com/watch?v=tnp09QB5sak
- MacOS and iOS Setup: https://www.youtube.com/watch?v=NiSvKbGyHXU&t=2s
In order to create new game you must do 3 things.
- Create inherit class from Screen which will be reflection of you current game screen like "Menu", "Level 1", "Monkey Boss" etc. Every game needs at leas one screen to display. Most likely you will override virtual Screen function
void Update(float sec);
to provide game drawing or state updating mechanism or any your custom stuff. - Create inherit class from Game which will be reflection of you game. You must override one pure virtual function called
virtual Screen* GetStartScreen() = 0;
to lets Game know which Screen you want to play first. This class usually contains general game information. Like saves, configuration available screens etc. - Last thing to do is Create template function that returns you game to engine environment. This function declaration contains in Cross.h. Example of this function may looks like this:
Game* CrossMain(Launcher* launcher){
Game* superCoolGame = new YourSuperCoolGame(launcher);
return superCoolGame;
}