diff options
Diffstat (limited to 'meta/3rd/love2d/library/love.sound.lua')
-rw-r--r-- | meta/3rd/love2d/library/love.sound.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/3rd/love2d/library/love.sound.lua b/meta/3rd/love2d/library/love.sound.lua index 2dd18b6d..5c7a89e1 100644 --- a/meta/3rd/love2d/library/love.sound.lua +++ b/meta/3rd/love2d/library/love.sound.lua @@ -94,7 +94,7 @@ function SoundData:getDuration() end --- ---Gets the value of the sample-point at the specified position. For stereo SoundData objects, the data from the left and right channels are interleaved in that order. --- ----@overload fun(i: number, channel: number):number +---@overload fun(self: love.SoundData, i: number, channel: number):number ---@param i number # An integer value specifying the position of the sample (starting at 0). ---@return number sample # The normalized samplepoint (range -1.0 to 1.0). function SoundData:getSample(i) end @@ -114,7 +114,7 @@ function SoundData:getSampleRate() end --- ---Sets the value of the sample-point at the specified position. For stereo SoundData objects, the data from the left and right channels are interleaved in that order. --- ----@overload fun(i: number, channel: number, sample: number) +---@overload fun(self: love.SoundData, i: number, channel: number, sample: number) ---@param i number # An integer value specifying the position of the sample (starting at 0). ---@param sample number # The normalized samplepoint (range -1.0 to 1.0). function SoundData:setSample(i, sample) end |