Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.33 KB

CHANGELOG.md

File metadata and controls

42 lines (29 loc) · 1.33 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Added

  • Added Vector2
  • Added animation support with Animation
  • Added all of the X11 web colors as constants on Color
  • Added graphics::clear for clearing the screen
  • Added Drawable trait for objects that can be drawn to the screen
  • Added graphics::draw for drawing Drawables to the screen
  • Added graphics::draw_sprite for drawing a sprite to the screen
  • Added graphics::draw_text for drawing text to the screen
  • Added window::set_title for setting the window title
  • Added window::set_view for setting the view on the window

Changed

  • Context.window and Context.fps_tracker are no longer visible outside of the crate
  • Replaced SFML Color with custom Color

Fixed

  • Fixed sprite batching by removing some hard-coded values

0.0.1 - 2019-02-09

Added

  • Added base game constructs
    • State
    • Context
    • SpriteBatch