Releases: doonv/bevy_smooth_pixel_camera
Releases · doonv/bevy_smooth_pixel_camera
0.3.0
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/afterbevy_smooth_pixel_camera
's systems. - Major code cleanup
Full Changelog: 0.2.2...0.3.0
0.2.2
0.2.1
Changelog:
- Fixed type leak error in older rust versions.
- Added category metadata.
Full Changelog: 0.2.0...0.2.1
0.2.0
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
toviewport_size: ViewportSize
- Added
PixelCamera::from_size
- Deprecated
PixelCamera::from_scaling
- Lots of code cleanup