Don't modulate canvas on invisible color change

(cherry picked from commit 5e9400b2e3)
This commit is contained in:
Tomasz Chabora 2019-05-23 20:40:52 +02:00 committed by Rémi Verschelde
parent aacefcb7dc
commit 7431d3c3c0

View file

@ -70,7 +70,7 @@ void CanvasModulate::_bind_methods() {
void CanvasModulate::set_color(const Color &p_color) {
color = p_color;
if (is_inside_tree()) {
if (is_visible_in_tree()) {
VS::get_singleton()->canvas_set_modulate(get_canvas(), color);
}
}