From 08f39e412b7a0022bf4e9fb2c0f9ec6a2a8ee36f Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 15 Sep 2025 17:45:18 +0200 Subject: [PATCH] Document Label performance caveats with huge amounts of text RichTextLabel generally performs better in this scenario. --- doc/classes/Label.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/classes/Label.xml b/doc/classes/Label.xml index e0bae5cfeb7..572f61c8564 100644 --- a/doc/classes/Label.xml +++ b/doc/classes/Label.xml @@ -5,6 +5,7 @@ A control for displaying plain text. It gives you control over the horizontal and vertical alignment and can wrap the text inside the node's bounding rectangle. It doesn't support bold, italics, or other rich text formatting. For that, use [RichTextLabel] instead. + [b]Note:[/b] A single Label node is not designed to display huge amounts of text. To display large amounts of text in a single node, consider using [RichTextLabel] instead as it supports features like an integrated scroll bar and threading. [RichTextLabel] generally performs better when displaying large amounts of text (several pages or more). https://godotengine.org/asset-library/asset/2712