mirror of
https://github.com/godotengine/godot.git
synced 2025-03-01 23:21:39 +08:00
Attempt to fix rich text label effects processing even when
the node is invisible. ISSUE:47687
This commit is contained in:
parent
0f5fddbdc0
commit
c4f976b38b
@ -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
Block a user