aboutsummaryrefslogtreecommitdiff
path: root/po/ms_Arab
Commit message (Expand)AuthorAge
* Translated using Weblate (Malay (Jawi))Yaya - Nurul Azeera Hidayah @ Muhammad Nur Hidayat Yasuyoshi2020-07-08
* Added translation using Weblate (Malay (Jawi))Yaya - Nurul Azeera Hidayah @ Muhammad Nur Hidayat Yasuyoshi2020-07-08
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
-- 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"),
	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"),
	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},
})

-- Wallmounted mesh: pyramid
minetest.register_node("testnodes:mesh_wallmounted", {
	description = S("Wallmounted Mesh Test Node"),
	drawtype = "mesh",
	mesh = "testnodes_pyramid.obj",
	tiles = {"testnodes_mesh_stripes2.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"),
	drawtype = "mesh",
	mesh = "testnodes_pyramid.obj",
	tiles = {"testnodes_mesh_stripes3.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"),
	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"),
	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"),
	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},
})