IGA22 IGA22 In documentation incorrect data. self.set_size() moves a font but does not change the size. Font size can be received through: self.get_theme_default_font_size() How to change font size?
Megalomaniak This is probably the property of the DynamicFont you are looking for: https://docs.godotengine.org/en/stable/classes/class_dynamicfont.html#class-dynamicfont-property-size Currently you are setting the size of the label as a whole there.
IGA22 The decision was shown by the user of ababen. extends Label func _ready(): add_theme_font_size_override("font_size", 40) pass