Skip to content

Commit

Permalink
fix tic_tac_toe example
Browse files Browse the repository at this point in the history
  • Loading branch information
UkoeHB committed Dec 29, 2024
1 parent c301a22 commit f351823
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bevy_renet2/examples/simple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ fn setup(mut commands: Commands, mut meshes: ResMut<Assets<Mesh>>, mut materials
// light
commands.spawn((
PointLight {
intensity: 1500.0,
intensity: 300000.0,
shadows_enabled: true,
..Default::default()
},
Expand Down
4 changes: 2 additions & 2 deletions bevy_replicon_renet2/examples/tic_tac_toe.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -193,7 +193,7 @@ impl TicTacToePlugin {
BottomText,
))
.with_child((
Text::default(),
TextSpan::default(),
TextFont {
font: symbol_font.0.clone(),
font_size: FONT_SIZE,
Expand Down

0 comments on commit f351823

Please sign in to comment.