[TextServer] Add notes about high level text/font classes and getting active server instance.

This commit is contained in:
bruvzg 2024-05-15 12:45:24 +03:00
parent 51cb2df1f6
commit cfb9639fc3
No known key found for this signature in database
GPG Key ID: 7960FCF39844EC38

View File

@ -5,6 +5,16 @@
</brief_description>
<description>
[TextServer] is the API backend for managing fonts and rendering text.
[b]Note:[/b] This is a low-level API, consider using [TextLine], [TextParagraph], and [Font] classes instead.
This is an abstract class, so to get the currently active [TextServer] instance, use the following code:
[codeblocks]
[gdscript]
var ts = TextServerManager.get_primary_interface()
[/gdscript]
[csharp]
var ts = TextServerManager.GetPrimaryInterface();
[/csharp]
[/codeblocks]
</description>
<tutorials>
</tutorials>