Skip to content

Commit

Permalink
Fix torch light
Browse files Browse the repository at this point in the history
  • Loading branch information
rewin123 committed Dec 6, 2023
1 parent 810ead6 commit f738a61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/torch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ fn spawn_torch(
parent.spawn(PointLightBundle {
point_light: PointLight {
color: Color::ORANGE,
intensity: 10000.0,
intensity: 100.0,
range: 5.0,
radius: 5.0,
radius: 0.3,
shadows_enabled: false,
..default()
},
transform: Transform::from_translation(Vec3::new(0.0, 2.0, -0.4)),
transform: Transform::from_translation(Vec3::new(0.0, 0.0, 1.0)),
..default()
});
});
Expand Down

0 comments on commit f738a61

Please sign in to comment.