How to change font size?
IGA22
In documentation incorrect data. self.set_size() moves a font but does not change the size.
self.set_size()
Font size can be received through: self.get_theme_default_font_size() How to change font size?
self.get_theme_default_font_size()
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.
Earlier it worked
How it works so:
The decision was shown by the user of ababen.
extends Label func _ready(): add_theme_font_size_override("font_size", 40) pass