summaryrefslogtreecommitdiff
path: root/infrastructure/nodes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure/nodes.lua')
-rw-r--r--infrastructure/nodes.lua106
1 files changed, 0 insertions, 106 deletions
diff --git a/infrastructure/nodes.lua b/infrastructure/nodes.lua
index 33845c1..e0455ee 100644
--- a/infrastructure/nodes.lua
+++ b/infrastructure/nodes.lua
@@ -33,112 +33,6 @@
groups = {cracky = 2},
})
--- **************************************************************************************************** CENTER LINES
-
--- Asphalt block with center solid line
- minetest.register_node("infrastructure:asphalt_center_solid_line", {
- description = "Asphalt with center solid line",
- tiles = {
- "streets_asphalt.png^infrastructure_single_yellow_line.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- },
- drawtype = "normal",
- paramtype = "light",
- paramtype2 = "facedir",
- groups = {cracky = 1},
- })
-
--- Asphalt block with center solid line on one side (for making dashed lines)
- minetest.register_node("infrastructure:asphalt_center_solid_one_side", {
- description = "Asphalt with center solid line on one side",
- tiles = {
- "streets_asphalt.png^infrastructure_solid_yellow_line_one_side.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- },
- drawtype = "normal",
- paramtype = "light",
- paramtype2 = "facedir",
- groups = {cracky = 1},
- })
-
--- Asphalt block with center solid double line
- minetest.register_node("infrastructure:asphalt_center_solid_double", {
- description = "Asphalt with center solid double line",
- tiles = {
- "streets_asphalt.png^infrastructure_double_yellow_line.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- },
- drawtype = "normal",
- paramtype = "light",
- paramtype2 = "facedir",
- groups = {cracky = 1},
- })
-
--- Asphalt block with center corner single line
- minetest.register_node("infrastructure:asphalt_center_corner_single", {
- description = "Asphalt with center corner single line",
- tiles = {
- "streets_asphalt.png^infrastructure_single_yellow_line_corner.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- },
- drawtype = "normal",
- paramtype = "light",
- paramtype2 = "facedir",
- groups = {cracky = 1},
- })
-
--- Asphalt block with center corner double line
- minetest.register_node("infrastructure:asphalt_center_corner_double", {
- description = "Asphalt with center corner double line",
- tiles = {
- "streets_asphalt.png^infrastructure_solid_double_yellow_line_corner.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- "streets_asphalt.png",
- },
- drawtype = "normal",
- paramtype = "light",
- paramtype2 = "facedir",
- groups = {cracky = 1},
- })
-
--- **************************************************************************************************** TRAFFIC MARKS
-
--- Asphalt block with arrow straight
- minetest.register_alias("infrastructure:asphalt_arrow_straight", "streets:asphalt_arrow_straight")
-
--- Asphalt block with arrow straight + left
- minetest.register_alias("infrastructure:asphalt_arrow_straight_left", "streets:asphalt_arrow_straight_left")
-
--- Asphalt block with arrow straight + right
- minetest.register_alias("infrastructure:asphalt_arrow_straight_right", "streets:asphalt_arrow_straight_left")
-
--- Asphalt block with arrow left
- minetest.register_alias("infrastructure:asphalt_arrow_left", "streets:asphalt_arrow_left")
-
--- Asphalt block with arrow right
- minetest.register_alias("infrastructure:asphalt_arrow_right", "streets:asphalt_arrow_right")
-
--- Asphalt block with "P"-sign
- minetest.register_alias("infrastructure:asphalt_parking", "streets:asphalt_parking")
-- **************************************************************************************************** PRECAST CONCRETE