diff --git a/bevy_renet2/examples/simple.rs b/bevy_renet2/examples/simple.rs index b276eba8..787dde1e 100644 --- a/bevy_renet2/examples/simple.rs +++ b/bevy_renet2/examples/simple.rs @@ -246,7 +246,7 @@ fn setup(mut commands: Commands, mut meshes: ResMut>, mut materials // light commands.spawn(( PointLight { - intensity: 1500.0, + intensity: 300000.0, shadows_enabled: true, ..Default::default() }, diff --git a/bevy_replicon_renet2/examples/tic_tac_toe.rs b/bevy_replicon_renet2/examples/tic_tac_toe.rs index 4274f3ee..d9883aab 100644 --- a/bevy_replicon_renet2/examples/tic_tac_toe.rs +++ b/bevy_replicon_renet2/examples/tic_tac_toe.rs @@ -1,5 +1,5 @@ //! A game to showcase single-player and multiplier game. -//! Run it with `--hotseat` to play locally or with `--client` / `--server` +//! Run it with `cargo run --example tic_tac_toe -- hotseat` to play locally or with `-- client` / `-- server` use std::{ error::Error, @@ -193,7 +193,7 @@ impl TicTacToePlugin { BottomText, )) .with_child(( - Text::default(), + TextSpan::default(), TextFont { font: symbol_font.0.clone(), font_size: FONT_SIZE,