Make easing properties drawn with anti aliasing

(cherry picked from commit 36236843f6)
This commit is contained in:
fox 2021-05-25 17:12:21 -04:00 committed by Rémi Verschelde
parent f88dc1fd44
commit a61ec597a1
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -988,9 +988,8 @@ void EditorPropertyEasing::_draw_easing() {
Size2 s = easing_draw->get_size(); Size2 s = easing_draw->get_size();
const int points = 48; const int point_count = 48;
float prev = 1.0;
const float exp = get_edited_object()->get(get_edited_property()); const float exp = get_edited_object()->get(get_edited_property());
const Ref<Font> f = get_font("font", "Label"); const Ref<Font> f = get_font("font", "Label");
@ -1002,24 +1001,20 @@ void EditorPropertyEasing::_draw_easing() {
line_color = get_color("font_color", "Label") * Color(1, 1, 1, 0.9); line_color = get_color("font_color", "Label") * Color(1, 1, 1, 0.9);
} }
Vector<Point2> lines; Vector<Point2> points;
for (int i = 1; i <= points; i++) { for (int i = 0; i <= point_count; i++) {
float ifl = i / float(points); float ifl = i / float(point_count);
float iflp = (i - 1) / float(points);
const float h = 1.0 - Math::ease(ifl, exp); const float h = 1.0 - Math::ease(ifl, exp);
if (flip) { if (flip) {
ifl = 1.0 - ifl; ifl = 1.0 - ifl;
iflp = 1.0 - iflp;
} }
lines.push_back(Point2(ifl * s.width, h * s.height)); points.push_back(Point2(ifl * s.width, h * s.height));
lines.push_back(Point2(iflp * s.width, prev * s.height));
prev = h;
} }
easing_draw->draw_multiline(lines, line_color, 1.0, true); easing_draw->draw_polyline(points, line_color, 1.0, true);
// Draw more decimals for small numbers since higher precision is usually required for fine adjustments. // Draw more decimals for small numbers since higher precision is usually required for fine adjustments.
int decimals; int decimals;
if (Math::abs(exp) < 0.1 - CMP_EPSILON) { if (Math::abs(exp) < 0.1 - CMP_EPSILON) {