mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
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.
This commit is contained in:
parent
b6dee96f68
commit
4fb07d4608
@ -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)
|
||||
|
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user