Skip to content

Releases: LukeMS/pysdl2-roguelike-tutorial

Tutorial Part 0

04 Jan 03:53

Choose a tag to compare

0.1.2

Part 0: Creating a scene Manager

Fixed window size parameters

03 Jan 19:44

Choose a tag to compare

Fixes:

  • Fixed window size parameters, now working properly;
  • Sample image of proper size and with transparent background.

Basic release with Manager, SceneBase and some utilities

03 Jan 19:07

Choose a tag to compare

Created manager.py:

  • class Manager;
  • class KeyboardStateController;
  • class SceneBase;
  • RESOURCES.

Created constants.py;

Added rect.py:

  • class Rect;
  • def to_sdl_rect;
  • def flatten.

Added time.py:

  • class Clock;
  • def wait;
  • def delay;
  • def get_time;
  • def get_delta.