bevy/CHANGELOG.md
Julian Heinken a92790c011
sRGB awareness for Color (#616)
Color is now sRGB aware, added SrgbColorSpace trait for f32
2020-10-08 10:30:23 -07:00

7.6 KiB

Changelog

Unreleased

Added

Changed

  • Breaking Change: sRGB awareness for Color
    • Color is now assumed to be provided in the non-linear sRGB colorspace, and constructors such as Color::rgb and Color::rgba will be converted to linear sRGB under-the-hood.
    • This allows drop-in use of colors from most applications.
    • New methods Color::rgb_linear and Color::rgba_linear will accept colors already in linear sRGB (the old behavior)
    • Individual color-components must now be accessed through setters and getters: .r, .g, .b, .a, .set_r, .set_g, .set_b, .set_a, and the corresponding methods with the *_linear suffix.

Version 0.2.1 (2020-9-20)

Fixed

  • Remove UI queue print
  • Use async executor 1.3.0

Version 0.2.0 (2020-9-19)

Added

Changed

Fixed

Internal Improvements

Version 0.1.3 (2020-8-22)

Version 0.1.2 (2020-8-10)

Version 0.1.1 (2020-8-10)

Version 0.1.0 (2020-8-10)