mirror of
https://gitlab.com/luk3yx/minetest-flow.git
synced 2025-07-22 08:28:58 +02:00
12 lines
166 B
Markdown
12 lines
166 B
Markdown
# Tooltips
|
|
|
|
You can add tooltips to elements using the `tooltip` field:
|
|
|
|
```lua
|
|
gui.Image{
|
|
w = 2, h = 2,
|
|
texture_name = "air.png",
|
|
tooltip = "Air",
|
|
}
|
|
```
|