diff --git a/classes/class_camera2d.rst b/classes/class_camera2d.rst index ef8d99ed9..d57554e32 100644 --- a/classes/class_camera2d.rst +++ b/classes/class_camera2d.rst @@ -705,6 +705,8 @@ Method Descriptions Aligns the camera to the tracked node. +\ **Note:** Calling :ref:`force_update_scroll()` after this method is not required. + .. rst-class:: classref-item-separator ---- diff --git a/classes/class_canvasitem.rst b/classes/class_canvasitem.rst index 95584c30e..a9f8f14a0 100644 --- a/classes/class_canvasitem.rst +++ b/classes/class_canvasitem.rst @@ -908,6 +908,8 @@ Draws a colored polygon of any number of points, convex or concave. The points i \ **Note:** If you frequently redraw the same polygon with a large number of vertices, consider pre-calculating the triangulation with :ref:`Geometry2D.triangulate_polygon()` and using :ref:`draw_mesh()`, :ref:`draw_multimesh()`, or :ref:`RenderingServer.canvas_item_add_triangle_array()`. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -997,6 +999,8 @@ Texture is drawn using the following blend operation, blend mode of the :ref:`Ca dst.b = texture.b * modulate.b * modulate.a + dst.b * (1.0 - texture.b * modulate.a); dst.a = modulate.a + dst.a * (1.0 - modulate.a); +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1023,6 +1027,8 @@ If ``width`` is negative, then a two-point primitive will be drawn instead of a Draws a :ref:`Mesh` in 2D, using the provided texture. See :ref:`MeshInstance2D` for related documentation. The ``transform`` is defined in local space. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1039,6 +1045,8 @@ If ``outline`` is positive, each alpha channel value of pixel in region is set t Value of the ``pixel_range`` should the same that was used during distance field texture generation. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1107,6 +1115,8 @@ Breaks ``text`` to the lines and draws text outline using the specified ``font`` Draws a :ref:`MultiMesh` in 2D with the provided texture. See :ref:`MultiMeshInstance2D` for related documentation. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1121,6 +1131,8 @@ Draws a solid polygon of any number of points, convex or concave. Unlike :ref:`d \ **Note:** If you frequently redraw the same polygon with a large number of vertices, consider pre-calculating the triangulation with :ref:`Geometry2D.triangulate_polygon()` and using :ref:`draw_mesh()`, :ref:`draw_multimesh()`, or :ref:`RenderingServer.canvas_item_add_triangle_array()`. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1161,6 +1173,8 @@ If ``width`` is negative, it will be ignored and the polyline will be drawn usin Draws a custom primitive. 1 point for a point, 2 points for a line, 3 points for a triangle, and 4 points for a quad. If 0 points or more than 4 points are specified, nothing will be drawn and an error message will be printed. The ``points`` array is defined in local space. See also :ref:`draw_line()`, :ref:`draw_polyline()`, :ref:`draw_polygon()`, and :ref:`draw_rect()`. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1260,6 +1274,8 @@ Draws ``text`` outline using the specified ``font`` at the ``pos`` in local spac Draws a styled rectangle. The ``rect`` is defined in local space. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1272,6 +1288,8 @@ Draws a styled rectangle. The ``rect`` is defined in local space. Draws a texture at a given position. The ``position`` is defined in local space. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1284,6 +1302,8 @@ Draws a texture at a given position. The ``position`` is defined in local space. Draws a textured rectangle at a given position, optionally modulated by a color. The ``rect`` is defined in local space. If ``transpose`` is ``true``, the texture will have its X and Y coordinates swapped. See also :ref:`draw_rect()` and :ref:`draw_texture_rect_region()`. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- @@ -1296,6 +1316,8 @@ Draws a textured rectangle at a given position, optionally modulated by a color. Draws a textured rectangle from a texture's region (specified by ``src_rect``) at a given position in local space, optionally modulated by a color. If ``transpose`` is ``true``, the texture will have its X and Y coordinates swapped. See also :ref:`draw_texture_rect()`. +\ **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place. + .. rst-class:: classref-item-separator ---- diff --git a/classes/class_editordock.rst b/classes/class_editordock.rst index 480a7b449..43a7f676e 100644 --- a/classes/class_editordock.rst +++ b/classes/class_editordock.rst @@ -40,7 +40,7 @@ You can add a dock by using :ref:`EditorPlugin.add_dock()` | :ref:`closable` | ``false`` | +-------------------------------------------------------------+-----------------------------------------------------------------------+-----------------------+ - | :ref:`DockSlot` | :ref:`default_slot` | ``-1`` | + | :ref:`DockSlot` | :ref:`default_slot` | ``-1`` | +-------------------------------------------------------------+-----------------------------------------------------------------------+-----------------------+ | :ref:`Texture2D` | :ref:`dock_icon` | | +-------------------------------------------------------------+-----------------------------------------------------------------------+-----------------------+ @@ -178,6 +178,104 @@ Allows making the dock floating (opened as a separate window). Allows placing the dock in all available slots. +.. rst-class:: classref-item-separator + +---- + +.. _enum_EditorDock_DockSlot: + +.. rst-class:: classref-enumeration + +enum **DockSlot**: :ref:`🔗` + +.. _class_EditorDock_constant_DOCK_SLOT_NONE: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_NONE** = ``-1`` + +The dock is closed. + +.. _class_EditorDock_constant_DOCK_SLOT_LEFT_UL: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_LEFT_UL** = ``0`` + +Dock slot, left side, upper-left (empty in default layout). + +.. _class_EditorDock_constant_DOCK_SLOT_LEFT_BL: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_LEFT_BL** = ``1`` + +Dock slot, left side, bottom-left (empty in default layout). + +.. _class_EditorDock_constant_DOCK_SLOT_LEFT_UR: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_LEFT_UR** = ``2`` + +Dock slot, left side, upper-right (in default layout includes Scene and Import docks). + +.. _class_EditorDock_constant_DOCK_SLOT_LEFT_BR: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_LEFT_BR** = ``3`` + +Dock slot, left side, bottom-right (in default layout includes FileSystem and History docks). + +.. _class_EditorDock_constant_DOCK_SLOT_RIGHT_UL: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_RIGHT_UL** = ``4`` + +Dock slot, right side, upper-left (in default layout includes Inspector, Signal, and Group docks). + +.. _class_EditorDock_constant_DOCK_SLOT_RIGHT_BL: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_RIGHT_BL** = ``5`` + +Dock slot, right side, bottom-left (empty in default layout). + +.. _class_EditorDock_constant_DOCK_SLOT_RIGHT_UR: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_RIGHT_UR** = ``6`` + +Dock slot, right side, upper-right (empty in default layout). + +.. _class_EditorDock_constant_DOCK_SLOT_RIGHT_BR: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_RIGHT_BR** = ``7`` + +Dock slot, right side, bottom-right (empty in default layout). + +.. _class_EditorDock_constant_DOCK_SLOT_BOTTOM: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_BOTTOM** = ``8`` + +Bottom panel. + +.. _class_EditorDock_constant_DOCK_SLOT_MAX: + +.. rst-class:: classref-enumeration-constant + +:ref:`DockSlot` **DOCK_SLOT_MAX** = ``9`` + +Represents the size of the :ref:`DockSlot` enum. + .. rst-class:: classref-section-separator ---- @@ -225,12 +323,12 @@ If ``true``, the dock can be closed with the Close button in the context popup. .. rst-class:: classref-property -:ref:`DockSlot` **default_slot** = ``-1`` :ref:`🔗` +:ref:`DockSlot` **default_slot** = ``-1`` :ref:`🔗` .. rst-class:: classref-property-setget -- |void| **set_default_slot**\ (\ value\: :ref:`DockSlot`\ ) -- :ref:`DockSlot` **get_default_slot**\ (\ ) +- |void| **set_default_slot**\ (\ value\: :ref:`DockSlot`\ ) +- :ref:`DockSlot` **get_default_slot**\ (\ ) The default dock slot used when adding the dock with :ref:`EditorPlugin.add_dock()`. diff --git a/classes/class_editorsettings.rst b/classes/class_editorsettings.rst index 60ca86362..da49837fe 100644 --- a/classes/class_editorsettings.rst +++ b/classes/class_editorsettings.rst @@ -107,6 +107,8 @@ Properties +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`docks/scene_tree/start_create_dialog_fully_expanded` | +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + | :ref:`float` | :ref:`editors/2d/auto_resample_delay` | + +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Color` | :ref:`editors/2d/bone_color1` | +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Color` | :ref:`editors/2d/bone_color2` | @@ -1331,6 +1333,18 @@ If ``true``, the Create dialog (Create New Node/Create New Resource) will start ---- +.. _class_EditorSettings_property_editors/2d/auto_resample_delay: + +.. rst-class:: classref-property + +:ref:`float` **editors/2d/auto_resample_delay** :ref:`🔗` + +Delay time for automatic resampling in the 2D editor (in seconds). + +.. rst-class:: classref-item-separator + +---- + .. _class_EditorSettings_property_editors/2d/bone_color1: .. rst-class:: classref-property diff --git a/classes/class_itemlist.rst b/classes/class_itemlist.rst index 914bd13b9..ba616af04 100644 --- a/classes/class_itemlist.rst +++ b/classes/class_itemlist.rst @@ -206,6 +206,8 @@ Theme Properties +-----------------------------------+--------------------------------------------------------------------------------------------+--------------------------------+ | :ref:`Color` | :ref:`guide_color` | ``Color(0.7, 0.7, 0.7, 0.25)`` | +-----------------------------------+--------------------------------------------------------------------------------------------+--------------------------------+ + | :ref:`Color` | :ref:`scroll_hint_color` | ``Color(0, 0, 0, 1)`` | + +-----------------------------------+--------------------------------------------------------------------------------------------+--------------------------------+ | :ref:`int` | :ref:`h_separation` | ``4`` | +-----------------------------------+--------------------------------------------------------------------------------------------+--------------------------------+ | :ref:`int` | :ref:`icon_margin` | ``4`` | @@ -1426,6 +1428,18 @@ Text :ref:`Color` used when the item is selected, but not hovered. ---- +.. _class_ItemList_theme_color_scroll_hint_color: + +.. rst-class:: classref-themeproperty + +:ref:`Color` **scroll_hint_color** = ``Color(0, 0, 0, 1)`` :ref:`🔗` + +:ref:`Color` used to modulate the :ref:`scroll_hint` texture. + +.. rst-class:: classref-item-separator + +---- + .. _class_ItemList_theme_constant_h_separation: .. rst-class:: classref-themeproperty diff --git a/classes/class_popupmenu.rst b/classes/class_popupmenu.rst index 1a92af079..f300786d7 100644 --- a/classes/class_popupmenu.rst +++ b/classes/class_popupmenu.rst @@ -52,6 +52,10 @@ Properties +-------------------------------------------------+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`prefer_native_menu` | ``false`` | +-------------------------------------------------+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+ + | :ref:`bool` | :ref:`shrink_height` | ``true`` | + +-------------------------------------------------+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+ + | :ref:`bool` | :ref:`shrink_width` | ``true`` | + +-------------------------------------------------+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+ | :ref:`float` | :ref:`submenu_popup_delay` | ``0.2`` | +-------------------------------------------------+----------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------+ | :ref:`SystemMenus` | :ref:`system_menu_id` | ``0`` | @@ -465,6 +469,40 @@ If ``true``, :ref:`MenuBar` will use native menu when supported. ---- +.. _class_PopupMenu_property_shrink_height: + +.. rst-class:: classref-property + +:ref:`bool` **shrink_height** = ``true`` :ref:`🔗` + +.. rst-class:: classref-property-setget + +- |void| **set_shrink_height**\ (\ value\: :ref:`bool`\ ) +- :ref:`bool` **get_shrink_height**\ (\ ) + +If ``true``, shrinks **PopupMenu** to minimum height when it's shown. + +.. rst-class:: classref-item-separator + +---- + +.. _class_PopupMenu_property_shrink_width: + +.. rst-class:: classref-property + +:ref:`bool` **shrink_width** = ``true`` :ref:`🔗` + +.. rst-class:: classref-property-setget + +- |void| **set_shrink_width**\ (\ value\: :ref:`bool`\ ) +- :ref:`bool` **get_shrink_width**\ (\ ) + +If ``true``, shrinks **PopupMenu** to minimum width when it's shown. + +.. rst-class:: classref-item-separator + +---- + .. _class_PopupMenu_property_submenu_popup_delay: .. rst-class:: classref-property diff --git a/classes/class_scrollcontainer.rst b/classes/class_scrollcontainer.rst index dcb8bc9d8..e3b1ecd66 100644 --- a/classes/class_scrollcontainer.rst +++ b/classes/class_scrollcontainer.rst @@ -88,19 +88,23 @@ Theme Properties .. table:: :widths: auto - +-----------------------------------+--------------------------------------------------------------------------------------------+-------+ - | :ref:`int` | :ref:`scrollbar_h_separation` | ``0`` | - +-----------------------------------+--------------------------------------------------------------------------------------------+-------+ - | :ref:`int` | :ref:`scrollbar_v_separation` | ``0`` | - +-----------------------------------+--------------------------------------------------------------------------------------------+-------+ - | :ref:`Texture2D` | :ref:`scroll_hint_horizontal` | | - +-----------------------------------+--------------------------------------------------------------------------------------------+-------+ - | :ref:`Texture2D` | :ref:`scroll_hint_vertical` | | - +-----------------------------------+--------------------------------------------------------------------------------------------+-------+ - | :ref:`StyleBox` | :ref:`focus` | | - +-----------------------------------+--------------------------------------------------------------------------------------------+-------+ - | :ref:`StyleBox` | :ref:`panel` | | - +-----------------------------------+--------------------------------------------------------------------------------------------+-------+ + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`Color` | :ref:`scroll_hint_horizontal_color` | ``Color(0, 0, 0, 1)`` | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`Color` | :ref:`scroll_hint_vertical_color` | ``Color(0, 0, 0, 1)`` | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`int` | :ref:`scrollbar_h_separation` | ``0`` | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`int` | :ref:`scrollbar_v_separation` | ``0`` | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`Texture2D` | :ref:`scroll_hint_horizontal` | | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`Texture2D` | :ref:`scroll_hint_vertical` | | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`StyleBox` | :ref:`focus` | | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ + | :ref:`StyleBox` | :ref:`panel` | | + +-----------------------------------+-----------------------------------------------------------------------------------------------------+-----------------------+ .. rst-class:: classref-section-separator @@ -502,6 +506,30 @@ Returns the vertical scrollbar :ref:`VScrollBar` of this **Scr Theme Property Descriptions --------------------------- +.. _class_ScrollContainer_theme_color_scroll_hint_horizontal_color: + +.. rst-class:: classref-themeproperty + +:ref:`Color` **scroll_hint_horizontal_color** = ``Color(0, 0, 0, 1)`` :ref:`🔗` + +:ref:`Color` used to modulate the :ref:`scroll_hint_horizontal` texture. + +.. rst-class:: classref-item-separator + +---- + +.. _class_ScrollContainer_theme_color_scroll_hint_vertical_color: + +.. rst-class:: classref-themeproperty + +:ref:`Color` **scroll_hint_vertical_color** = ``Color(0, 0, 0, 1)`` :ref:`🔗` + +:ref:`Color` used to modulate the :ref:`scroll_hint_vertical` texture. + +.. rst-class:: classref-item-separator + +---- + .. _class_ScrollContainer_theme_constant_scrollbar_h_separation: .. rst-class:: classref-themeproperty diff --git a/classes/class_shadermaterial.rst b/classes/class_shadermaterial.rst index 11e639945..449a96202 100644 --- a/classes/class_shadermaterial.rst +++ b/classes/class_shadermaterial.rst @@ -111,7 +111,7 @@ Changes the value set for this material of a uniform in the shader. \ **Note:** ``param`` is case-sensitive and must match the name of the uniform in the code exactly (not the capitalized name in the inspector). -\ **Note:** Changes to the shader uniform will be effective on all instances using this **ShaderMaterial**. To prevent this, use per-instance uniforms with :ref:`GeometryInstance3D.set_instance_shader_parameter()` or duplicate the **ShaderMaterial** resource using :ref:`Resource.duplicate()`. Per-instance uniforms allow for better shader reuse and are therefore faster, so they should be preferred over duplicating the **ShaderMaterial** when possible. +\ **Note:** Changes to the shader uniform will be effective on all instances using this **ShaderMaterial**. To prevent this, use per-instance uniforms with :ref:`CanvasItem.set_instance_shader_parameter()`, :ref:`GeometryInstance3D.set_instance_shader_parameter()` or duplicate the **ShaderMaterial** resource using :ref:`Resource.duplicate()`. Per-instance uniforms allow for better shader reuse and are therefore faster, so they should be preferred over duplicating the **ShaderMaterial** when possible. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)` diff --git a/classes/class_skeletonmodifier3d.rst b/classes/class_skeletonmodifier3d.rst index c20f8e8a1..82330da07 100644 --- a/classes/class_skeletonmodifier3d.rst +++ b/classes/class_skeletonmodifier3d.rst @@ -418,6 +418,8 @@ Override this virtual method to implement a custom skeleton modifier. You should \ ``delta`` is passed from parent :ref:`Skeleton3D`. See also :ref:`Skeleton3D.advance()`. +\ **Note:** This method may be called outside :ref:`Node._process()` and :ref:`Node._physics_process()` with ``delta`` is ``0.0``, since the modification should be processed immediately after initialization of the :ref:`Skeleton3D`. + .. rst-class:: classref-item-separator ---- diff --git a/classes/class_tree.rst b/classes/class_tree.rst index 228b9171a..bea8960db 100644 --- a/classes/class_tree.rst +++ b/classes/class_tree.rst @@ -225,6 +225,8 @@ Theme Properties +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`relationship_line_color` | ``Color(0.27, 0.27, 0.27, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ + | :ref:`Color` | :ref:`scroll_hint_color` | ``Color(0, 0, 0, 1)`` | + +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`title_button_color` | ``Color(0.875, 0.875, 0.875, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`button_margin` | ``4`` | @@ -1628,6 +1630,18 @@ The default :ref:`Color` of the relationship lines. ---- +.. _class_Tree_theme_color_scroll_hint_color: + +.. rst-class:: classref-themeproperty + +:ref:`Color` **scroll_hint_color** = ``Color(0, 0, 0, 1)`` :ref:`🔗` + +:ref:`Color` used to modulate the :ref:`scroll_hint` texture. + +.. rst-class:: classref-item-separator + +---- + .. _class_Tree_theme_color_title_button_color: .. rst-class:: classref-themeproperty