mirror of
https://github.com/nucular/sfxrlua.git
synced 2024-12-05 11:34:21 +00:00
But apparently it's faster this way :O
This commit is contained in:
parent
37e58ac6be
commit
09e552bdd5
10
sfxr.lua
10
sfxr.lua
@ -390,12 +390,12 @@ function sfxr.Sound:generateTable()
|
||||
end
|
||||
|
||||
function sfxr.Sound:generateSoundData(freq, bits)
|
||||
local data = love.sound.newSoundData(self:getLimit() + 1, freq, bits, 1)
|
||||
local tab = self:generateTable()
|
||||
|
||||
local i = 0
|
||||
for v in self:generate() do
|
||||
data:setSample(i, v)
|
||||
i = i + 1
|
||||
local data = love.sound.newSoundData(#tab, freq, bits, 1)
|
||||
|
||||
for i = 0, #tab - 1 do
|
||||
data:setSample(i, tab[i + 1])
|
||||
end
|
||||
|
||||
return data
|
||||
|
Loading…
Reference in New Issue
Block a user