Default: New grass textures, new footprint overlay texture
This commit is contained in:
parent
450543f782
commit
c7b9e734ff
@ -119,6 +119,8 @@ paramat (CC BY-SA 3.0):
|
|||||||
default_dry_grass_side.png
|
default_dry_grass_side.png
|
||||||
default_dry_grass_*.png
|
default_dry_grass_*.png
|
||||||
default_junglewood.png, derived from a texture by BlockMen (CC BY-SA 3.0)
|
default_junglewood.png, derived from a texture by BlockMen (CC BY-SA 3.0)
|
||||||
|
default_grass.png, derived from a texture by Philipbenr (CC BY-SA 3.0)
|
||||||
|
default_grass_side.png, derived from a texture by Philipbenr (CC BY-SA 3.0)
|
||||||
|
|
||||||
brunob.santos (CC BY-SA 4.0):
|
brunob.santos (CC BY-SA 4.0):
|
||||||
default_desert_cobble.png
|
default_desert_cobble.png
|
||||||
@ -153,10 +155,6 @@ Neuromancer (CC BY-SA 3.0):
|
|||||||
default_dirt.png
|
default_dirt.png
|
||||||
default_furnace_*.png
|
default_furnace_*.png
|
||||||
|
|
||||||
Philipbenr (CC BY-SA 3.0):
|
|
||||||
default_grass.png
|
|
||||||
default_grass_side.png
|
|
||||||
|
|
||||||
Gambit (WTFPL):
|
Gambit (WTFPL):
|
||||||
default_bronze_ingot.png
|
default_bronze_ingot.png
|
||||||
default_copper_ingot.png
|
default_copper_ingot.png
|
||||||
|
@ -37,8 +37,8 @@ Soft / Non-Stone
|
|||||||
|
|
||||||
default:dirt
|
default:dirt
|
||||||
default:dirt_with_grass
|
default:dirt_with_grass
|
||||||
default:dirt_with_dry_grass
|
|
||||||
default:dirt_with_grass_footsteps
|
default:dirt_with_grass_footsteps
|
||||||
|
default:dirt_with_dry_grass
|
||||||
default:dirt_with_snow
|
default:dirt_with_snow
|
||||||
|
|
||||||
default:sand
|
default:sand
|
||||||
@ -282,6 +282,17 @@ minetest.register_node("default:dirt_with_grass", {
|
|||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("default:dirt_with_grass_footsteps", {
|
||||||
|
description = "Dirt with Grass and Footsteps",
|
||||||
|
tiles = {"default_grass.png^default_footprint.png", "default_dirt.png",
|
||||||
|
"default_dirt.png^default_grass_side.png"},
|
||||||
|
groups = {crumbly=3,soil=1,not_in_creative_inventory=1},
|
||||||
|
drop = 'default:dirt',
|
||||||
|
sounds = default.node_sound_dirt_defaults({
|
||||||
|
footstep = {name="default_grass_footstep", gain=0.25},
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("default:dirt_with_dry_grass", {
|
minetest.register_node("default:dirt_with_dry_grass", {
|
||||||
description = "Dirt with Dry Grass",
|
description = "Dirt with Dry Grass",
|
||||||
tiles = {"default_dry_grass.png",
|
tiles = {"default_dry_grass.png",
|
||||||
@ -295,16 +306,6 @@ minetest.register_node("default:dirt_with_dry_grass", {
|
|||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("default:dirt_with_grass_footsteps", {
|
|
||||||
description = "Dirt with Grass and Footsteps",
|
|
||||||
tiles = {"default_grass_footsteps.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
|
|
||||||
groups = {crumbly=3,soil=1,not_in_creative_inventory=1},
|
|
||||||
drop = 'default:dirt',
|
|
||||||
sounds = default.node_sound_dirt_defaults({
|
|
||||||
footstep = {name="default_grass_footstep", gain=0.25},
|
|
||||||
}),
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_node("default:dirt_with_snow", {
|
minetest.register_node("default:dirt_with_snow", {
|
||||||
description = "Dirt with Snow",
|
description = "Dirt with Snow",
|
||||||
tiles = {"default_snow.png", "default_dirt.png", "default_dirt.png^default_snow_side.png"},
|
tiles = {"default_snow.png", "default_dirt.png", "default_dirt.png^default_snow_side.png"},
|
||||||
|
BIN
mods/default/textures/default_footprint.png
Normal file
BIN
mods/default/textures/default_footprint.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 466 B |
Binary file not shown.
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 777 B |
Binary file not shown.
Before Width: | Height: | Size: 722 B |
Binary file not shown.
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 490 B |
Loading…
Reference in New Issue
Block a user