blob: 95fe6ec7c45fbdb9c7cb9d7918e916518d66a37e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef COMPONENTS_LIGHT_HPP_
#define COMPONENTS_LIGHT_HPP_
#include <components/base.hpp>
#include <vector2.hpp>
#include <color.hpp>
#include <systems/light.hpp>
struct Illuminate : public Component {
int index;
Illuminate(vec2 pos, float radius, Color color) {
index = LightSystem::addLight(pos, radius, color);
}
Illuminate(XMLElement* imp, XMLElement* def) {
fromXML(imp, def);
}
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
float radius = def->FloatAttribute("radius");
index = LightSystem::addLight(vec2(), radius, Color(1, 1, 0));
}
};
#endif // COMPONENTS_LIGHT_HPP_
|