2022-11-15 13:17:37 +01:00
|
|
|
#include "paint_project.h"
|
|
|
|
|
2022-11-15 23:11:38 +01:00
|
|
|
Color PaintProject::get_current_color() {
|
|
|
|
return _current_color;
|
|
|
|
}
|
|
|
|
void PaintProject::set_current_color(const Color &color) {
|
|
|
|
_current_color = color;
|
|
|
|
|
2022-11-15 23:44:57 +01:00
|
|
|
emit_signal("current_color_changed", _current_color);
|
2022-11-15 23:11:38 +01:00
|
|
|
}
|
|
|
|
|
2022-11-15 13:17:37 +01:00
|
|
|
PaintProject::PaintProject() {
|
2022-11-15 23:11:38 +01:00
|
|
|
_current_color = Color(1, 1, 1, 1);
|
2022-11-15 13:17:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
PaintProject::~PaintProject() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void PaintProject::_bind_methods() {
|
2022-11-15 23:11:38 +01:00
|
|
|
ADD_SIGNAL(MethodInfo("current_color_changed", PropertyInfo(Variant::COLOR, "color")));
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_current_color"), &PaintProject::get_current_color);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_current_color", "size"), &PaintProject::set_current_color);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "current_color"), "set_current_color", "get_current_color");
|
2022-11-15 13:17:37 +01:00
|
|
|
}
|