diff options
Diffstat (limited to 'doc/classes/Font.xml')
-rw-r--r-- | doc/classes/Font.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Font.xml b/doc/classes/Font.xml index e979a0b875..0b487f8525 100644 --- a/doc/classes/Font.xml +++ b/doc/classes/Font.xml @@ -279,7 +279,7 @@ To print available variation axes of a variable font: [codeblock] var fv = FontVariation.new() - fv.set_base_font = load("res://RobotoFlex.ttf") + fv.base_font = load("res://RobotoFlex.ttf") var variation_list = fv.get_supported_variation_list() for tag in variation_list: var name = TextServerManager.get_primary_interface().tag_to_name(tag) |