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

34 lines
536 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, .14 },
{ .05, .28 },
{ .18, .55 },
{ .43, .85 },
{ .8, 1.4 },
{ 1.3, 1.69 },
}
}
}
},
}
}
end