Merge pull request #48711 from Eoin-ONeill-Yokai/bug47687
Fix rich text label effects processing even when the node is invisible.
This commit is contained in:
commit
420e75f277
|
@ -1432,10 +1432,11 @@ void RichTextLabel::_notification(int p_what) {
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_INTERNAL_PROCESS: {
|
case NOTIFICATION_INTERNAL_PROCESS: {
|
||||||
float dt = get_process_delta_time();
|
if (is_visible_in_tree()) {
|
||||||
|
float dt = get_process_delta_time();
|
||||||
_update_fx(main, dt);
|
_update_fx(main, dt);
|
||||||
update();
|
update();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue