diff options
| author | Wuzzy <Wuzzy@disroot.org> | 2022-10-09 14:05:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-09 08:05:22 -0400 |
| commit | c1c68775b25314b566a2aae9a304d1b470f5794d (patch) | |
| tree | 127bdadf77939c194d1ec01696a9a0440f769a7b /games/devtest/mods/testnodes/textures.lua | |
| parent | 804a31818907e737a1ec727580d5822532ff3e6b (diff) | |
| download | minetest-c1c68775b25314b566a2aae9a304d1b470f5794d.tar.xz | |
DevTest: Explain purpose of most items in tooltips (#12833)
Diffstat (limited to 'games/devtest/mods/testnodes/textures.lua')
| -rw-r--r-- | games/devtest/mods/testnodes/textures.lua | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/games/devtest/mods/testnodes/textures.lua b/games/devtest/mods/testnodes/textures.lua index 2faacdd78..466b854b3 100644 --- a/games/devtest/mods/testnodes/textures.lua +++ b/games/devtest/mods/testnodes/textures.lua @@ -3,7 +3,8 @@ local S = minetest.get_translator("testnodes") minetest.register_node("testnodes:6sides", { - description = S("Six Textures Test Node"), + description = S("Six Textures Test Node").."\n".. + S("Has 1 texture per face"), tiles = { "testnodes_normal1.png", "testnodes_normal2.png", @@ -17,7 +18,8 @@ minetest.register_node("testnodes:6sides", { }) minetest.register_node("testnodes:anim", { - description = S("Animated Test Node"), + description = S("Animated Test Node").."\n".. + S("Tiles animate from A to D in 4s cycle"), tiles = { { name = "testnodes_anim.png", animation = { @@ -40,7 +42,8 @@ for a=1,#alphas do -- Transparency taken from texture minetest.register_node("testnodes:alpha_texture_"..alpha, { - description = S("Texture Alpha Test Node (@1)", alpha), + description = S("Texture Alpha Test Node (@1)", alpha).."\n".. + S("Semi-transparent"), drawtype = "glasslike", paramtype = "light", tiles = { @@ -53,7 +56,8 @@ for a=1,#alphas do -- Transparency set via texture modifier minetest.register_node("testnodes:alpha_"..alpha, { - description = S("Alpha Test Node (@1)", alpha), + description = S("Alpha Test Node (@1)", alpha).."\n".. + S("Semi-transparent"), drawtype = "glasslike", paramtype = "light", tiles = { |
