123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- -- Meshes
- local S = minetest.get_translator("testnodes")
- local ocorner_cbox = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5},
- {-0.5, -0.25, -0.25, 0.25, 0, 0.5},
- {-0.5, 0, 0, 0, 0.25, 0.5},
- {-0.5, 0.25, 0.25, -0.25, 0.5, 0.5}
- }
- }
- local tall_pyr_cbox = {
- type = "fixed",
- fixed = {
- { -0.5, -0.5, -0.5, 0.5, -0.25, 0.5 },
- { -0.375, -0.25, -0.375, 0.375, 0, 0.375},
- { -0.25, 0, -0.25, 0.25, 0.25, 0.25},
- { -0.125, 0.25, -0.125, 0.125, 0.5, 0.125}
- }
- }
- -- Normal mesh
- minetest.register_node("testnodes:mesh", {
- description = S("Mesh Test Node"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes2.png"},
- paramtype = "light",
- collision_box = tall_pyr_cbox,
- groups = {dig_immediate=3},
- })
- -- Facedir mesh: outer corner slope
- minetest.register_node("testnodes:mesh_facedir", {
- description = S("Facedir Mesh Test Node").."\n"..
- S("param2 = facedir rotation (0..23)"),
- drawtype = "mesh",
- mesh = "testnodes_ocorner.obj",
- tiles = {"testnodes_mesh_stripes.png"},
- paramtype = "light",
- paramtype2 = "facedir",
- collision_box = ocorner_cbox,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_colorfacedir", {
- description = S("Color Facedir Mesh Test Node").."\n"..
- S("param2 = color + facedir rotation (0..23, 32..55, ...)"),
- drawtype = "mesh",
- mesh = "testnodes_ocorner.obj",
- tiles = {"testnodes_mesh_stripes3.png"},
- paramtype = "light",
- paramtype2 = "colorfacedir",
- palette = "testnodes_palette_facedir.png",
- collision_box = ocorner_cbox,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_4dir", {
- description = S("4dir Mesh Test Node").."\n"..
- S("param2 = 4dir rotation (0..3)"),
- drawtype = "mesh",
- mesh = "testnodes_ocorner.obj",
- tiles = {"testnodes_mesh_stripes5.png"},
- paramtype = "light",
- paramtype2 = "4dir",
- collision_box = ocorner_cbox,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_color4dir", {
- description = S("Color 4dir Mesh Test Node").."\n"..
- S("param2 = color + 4dir rotation (0..255)"),
- drawtype = "mesh",
- mesh = "testnodes_ocorner.obj",
- tiles = {"testnodes_mesh_stripes6.png"},
- paramtype = "light",
- paramtype2 = "color4dir",
- palette = "testnodes_palette_4dir.png",
- collision_box = ocorner_cbox,
- groups = {dig_immediate=3},
- })
- -- Wallmounted mesh: pyramid
- minetest.register_node("testnodes:mesh_wallmounted", {
- description = S("Wallmounted Mesh Test Node").."\n"..
- S("param2 = wallmounted rotation (0..7)"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes9.png"},
- paramtype = "light",
- paramtype2 = "wallmounted",
- collision_box = tall_pyr_cbox,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_colorwallmounted", {
- description = S("Color Wallmounted Mesh Test Node").."\n"..
- S("param2 = color + wallmounted rotation (0..7, 8..15, ...)"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes10.png"},
- paramtype = "light",
- paramtype2 = "colorwallmounted",
- palette = "testnodes_palette_wallmounted.png",
- collision_box = tall_pyr_cbox,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_double", {
- description = S("Double-sized Mesh Test Node"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes2.png"},
- paramtype = "light",
- collision_box = tall_pyr_cbox,
- visual_scale = 2,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_half", {
- description = S("Half-sized Mesh Test Node"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes2.png"},
- paramtype = "light",
- collision_box = tall_pyr_cbox,
- visual_scale = 0.5,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_waving1", {
- description = S("Plantlike-waving Mesh Test Node").."\n"..
- S("Waves if waving plants are enabled by client"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes4.png^[multiply:#B0FFB0"},
- paramtype = "light",
- collision_box = tall_pyr_cbox,
- waving = 1,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_waving2", {
- description = S("Leaflike-waving Mesh Test Node").."\n"..
- S("Waves if waving leaves are enabled by client"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes4.png^[multiply:#FFFFB0"},
- paramtype = "light",
- collision_box = tall_pyr_cbox,
- waving = 2,
- groups = {dig_immediate=3},
- })
- minetest.register_node("testnodes:mesh_waving3", {
- description = S("Liquidlike-waving Mesh Test Node").."\n"..
- S("Waves if waving liquids are enabled by client"),
- drawtype = "mesh",
- mesh = "testnodes_pyramid.obj",
- tiles = {"testnodes_mesh_stripes4.png^[multiply:#B0B0FF"},
- paramtype = "light",
- collision_box = tall_pyr_cbox,
- waving = 3,
- groups = {dig_immediate=3},
- })
|