summaryrefslogtreecommitdiff
path: root/engine/src/lighting.rs
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/lighting.rs')
-rw-r--r--engine/src/lighting.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/src/lighting.rs b/engine/src/lighting.rs
index d08276e..f41437a 100644
--- a/engine/src/lighting.rs
+++ b/engine/src/lighting.rs
@@ -6,7 +6,6 @@ use crate::util::builder;
#[derive(Debug, Clone, Component)]
pub struct LightSource
{
- pub ambient: Color<f32>,
pub diffuse: Color<f32>,
pub specular: Color<f32>,
}
@@ -16,7 +15,6 @@ impl Default for LightSource
fn default() -> Self
{
Self {
- ambient: Color { red: 0.2, green: 0.2, blue: 0.2 },
diffuse: Color { red: 0.5, green: 0.5, blue: 0.5 },
specular: Color { red: 1.0, green: 1.0, blue: 1.0 },
}
@@ -30,7 +28,7 @@ builder! {
#[non_exhaustive]
pub struct GlobalLight
{
- pub ambient_offset: Color<f32>,
+ pub ambient: Color<f32>,
}
}