Skip to content

Commit cb57f70

Browse files
sofarparamat
authored andcommittedMar 18, 2016
Add steel door/trapdoor sounds.
I've found a favorable steel door sound from a parking garage door that isn't abrupt or scary, just sounds like a nice solid metal door. The sample had both opening and closing sounds, and so they match nicely. Amplified and mixed several samples together to reduce ambient noise, and get the right level compared to wood doors. Attribution was added as well. CC-BY-3.0 sounds.
1 parent f18871d commit cb57f70

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed
 

Diff for: ‎mods/doors/README.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,7 @@ fencegate_open.ogg:
7575
fencegate_close.ogg:
7676
http://www.freesound.org/people/BarkersPinhead/sounds/274807/ - CC-BY-3.0
7777
http://www.freesound.org/people/rivernile7/sounds/249573/ - CC-BY-3.0
78-
78+
Steel door sounds (open & close (CC-BY-3.0) by HazMatt
79+
- http://www.freesound.org/people/HazMattt/sounds/187283/
80+
doors_steel_door_open.ogg
81+
doors_steel_door_close.ogg

Diff for: ‎mods/doors/init.lua

+4
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,8 @@ doors.register("door_steel", {
438438
inventory_image = "doors_item_steel.png",
439439
protected = true,
440440
groups = { snappy = 1, bendy = 2, cracky = 1, melty = 2, level = 2 },
441+
sound_open = "doors_steel_door_open",
442+
sound_close = "doors_steel_door_close",
441443
recipe = {
442444
{"default:steel_ingot", "default:steel_ingot"},
443445
{"default:steel_ingot", "default:steel_ingot"},
@@ -628,6 +630,8 @@ doors.register_trapdoor("doors:trapdoor_steel", {
628630
tile_front = "doors_trapdoor_steel.png",
629631
tile_side = "doors_trapdoor_steel_side.png",
630632
protected = true,
633+
sound_open = "doors_steel_door_open",
634+
sound_close = "doors_steel_door_close",
631635
groups = {snappy=1, bendy=2, cracky=1, melty=2, level=2, door=1},
632636
})
633637

Diff for: ‎mods/doors/sounds/doors_steel_door_close.ogg

8.37 KB
Binary file not shown.

Diff for: ‎mods/doors/sounds/doors_steel_door_open.ogg

5.38 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.