[Core] Rename linear_interpolate to lerp

This commit is contained in:
Aaron Franke
2020-03-16 05:07:33 -04:00
parent ad3c3e1bbb
commit 540156b387
48 changed files with 146 additions and 157 deletions

View File

@@ -132,7 +132,7 @@ Color EditorVisualProfiler::_get_color_from_signature(const StringName &p_signat
double rot = ABS(double(p_signature.hash()) / double(0x7FFFFFFF));
Color c;
c.set_hsv(rot, bc.get_s(), bc.get_v());
return c.linear_interpolate(get_theme_color("base_color", "Editor"), 0.07);
return c.lerp(get_theme_color("base_color", "Editor"), 0.07);
}
void EditorVisualProfiler::_item_selected() {