Skip to content

Releases: doonv/bevy_smooth_pixel_camera

0.3.0

17 Feb 21:09
1296155
Compare
Choose a tag to compare

Changelog

  • Updated Bevy to 0.13
  • Changed all camera systems to now run in PostUpdate, fixing some stutter issues, with the side effect of #4.
  • Added the CameraSystems SystemSet, which allows fine control over if you want your systems to run before/after bevy_smooth_pixel_camera's systems.
  • Major code cleanup

Full Changelog: 0.2.2...0.3.0

0.2.2

31 Jan 22:18
3a18aa0
Compare
Choose a tag to compare

Changelog:

  • Fixed bug where vertical smoothing doesn't work (#2)

Diffs: 0.2.1...0.2.2

0.2.1

13 Jan 18:32
d828e96
Compare
Choose a tag to compare

Changelog:

  • Fixed type leak error in older rust versions.
  • Added category metadata.

Full Changelog: 0.2.0...0.2.1

0.2.0

06 Jan 20:10
45c76a7
Compare
Choose a tag to compare

Pretty big update that makes the codebase much cleaner and easier to work with as well as supporting more ways to size the viewport.

Changelog:

  • Added ViewportSize enum, a new way to represent the viewport size.
  • Added FitMode enum, which is used in certain cases where the viewport's aspect ratio might not match the window's.
  • Changed PixelCamera::scaling to viewport_size: ViewportSize
  • Added PixelCamera::from_size
  • Deprecated PixelCamera::from_scaling
  • Lots of code cleanup

0.1.1

10 Nov 22:04
42effc2
Compare
Choose a tag to compare

Removed unused bevy features.