123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/DynamicFontData.xml.
- .. _class_DynamicFontData:
- DynamicFontData
- ===============
- **Inherits:** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
- Used with :ref:`DynamicFont<class_DynamicFont>` to describe the location of a font file.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- Used with :ref:`DynamicFont<class_DynamicFont>` to describe the location of a vector font file for dynamic rendering at runtime.
- .. rst-class:: classref-introduction-group
- Tutorials
- ---------
- - `3D Voxel Demo <https://godotengine.org/asset-library/asset/676>`__
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +----------------------------------------------+------------------------------------------------------------------------------------+----------+
- | :ref:`bool<class_bool>` | :ref:`antialiased<class_DynamicFontData_property_antialiased>` | ``true`` |
- +----------------------------------------------+------------------------------------------------------------------------------------+----------+
- | :ref:`String<class_String>` | :ref:`font_path<class_DynamicFontData_property_font_path>` | ``""`` |
- +----------------------------------------------+------------------------------------------------------------------------------------+----------+
- | :ref:`Hinting<enum_DynamicFontData_Hinting>` | :ref:`hinting<class_DynamicFontData_property_hinting>` | ``2`` |
- +----------------------------------------------+------------------------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`override_oversampling<class_DynamicFontData_property_override_oversampling>` | ``0.0`` |
- +----------------------------------------------+------------------------------------------------------------------------------------+----------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Enumerations
- ------------
- .. _enum_DynamicFontData_Hinting:
- .. rst-class:: classref-enumeration
- enum **Hinting**:
- .. _class_DynamicFontData_constant_HINTING_NONE:
- .. rst-class:: classref-enumeration-constant
- :ref:`Hinting<enum_DynamicFontData_Hinting>` **HINTING_NONE** = ``0``
- Disables font hinting (smoother but less crisp).
- .. _class_DynamicFontData_constant_HINTING_LIGHT:
- .. rst-class:: classref-enumeration-constant
- :ref:`Hinting<enum_DynamicFontData_Hinting>` **HINTING_LIGHT** = ``1``
- Use the light font hinting mode.
- .. _class_DynamicFontData_constant_HINTING_NORMAL:
- .. rst-class:: classref-enumeration-constant
- :ref:`Hinting<enum_DynamicFontData_Hinting>` **HINTING_NORMAL** = ``2``
- Use the default font hinting mode (crisper but less smooth).
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_DynamicFontData_property_antialiased:
- .. rst-class:: classref-property
- :ref:`bool<class_bool>` **antialiased** = ``true``
- .. rst-class:: classref-property-setget
- - void **set_antialiased** **(** :ref:`bool<class_bool>` value **)**
- - :ref:`bool<class_bool>` **is_antialiased** **(** **)**
- If ``true``, the font is rendered with anti-aliasing. This property applies both to the main font and its outline (if it has one).
- .. rst-class:: classref-item-separator
- ----
- .. _class_DynamicFontData_property_font_path:
- .. rst-class:: classref-property
- :ref:`String<class_String>` **font_path** = ``""``
- .. rst-class:: classref-property-setget
- - void **set_font_path** **(** :ref:`String<class_String>` value **)**
- - :ref:`String<class_String>` **get_font_path** **(** **)**
- The path to the vector font file.
- .. rst-class:: classref-item-separator
- ----
- .. _class_DynamicFontData_property_hinting:
- .. rst-class:: classref-property
- :ref:`Hinting<enum_DynamicFontData_Hinting>` **hinting** = ``2``
- .. rst-class:: classref-property-setget
- - void **set_hinting** **(** :ref:`Hinting<enum_DynamicFontData_Hinting>` value **)**
- - :ref:`Hinting<enum_DynamicFontData_Hinting>` **get_hinting** **(** **)**
- The font hinting mode used by FreeType. See :ref:`Hinting<enum_DynamicFontData_Hinting>` for options.
- .. rst-class:: classref-item-separator
- ----
- .. _class_DynamicFontData_property_override_oversampling:
- .. rst-class:: classref-property
- :ref:`float<class_float>` **override_oversampling** = ``0.0``
- .. rst-class:: classref-property-setget
- - void **set_override_oversampling** **(** :ref:`float<class_float>` value **)**
- - :ref:`float<class_float>` **get_override_oversampling** **(** **)**
- If set to a value greater than ``0.0``, it will override default font oversampling, ignoring :ref:`SceneTree.use_font_oversampling<class_SceneTree_property_use_font_oversampling>` value and viewport stretch mode.
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
|