diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-12 10:28:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-12 10:28:44 +0200 |
commit | cc5211214432515bf36af8b01e5eaaea242022a2 (patch) | |
tree | 1588e2925d36a3fa118b5b3915f8ab21b04e0386 /doc/classes/TreeItem.xml | |
parent | 6b9f4418bb3802992fbf41e52c032d07e02974b4 (diff) | |
parent | da4f5fb953dfeac78093235b0d0828ca944aa0a4 (diff) | |
download | redot-engine-cc5211214432515bf36af8b01e5eaaea242022a2.tar.gz |
Merge pull request #96643 from bruvzg/fs_links
[FileSystem Dock] Add symlink indicator and tooltip.
Diffstat (limited to 'doc/classes/TreeItem.xml')
-rw-r--r-- | doc/classes/TreeItem.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/classes/TreeItem.xml b/doc/classes/TreeItem.xml index bd46c54990..861a53aaad 100644 --- a/doc/classes/TreeItem.xml +++ b/doc/classes/TreeItem.xml @@ -223,6 +223,13 @@ Returns the [Color] modulating the column's icon. </description> </method> + <method name="get_icon_overlay" qualifiers="const"> + <return type="Texture2D" /> + <param index="0" name="column" type="int" /> + <description> + Returns the given column's icon overlay [Texture2D]. + </description> + </method> <method name="get_icon_region" qualifiers="const"> <return type="Rect2" /> <param index="0" name="column" type="int" /> @@ -662,6 +669,14 @@ Modulates the given column's icon with [param modulate]. </description> </method> + <method name="set_icon_overlay"> + <return type="void" /> + <param index="0" name="column" type="int" /> + <param index="1" name="texture" type="Texture2D" /> + <description> + Sets the given cell's icon overlay [Texture2D]. The cell has to be in [constant CELL_MODE_ICON] mode, and icon has to be set. Overlay is drawn on top of icon, in the bottom left corner. + </description> + </method> <method name="set_icon_region"> <return type="void" /> <param index="0" name="column" type="int" /> |