diff options
| author | Wuzzy <Wuzzy@disroot.org> | 2022-10-09 16:19:42 +0200 |
|---|---|---|
| committer | sfan5 <sfan5@live.de> | 2022-10-23 21:58:56 +0200 |
| commit | c73d79841c21733915a0fcaf9d78ba5ca31d0898 (patch) | |
| tree | f0c3d6c9ed8492824de16d9355cd5d07ab7b44ea | |
| parent | 11d1a9cc374cb4ac2104de734978d0a5061ec069 (diff) | |
| download | minetest-c73d79841c21733915a0fcaf9d78ba5ca31d0898.tar.xz | |
DevTest: More node textures to tell them apart
29 files changed, 42 insertions, 42 deletions
diff --git a/games/devtest/mods/testnodes/drawtypes.lua b/games/devtest/mods/testnodes/drawtypes.lua index 0ad65f761..f354b4394 100644 --- a/games/devtest/mods/testnodes/drawtypes.lua +++ b/games/devtest/mods/testnodes/drawtypes.lua @@ -296,7 +296,7 @@ minetest.register_node("testnodes:mesh_degrotate", { paramtype = "light", paramtype2 = "degrotate", mesh = "testnodes_ocorner.obj", - tiles = { "testnodes_mesh_stripes2.png" }, + tiles = { "testnodes_mesh_stripes7.png" }, on_rightclick = rotate_on_rightclick, place_param2 = 10, -- 15° @@ -312,7 +312,7 @@ minetest.register_node("testnodes:mesh_colordegrotate", { paramtype2 = "colordegrotate", palette = "testnodes_palette_facedir.png", mesh = "testnodes_ocorner.obj", - tiles = { "testnodes_mesh_stripes3.png" }, + tiles = { "testnodes_mesh_stripes8.png" }, on_rightclick = rotate_on_rightclick, -- color index 1, 1 step (=15°) rotated diff --git a/games/devtest/mods/testnodes/meshes.lua b/games/devtest/mods/testnodes/meshes.lua index 924baea35..e55c3eafd 100644 --- a/games/devtest/mods/testnodes/meshes.lua +++ b/games/devtest/mods/testnodes/meshes.lua @@ -67,7 +67,7 @@ minetest.register_node("testnodes:mesh_4dir", { S("param2 = 4dir rotation (0..3)"), drawtype = "mesh", mesh = "testnodes_ocorner.obj", - tiles = {"testnodes_mesh_stripes.png"}, + tiles = {"testnodes_mesh_stripes5.png"}, paramtype = "light", paramtype2 = "4dir", collision_box = ocorner_cbox, @@ -80,7 +80,7 @@ minetest.register_node("testnodes:mesh_color4dir", { S("param2 = color + 4dir rotation (0..255)"), drawtype = "mesh", mesh = "testnodes_ocorner.obj", - tiles = {"testnodes_mesh_stripes3.png"}, + tiles = {"testnodes_mesh_stripes6.png"}, paramtype = "light", paramtype2 = "color4dir", palette = "testnodes_palette_4dir.png", @@ -95,7 +95,7 @@ minetest.register_node("testnodes:mesh_wallmounted", { S("param2 = wallmounted rotation (0..5)"), drawtype = "mesh", mesh = "testnodes_pyramid.obj", - tiles = {"testnodes_mesh_stripes2.png"}, + tiles = {"testnodes_mesh_stripes9.png"}, paramtype = "light", paramtype2 = "wallmounted", collision_box = tall_pyr_cbox, @@ -108,7 +108,7 @@ minetest.register_node("testnodes:mesh_colorwallmounted", { S("param2 = color + wallmounted rotation (0..5, 8..13, ...)"), drawtype = "mesh", mesh = "testnodes_pyramid.obj", - tiles = {"testnodes_mesh_stripes3.png"}, + tiles = {"testnodes_mesh_stripes10.png"}, paramtype = "light", paramtype2 = "colorwallmounted", palette = "testnodes_palette_wallmounted.png", diff --git a/games/devtest/mods/testnodes/nodeboxes.lua b/games/devtest/mods/testnodes/nodeboxes.lua index 720176efd..a1c1619af 100644 --- a/games/devtest/mods/testnodes/nodeboxes.lua +++ b/games/devtest/mods/testnodes/nodeboxes.lua @@ -120,12 +120,12 @@ minetest.register_node("testnodes:nodebox_connected_4dir", { S("Connects to neighbors").."\n".. S("param2 = 4dir rotation of textures (not of the nodebox!)"), tiles = { - "testnodes_1.png^[colorize:#FFFF00:127", - "testnodes_2.png^[colorize:#FFFF00:127", - "testnodes_3.png^[colorize:#FFFF00:127", - "testnodes_4.png^[colorize:#FFFF00:127", - "testnodes_5.png^[colorize:#FFFF00:127", - "testnodes_6.png^[colorize:#FFFF00:127", + "testnodes_1f.png", + "testnodes_2f.png", + "testnodes_3f.png", + "testnodes_4f.png", + "testnodes_5f.png", + "testnodes_6f.png", }, groups = {connected_nodebox=1, dig_immediate=3}, drawtype = "nodebox", diff --git a/games/devtest/mods/testnodes/param2.lua b/games/devtest/mods/testnodes/param2.lua index f216247cc..ffa390967 100644 --- a/games/devtest/mods/testnodes/param2.lua +++ b/games/devtest/mods/testnodes/param2.lua @@ -23,12 +23,12 @@ minetest.register_node("testnodes:4dir", { S("param2 = 4dir rotation (0..3)"), paramtype2 = "4dir", tiles = { - "testnodes_1.png^[colorize:#FFFF00:127", - "testnodes_2.png^[colorize:#FFFF00:127", - "testnodes_3.png^[colorize:#FFFF00:127", - "testnodes_4.png^[colorize:#FFFF00:127", - "testnodes_5.png^[colorize:#FFFF00:127", - "testnodes_6.png^[colorize:#FFFF00:127", + "testnodes_1f.png", + "testnodes_2f.png", + "testnodes_3f.png", + "testnodes_4f.png", + "testnodes_5f.png", + "testnodes_6f.png", }, groups = { dig_immediate = 3 }, @@ -60,12 +60,12 @@ minetest.register_node("testnodes:4dir_nodebox", { description = S("4dir Nodebox Test Node").."\n".. S("param2 = 4dir rotation (0..3)"), tiles = { - "testnodes_1.png^[colorize:#ffff00:127", - "testnodes_2.png^[colorize:#ffff00:127", - "testnodes_3.png^[colorize:#ffff00:127", - "testnodes_4.png^[colorize:#ffff00:127", - "testnodes_5.png^[colorize:#ffff00:127", - "testnodes_6.png^[colorize:#ffff00:127", + "testnodes_1f.png", + "testnodes_2f.png", + "testnodes_3f.png", + "testnodes_4f.png", + "testnodes_5f.png", + "testnodes_6f.png", }, drawtype = "nodebox", paramtype = "light", @@ -176,12 +176,12 @@ minetest.register_node("testnodes:color4dir", { paramtype2 = "color4dir", palette = "testnodes_palette_4dir.png", tiles = { - "testnodes_1g.png", - "testnodes_2g.png", - "testnodes_3g.png", - "testnodes_4g.png", - "testnodes_5g.png", - "testnodes_6g.png", + "testnodes_1fg.png", + "testnodes_2fg.png", + "testnodes_3fg.png", + "testnodes_4fg.png", + "testnodes_5fg.png", + "testnodes_6fg.png", }, groups = { dig_immediate = 3 }, @@ -191,12 +191,12 @@ minetest.register_node("testnodes:color4dir_nodebox", { description = S("Color 4dir Nodebox Test Node").."\n".. S("param2 = color + 4dir rotation (0..255)"), tiles = { - "testnodes_1g.png", - "testnodes_2g.png", - "testnodes_3g.png", - "testnodes_4g.png", - "testnodes_5g.png", - "testnodes_6g.png", + "testnodes_1fg.png", + "testnodes_2fg.png", + "testnodes_3fg.png", + "testnodes_4fg.png", + "testnodes_5fg.png", + "testnodes_6fg.png", }, drawtype = "nodebox", paramtype = "light", diff --git a/games/devtest/mods/testnodes/properties.lua b/games/devtest/mods/testnodes/properties.lua index b4d517962..4dabe21fc 100644 --- a/games/devtest/mods/testnodes/properties.lua +++ b/games/devtest/mods/testnodes/properties.lua @@ -19,12 +19,12 @@ minetest.register_node("testnodes:falling_facedir", { S("Falls down if no node below").."\n".. S("param2 = facedir rotation"), tiles = { - "testnodes_1.png^[brighten", - "testnodes_2.png^[brighten", - "testnodes_3.png^[brighten", - "testnodes_4.png^[brighten", - "testnodes_5.png^[brighten", - "testnodes_6.png^[brighten", + "testnodes_node_falling_1.png", + "testnodes_node_falling_2.png", + "testnodes_node_falling_3.png", + "testnodes_node_falling_4.png", + "testnodes_node_falling_5.png", + "testnodes_node_falling_6.png", }, paramtype2 = "facedir", groups = { falling_node = 1, dig_immediate = 3 }, diff --git a/games/devtest/mods/testnodes/textures/testnodes_1f.png b/games/devtest/mods/testnodes/textures/testnodes_1f.png Binary files differnew file mode 100644 index 000000000..f9a1b69e4 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_1f.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_1fg.png b/games/devtest/mods/testnodes/textures/testnodes_1fg.png Binary files differnew file mode 100644 index 000000000..5d0beb032 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_1fg.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_2f.png b/games/devtest/mods/testnodes/textures/testnodes_2f.png Binary files differnew file mode 100644 index 000000000..a26f840e3 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_2f.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_2fg.png b/games/devtest/mods/testnodes/textures/testnodes_2fg.png Binary files differnew file mode 100644 index 000000000..33863308d --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_2fg.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_3f.png b/games/devtest/mods/testnodes/textures/testnodes_3f.png Binary files differnew file mode 100644 index 000000000..d007ee445 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_3f.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_3fg.png b/games/devtest/mods/testnodes/textures/testnodes_3fg.png Binary files differnew file mode 100644 index 000000000..01e4276b1 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_3fg.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_4f.png b/games/devtest/mods/testnodes/textures/testnodes_4f.png Binary files differnew file mode 100644 index 000000000..7e444fd11 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_4f.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_4fg.png b/games/devtest/mods/testnodes/textures/testnodes_4fg.png Binary files differnew file mode 100644 index 000000000..6068139db --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_4fg.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_5f.png b/games/devtest/mods/testnodes/textures/testnodes_5f.png Binary files differnew file mode 100644 index 000000000..a4162db57 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_5f.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_5fg.png b/games/devtest/mods/testnodes/textures/testnodes_5fg.png Binary files differnew file mode 100644 index 000000000..f21acbb18 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_5fg.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_6f.png b/games/devtest/mods/testnodes/textures/testnodes_6f.png Binary files differnew file mode 100644 index 000000000..be3f695d5 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_6f.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_6fg.png b/games/devtest/mods/testnodes/textures/testnodes_6fg.png Binary files differnew file mode 100644 index 000000000..75df824a7 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_6fg.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes10.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes10.png Binary files differnew file mode 100644 index 000000000..a6d569a07 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes10.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes5.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes5.png Binary files differnew file mode 100644 index 000000000..0f24f16e0 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes5.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes6.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes6.png Binary files differnew file mode 100644 index 000000000..46c6e5019 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes6.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes7.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes7.png Binary files differnew file mode 100644 index 000000000..75b3bdd23 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes7.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes8.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes8.png Binary files differnew file mode 100644 index 000000000..4b1885983 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes8.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes9.png b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes9.png Binary files differnew file mode 100644 index 000000000..9902be89e --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes9.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_1.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_1.png Binary files differnew file mode 100644 index 000000000..74137b3ad --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_node_falling_1.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_2.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_2.png Binary files differnew file mode 100644 index 000000000..8327673c1 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_node_falling_2.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_3.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_3.png Binary files differnew file mode 100644 index 000000000..975de5481 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_node_falling_3.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_4.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_4.png Binary files differnew file mode 100644 index 000000000..87fc27612 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_node_falling_4.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_5.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_5.png Binary files differnew file mode 100644 index 000000000..9a8ce2dc4 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_node_falling_5.png diff --git a/games/devtest/mods/testnodes/textures/testnodes_node_falling_6.png b/games/devtest/mods/testnodes/textures/testnodes_node_falling_6.png Binary files differnew file mode 100644 index 000000000..9ad2f5b86 --- /dev/null +++ b/games/devtest/mods/testnodes/textures/testnodes_node_falling_6.png |
