1520DLC/res/config/sound_set/er2k.lua

34 lines
538 B
Lua

local audioutil = require "audioutil"
function data()
return {
type = "GENERIC",
refDist = 25.0,
openDoors = "vehicle/bus_modern/bus_modern_open_door.wav",
closeDoors = "vehicle/er2/door.wav",
params = {
tracks = {
{
clip = "vehicle/er2/drive3.wav",
gainCurve = {
nodes = {
{ .0, .0 },
{ .15, 1.0 },
}
},
pitchCurve = {
nodes = {
{ .0, .24 },
{ .15, .38 },
{ .48, .75 },
{ .83, .95 },
{ 1.1, 1.3 },
{ 1.25, 1.39 },
}
}
}
},
}
}
end