Increase how much you can zoom out
This commit is contained in:
parent
d89d539f3b
commit
ddf2883e4f
1 changed files with 1 additions and 1 deletions
|
@ -78,6 +78,6 @@ pub fn zoom_camera(
|
|||
MouseScrollUnit::Line => 0.1,
|
||||
MouseScrollUnit::Pixel => 0.001,
|
||||
};
|
||||
projection.scale = (projection.scale - scroll.delta.y * scroll_type_multiplier).clamp(0.1, 2.5);
|
||||
projection.scale = (projection.scale - scroll.delta.y * scroll_type_multiplier).clamp(0.1, 4.0);
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue