pandemonium_engine/modules/props_2d/lights/prop_2d_light.h

36 lines
569 B
C++
Raw Normal View History

2022-03-17 22:33:22 +01:00
#ifndef PROP_2D_LIGHT_H
#define PROP_2D_LIGHT_H
2023-12-17 22:59:50 +01:00
2022-08-17 11:38:15 +02:00
#include "core/math/color.h"
#include "core/object/reference.h"
#include "core/containers/vector.h"
class Prop2DLight : public Reference {
GDCLASS(Prop2DLight, Reference);
public:
Vector2 get_position();
void set_position(const Vector2 &pos);
Color get_color() const;
void set_color(const Color &color);
float get_size() const;
void set_size(const float strength);
Prop2DLight();
~Prop2DLight();
private:
static void _bind_methods();
private:
Vector2 _position;
Color _color;
int _size;
};
#endif