Skip to content

Is-Daouda/is-Engine-Tutorial

Repository files navigation

is::Engine Tutorial Arkanoid (Empty)

Compatible Platforms:

  • Android
  • Web (HTML 5 - CSS 3)
  • Windows / Linux

Supported tools:

danger Very important

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:

  1. Music files in .ogg format have been replaced by .wav.
  2. 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*/) {}

Description:

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.

Web game link:

http://is-daouda.github.io/

image 1 image 2 image 3