Skip to content

Commit

Permalink
Increaing lighting ex emissive
Browse files Browse the repository at this point in the history
  • Loading branch information
andristarr committed Mar 6, 2024
1 parent 9e5db9a commit b26f20a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/3d/lighting.rs
Expand Up @@ -145,7 +145,7 @@ fn setup(
mesh: meshes.add(Sphere::new(0.1).mesh().uv(32, 18)),
material: materials.add(StandardMaterial {
base_color: RED.into(),
emissive: Color::linear_rgba(7.13, 0.0, 0.0, 0.0),
emissive: Color::linear_rgba(500.0, 0.0, 0.0, 0.0),
..default()
}),
..default()
Expand Down Expand Up @@ -173,7 +173,7 @@ fn setup(
mesh: meshes.add(Capsule3d::new(0.1, 0.125)),
material: materials.add(StandardMaterial {
base_color: LIME.into(),
emissive: Color::linear_rgba(0.0, 7.13, 0.0, 0.0),
emissive: Color::linear_rgba(0.0, 500.0, 0.0, 0.0),
..default()
}),
..default()
Expand All @@ -198,7 +198,7 @@ fn setup(
mesh: meshes.add(Sphere::new(0.1).mesh().uv(32, 18)),
material: materials.add(StandardMaterial {
base_color: BLUE.into(),
emissive: Color::linear_rgba(0.0, 0.0, 7.13, 0.0),
emissive: Color::linear_rgba(0.0, 0.0, 500.0, 0.0),
..default()
}),
..default()
Expand Down

0 comments on commit b26f20a

Please sign in to comment.