- Android
- Web (HTML 5 - CSS 3)
- Windows / Linux
Since the game engine has evolved a lot, some part of the Youtube tutorial no longer corresponds to this one!
These details mentioned below allow to adapt this new version of the engine to the youtube tutorial:
- Music files in .ogg format have been replaced by .wav.
- The constructor of the scenes classes have changed :
- This constructor has been replaced (take the case of the GameMenu class) :
GameMenu(sf::RenderWindow &window, sf::View &view, is::Render &surface, is::GameSystemExtended &gameSysExt):
GameDisplay(window, view, surface, gameSysExt, sf::Color::Black /* => scene color*/) {}
- By this one :
GameMenu(is::GameSystemExtended &gameSysExt):
GameDisplay(gameSysExt, sf::Color::Black /* => scene color*/) {}
This project is for use with the Youtube Tutorial which shows how to create a game with is::Engine. It already contains the resources (sprites, sounds, fonts) for creating the game.