NcEngine
Light.h
1
5#pragma once
6
7#include "ncmath/Vector.h"
8
9namespace nc
10{
14{
15 Vector3 diffuseColor = Vector3::One();
16 Vector3 specularColor = Vector3::One();
17 float intensity = 1.0f;
18 bool castsShadows = true;
19};
20
23{
24 Vector3 diffuseColor = Vector3{1.0f, 0.9f, 0.9f};
25 Vector3 specularColor = Vector3{0.25f, 0.25f, 0.25f};
26 float intensity = 1.0f;
27 float radius = 25.0f;
28 bool castsShadows = true;
29};
30
33{
34 Vector3 diffuseColor = Vector3{1.0f, 0.9f, 0.9f};
35 Vector3 specularColor = Vector3{1.0f, 0.9f, 0.9f};
36 float intensity = 1.0f;
37 float innerAngle = 0.3491f;
38 float outerAngle = 0.5236f;
39 float radius = 25.0f;
40 bool castsShadows = true;
41};
42} // namespace nc
Component representing an infinite, directional light, like the sun. Not implementing shadowing curre...
Definition: Light.h:14
Component representing an omnidirectional light.
Definition: Light.h:23
Component representing a light pointing in a single direction with a radius for attenuation,...
Definition: Light.h:33
A three component vector.
Definition: Vector.h:29