From 4fb07d46081a8feeeee6902fcfc4faa363acd499 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Tue, 16 Jul 2024 18:01:53 +0100 Subject: Font: Fix typo in get_supported_variation_list example FontVariation.set_base_font is a function, not a property. The property is FontVariation.base_font. --- doc/classes/Font.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/classes/Font.xml') 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) -- cgit v1.2.3