]> Untitled Git - wolf-seeking-sheep.git/blob - addons/dialogic/Editor/Common/hint_tooltip_icon.gd
Updated export config options
[wolf-seeking-sheep.git] / addons / dialogic / Editor / Common / hint_tooltip_icon.gd
1 @tool
2 extends TextureRect
3
4 @export_multiline var hint_text := ""
5
6 func _ready() -> void:
7         if owner and owner.get_parent() is SubViewport:
8                 texture = null
9                 return
10         texture = get_theme_icon("NodeInfo", "EditorIcons")
11         modulate = get_theme_color("contrast_color_1", "Editor")
12         tooltip_text = hint_text