blob: 4785fb0776c742c20b9c96dedd511ba294270502 (
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
27
28
29
30
|
#ifndef COMPONENTS_VISIBLE_HPP_
#define COMPONENTS_VISIBLE_HPP_
#include "base.hpp"
/**
* @struct Visible
* @brief If an entity is visible we want to be able to draw it.
*/
struct Visible : public Component {
/**
* @brief Decide what layer to draw the entity on.
* When stuff is drawn, it is drawn on a "layer". This layer gives more of a 3D effect to the world.
* @param z The desired "layer" of the entity.
*/
Visible(float z = 0.0f): z(z) {}
Visible(XMLElement* imp, XMLElement* def) {
fromXML(imp, def);
}
float z; /**< The value along the z axis the entity will be drawn on */
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
if (def->QueryFloatAttribute("value", &z) != XML_NO_ERROR)
z = 0;
}
};
#endif // COMPONENTS_VISIBLE_HPP_
|