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

33 lines
630 B
Lua
Raw Normal View History

2016-03-08 13:02:03 +03:00
local audioutil = require "audioutil"
function data()
return {
type = "GENERIC",
refDist = 25.0,
2016-03-19 16:27:03 +03:00
horn = "vehicle/EP20_Horn.wav",
2016-03-08 13:02:03 +03:00
params = {
tracks = {
2016-03-19 16:27:03 +03:00
{ clip = "vehicle/EP20.wav",
2016-03-08 13:02:03 +03:00
gainCurve = {
nodes = audioutil.plotSqrt(.0, .1, 1.0, 1.0, 10)
},
pitchCurve = {
nodes = {
{ .0, 1.0 },
{ 1.0, 1.33 },
}
}
}
},
}
}
end