Add laser sounds (CC0) by Julien Matthey...
- https://freesound.org/s/268344/ - https://freesound.org/s/268343/ - https://freesound.org/s/346919/ - https://freesound.org/s/346918/ - https://freesound.org/s/470934/ - https://freesound.org/s/470933/ - https://freesound.org/s/470932/
This commit is contained in:
parent
3cc59cae3c
commit
7a28714ac0
@ -42,6 +42,7 @@ file = {
|
||||
"node.lua",
|
||||
"groups.lua",
|
||||
"groups_animal.lua",
|
||||
"groups_arms.lua",
|
||||
"groups_creature.lua",
|
||||
"groups_node.lua",
|
||||
"groups_vehicle.lua",
|
||||
|
@ -5,6 +5,8 @@ next
|
||||
- added "sounds:stop" wrapper function for "core:sound_stop"
|
||||
- added setting "sounds.enable_tests"
|
||||
- added sounds testing formspec shown with "/sounds_tests" chat command
|
||||
- added sounds:
|
||||
- laser
|
||||
|
||||
|
||||
v1.8
|
||||
|
29
groups_arms.lua
Normal file
29
groups_arms.lua
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
--- Pre-defined Arms Sound Groups
|
||||
--
|
||||
-- @topic arms_groups
|
||||
|
||||
|
||||
|
||||
--- Laser
|
||||
--
|
||||
-- @section laser
|
||||
|
||||
|
||||
--- @sndgroup sounds.laser
|
||||
-- @snd laser_01
|
||||
-- @snd laser_02
|
||||
-- @snd laser_03
|
||||
-- @snd laser_04
|
||||
-- @snd laser_05
|
||||
-- @snd laser_06
|
||||
-- @snd laser_07
|
||||
sounds.laser = SoundGroup({
|
||||
"laser_01",
|
||||
"laser_02",
|
||||
"laser_03",
|
||||
"laser_04",
|
||||
"laser_05",
|
||||
"laser_06",
|
||||
"laser_07",
|
||||
})
|
1
init.lua
1
init.lua
@ -25,6 +25,7 @@ local scripts = {
|
||||
"api",
|
||||
"groups",
|
||||
"groups_animal",
|
||||
"groups_arms",
|
||||
"groups_creature",
|
||||
"groups_node",
|
||||
"groups_vehicle",
|
||||
|
BIN
sounds/sounds_laser_01.ogg
Normal file
BIN
sounds/sounds_laser_01.ogg
Normal file
Binary file not shown.
BIN
sounds/sounds_laser_02.ogg
Normal file
BIN
sounds/sounds_laser_02.ogg
Normal file
Binary file not shown.
BIN
sounds/sounds_laser_03.ogg
Normal file
BIN
sounds/sounds_laser_03.ogg
Normal file
Binary file not shown.
BIN
sounds/sounds_laser_04.ogg
Normal file
BIN
sounds/sounds_laser_04.ogg
Normal file
Binary file not shown.
BIN
sounds/sounds_laser_05.ogg
Normal file
BIN
sounds/sounds_laser_05.ogg
Normal file
Binary file not shown.
BIN
sounds/sounds_laser_06.ogg
Normal file
BIN
sounds/sounds_laser_06.ogg
Normal file
Binary file not shown.
BIN
sounds/sounds_laser_07.ogg
Normal file
BIN
sounds/sounds_laser_07.ogg
Normal file
Binary file not shown.
BIN
sounds_src/sounds_laser_01.flac
Normal file
BIN
sounds_src/sounds_laser_01.flac
Normal file
Binary file not shown.
BIN
sounds_src/sounds_laser_02.flac
Normal file
BIN
sounds_src/sounds_laser_02.flac
Normal file
Binary file not shown.
BIN
sounds_src/sounds_laser_03.flac
Normal file
BIN
sounds_src/sounds_laser_03.flac
Normal file
Binary file not shown.
BIN
sounds_src/sounds_laser_04.flac
Normal file
BIN
sounds_src/sounds_laser_04.flac
Normal file
Binary file not shown.
BIN
sounds_src/sounds_laser_05.flac
Normal file
BIN
sounds_src/sounds_laser_05.flac
Normal file
Binary file not shown.
BIN
sounds_src/sounds_laser_06.flac
Normal file
BIN
sounds_src/sounds_laser_06.flac
Normal file
Binary file not shown.
BIN
sounds_src/sounds_laser_07.flac
Normal file
BIN
sounds_src/sounds_laser_07.flac
Normal file
Binary file not shown.
14
sources.md
14
sources.md
@ -76,6 +76,13 @@
|
||||
| [jet_flyby][] | Zerono1 | CC0 | |
|
||||
| [jet_land][] | bigpickle51 | CC0 | |
|
||||
| [lamb][] | swiftoid | CC0 | |
|
||||
| [laser_01][] | Julien Matthey | CC0 | |
|
||||
| [laser_02][] | Julien Matthey | CC0 | |
|
||||
| [laser_03][] | Julien Matthey | CC0 | |
|
||||
| [laser_04][] | Julien Matthey | CC0 | |
|
||||
| [laser_05][] | Julien Matthey | CC0 | |
|
||||
| [laser_06][] | Julien Matthey | CC0 | |
|
||||
| [laser_07][] | Julien Matthey | CC0 | |
|
||||
| [laugh_evil_01][] | AntumDeluge | CC0 | |
|
||||
| [laugh_evil_02][] | AntumDeluge | CC0 | |
|
||||
| [lava_cool][default] | Perttu Ahola (celeron55) | CC BY-SA 3.0 | 3 random sounds |
|
||||
@ -273,6 +280,13 @@
|
||||
[jet_flyby]: https://freesound.org/s/568128/
|
||||
[jet_land]: https://freesound.org/s/262755/
|
||||
[lamb]: https://freesound.org/s/182509/
|
||||
[laser_01]: https://freesound.org/s/268344/
|
||||
[laser_02]: https://freesound.org/s/268343/
|
||||
[laser_03]: https://freesound.org/s/346919/
|
||||
[laser_04]: https://freesound.org/s/346918/
|
||||
[laser_05]: https://freesound.org/s/470934/
|
||||
[laser_06]: https://freesound.org/s/470933/
|
||||
[laser_07]: https://freesound.org/s/470932/
|
||||
[laugh_evil_01]: https://opengameart.org/node/81237
|
||||
[laugh_evil_02]: https://opengameart.org/node/129475
|
||||
[leaves]: https://freesound.org/s/362253/
|
||||
|
Loading…
x
Reference in New Issue
Block a user