Releases: johanhelsing/bevy_pancam
Releases · johanhelsing/bevy_pancam
v0.15.0
What's Changed
- Update bevy_egui by @Toniman575 in #65
- egui update by @extrawurst in #66
New Contributors
- @extrawurst made their first contribution in #66
Full Changelog: v0.14.0...v0.15.0
v0.14.0
What's Changed
- Added keyboard movement by @Toniman575 in #63
- Camera viewport support by @johanhelsing in #64
New Contributors
- @Toniman575 made their first contribution in #63
Full Changelog: v0.13.0...v0.14.0
v0.13.0
What's Changed
Migration guide
v0.12:
PanCam {
// prevent the camera from zooming too far out
max_scale: Some(40.),
// prevent the camera from zooming too far in
min_scale: 0.5,
// prevent the camera from panning or zooming past x -750. -750 was chosen to display both the edges of the
// sample image and some boundary space beyond it
min_x: Some(-750.),
// prevent the camera from panning or zooming past x 1750. 1750 was chosen to show an asymmetric boundary
// window with more space on the right than the left
max_x: Some(1750.),
// prevent the camera from panning or zooming past y -750. value chosen for same reason as above
min_y: Some(-750.),
// prevent the camera from panning or zooming past y 1750. value chosen for same reason as above
max_y: Some(1750.),
..default()
},
v0.13:
PanCam {
// prevent the camera from zooming too far out
max_scale: 40.,
// prevent the camera from zooming too far in
min_scale: 0.5,
// prevent the camera from panning or zooming past x -750. -750 was chosen to display both the edges of the
// sample image and some boundary space beyond it
min_x: -750.,
// prevent the camera from panning or zooming past x 1750. 1750 was chosen to show an asymmetric boundary
// window with more space on the right than the left
max_x: 1750.,
// prevent the camera from panning or zooming past y -750. value chosen for same reason as above
min_y: -750.,
// prevent the camera from panning or zooming past y 1750. value chosen for same reason as above
max_y: 1750.,
..default()
},
New Contributors
Full Changelog: v0.12.0...v0.13.0
v0.12.0
v0.11.1
v0.11.0
What's Changed
- Fix incorrect drag when pressing after a movement by @Vrixyz in #53
- bevy 0.13 by @tomara-x in #56
- Revert "Remove inspector example" by @johanhelsing in #41
New Contributors
Full Changelog: v0.10.0...v0.11.0
v0.10.0
What's Changed
- Fix egui focus by @johanhelsing in #44
- Bevy 0.12 by @SIGSTACKFAULT in #50
New Contributors
- @SIGSTACKFAULT made their first contribution in #50
Full Changelog: v0.9.0...v0.10.0
v0.9.0
What's Changed
- Make egui example build by @johanhelsing in #35
- Port to Bevy 0.11 by @johanhelsing in #39
Full Changelog: v0.8.0...v0.9.0
v0.8.0
v0.7.0
What's Changed
- Made PanCam inspectable with bevy-inspector-egui by @Tombleron in #15
- change readme examples to work with bevy 0.8 by @eScribMac in #17
- add PanCamSystemLabel by @aspiringLich in #19
- add config options to allow global coord clamping by @Arkessler in #18
- Fix bugs with fixed scaling modes by @johanhelsing in #23
- Crate level documentation and enabled
warn(missing_docs)
- Bevy 0.9 support
New Contributors
- @Tombleron made their first contribution in #15
- @eScribMac made their first contribution in #17
- @aspiringLich made their first contribution in #19
- @Arkessler made their first contribution in #18
Full Changelog: v0.6.1...v0.7.0