Fixup ColorRect and TextureRect renames

This commit is contained in:
Andrii Doroshenko (Xrayez)
2020-10-19 19:34:35 +03:00
parent b9d48031e8
commit 9c3a33a4e8
5 changed files with 15 additions and 19 deletions

View File

@ -36,17 +36,15 @@
class ColorRect : public Control {
GDCLASS(ColorRect, Control);
Color color;
Color color = Color(1, 1, 1);
protected:
void _notification(int p_what);
static void _bind_methods();
public:
void set_frame_color(const Color &p_color);
Color get_frame_color() const;
ColorRect();
void set_color(const Color &p_color);
Color get_color() const;
};
#endif // COLOR_RECT_H