Zooming in while in birds eye no longer clips through sea surface.

Zooming with mouse wheel is the same speed as zooming with keyboard.
main
fjc40 8 years ago
parent 75f8231bc5
commit 5d9b574378

@ -576,7 +576,12 @@ public class RaceViewController extends Controller {
// Bind zooming to scrolling
view3D.setOnScroll(e -> {
view3D.updateDistance(e.getDeltaY());
//view3D.updateDistance(e.getDeltaY());
if (e.getDeltaY() > 0) {
view3D.zoomIn();
} else {
view3D.zoomOut();
}
});
// Bind zooming to keypress (Z/X default)

@ -270,6 +270,8 @@ public class View3D extends Pane {
if (target.get() == null){
if (newDistance > MAX_ZOOM_LIMIT) {
setDistance(MAX_ZOOM_LIMIT);
} else if (newDistance <= ZOOM_IN_LIMIT) {
setDistance(ZOOM_IN_LIMIT);
} else {
setDistance(newDistance);
}

Loading…
Cancel
Save