diff --git a/examples/3d/shadow_biases_pipelined.rs b/examples/3d/shadow_biases_pipelined.rs index 2e3ea6d928d915..559767fc058815 100644 --- a/examples/3d/shadow_biases_pipelined.rs +++ b/examples/3d/shadow_biases_pipelined.rs @@ -17,6 +17,17 @@ use bevy::{ }; fn main() { + println!( + "Controls: + WSAD - forward/back/strafe left/right + E - up + Q - down + L - switch between directional and point lights + 1/2 - decrease/increase point light depth bias + 3/4 - decrease/increase point light normal bias + 5/6 - decrease/increase direction light depth bias + 7/8 - decrease/increase direction light normal bias" + ); App::new() .add_plugins(PipelinedDefaultPlugins) .add_startup_system(setup.system())