diff options
author | Will Thompson <wjt@endlessos.org> | 2024-07-16 18:01:53 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-31 23:16:30 +0200 |
commit | 4fb07d46081a8feeeee6902fcfc4faa363acd499 (patch) | |
tree | b8e318a0d01b514189ba2a1bcbbd4d58e7380fae /doc | |
parent | b6dee96f68d5bd033e080f64f2c18a0dc62f469a (diff) | |
download | redot-engine-4fb07d46081a8feeeee6902fcfc4faa363acd499.tar.gz |
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.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Font.xml | 2 | ||||
-rw-r--r-- | doc/classes/FontVariation.xml | 4 |
2 files changed, 3 insertions, 3 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) diff --git a/doc/classes/FontVariation.xml b/doc/classes/FontVariation.xml index 8a09c49f48..1de6d695a9 100644 --- a/doc/classes/FontVariation.xml +++ b/doc/classes/FontVariation.xml @@ -9,8 +9,8 @@ [codeblocks] [gdscript] var fv = FontVariation.new() - fv.set_base_font(load("res://BarlowCondensed-Regular.ttf")) - fv.set_variation_embolden(1.2) + fv.base_font = load("res://BarlowCondensed-Regular.ttf") + fv.variation_embolden = 1.2 $Label.add_theme_font_override("font", fv) $Label.add_theme_font_size_override("font_size", 64) [/gdscript] |