diff --git a/examples/3d/orthographic.rs b/examples/3d/orthographic.rs index c34e06a788513..32447fd6a85ad 100644 --- a/examples/3d/orthographic.rs +++ b/examples/3d/orthographic.rs @@ -18,8 +18,8 @@ fn setup( // camera commands.spawn(Camera3dBundle { projection: OrthographicProjection { - scale: 3.0, - scaling_mode: ScalingMode::FixedVertical(2.0), + // 6 world units per window height. + scaling_mode: ScalingMode::FixedVertical(6.0), ..default() } .into(),