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.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/engine/src/lighting.rs b/engine/src/lighting.rs
index c5369db..e0608ef 100644
--- a/engine/src/lighting.rs
+++ b/engine/src/lighting.rs
@@ -1,12 +1,10 @@
use ecs::Component;
use crate::color::Color;
-use crate::vector::Vec3;
#[derive(Debug, Clone, Component)]
pub struct LightSource
{
- pub position: Vec3<f32>,
pub ambient: Color<f32>,
pub diffuse: Color<f32>,
pub specular: Color<f32>,
@@ -17,7 +15,6 @@ impl Default for LightSource
fn default() -> Self
{
Self {
- position: Vec3::default(),
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 },