TDME2 1.9.121
SceneLight.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
5#include <tdme/math/Vector3.h>
6#include <tdme/math/Vector4.h>
7
12
13SceneLight::SceneLight(int id)
14{
15 this->id = id;
16 enabled = false;
17 ambient.set(0.0f, 0.0f, 0.0f, 1.0f);
18 diffuse.set(1.0f, 1.0f, 1.0f, 1.0f);
19 specular.set(1.0f, 1.0f, 1.0f, 1.0f);
20 position.set(0.0f, 0.0f, 0.0f, 0.0f);
21 spotTo.set(0.0f, 0.0f, -1.0f);
22 spotDirection.set(0.0f, 0.0f, -1.0f);
23 spotExponent = 0.0f;
24 spotCutOff = 180.0f;
26 linearAttenuation = 0.0f;
28}
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Color 4 definition.
Definition: Color4.h:20
Scene light definition.
Definition: SceneLight.h:21
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
3D vector 4 class
Definition: Vector4.h:19
Vector4 & set(float x, float y, float z, float w)
Set up vector.
Definition: Vector4.h:84