From f986205f91cb41b3011893f71f2295e23612e8b2 Mon Sep 17 00:00:00 2001 From: nucular Date: Sun, 12 Jun 2016 01:19:16 +0200 Subject: [PATCH] Renamed SavingAndLoading too --- doc/api/sfxr.html | 8 ++++---- doc/index.html | 8 ++++---- sfxr.lua | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/api/sfxr.html b/doc/api/sfxr.html index f76ddb5..75c9a9e 100644 --- a/doc/api/sfxr.html +++ b/doc/api/sfxr.html @@ -43,7 +43,7 @@
  • Highpass
  • Vibrato
  • Randomization
  • -
  • SavingAndLoading
  • +
  • Serialization
  • @@ -404,7 +404,7 @@ Decay_Sustain_Release_.28ADSR.29_envelope">ASD envelope that controls the so Randomize all sound parameters to generate a "blip" sound -

    SavingAndLoading

    +

    Serialization

    @@ -1650,7 +1650,7 @@ Decay_Sustain_Release_.28ADSR.29_envelope">ASD envelope that controls the so -

    SavingAndLoading

    +

    Serialization

    @@ -1792,7 +1792,7 @@ Decay_Sustain_Release_.28ADSR.29_envelope">ASD envelope that controls the so
    generated by LDoc 1.4.3 -Last updated 2016-06-12 01:12:38 +Last updated 2016-06-12 01:18:55
    diff --git a/doc/index.html b/doc/index.html index 6f7e81a..5fb1ff3 100644 --- a/doc/index.html +++ b/doc/index.html @@ -43,7 +43,7 @@
  • Highpass
  • Vibrato
  • Randomization
  • -
  • SavingAndLoading
  • +
  • Serialization
  • @@ -404,7 +404,7 @@ Decay_Sustain_Release_.28ADSR.29_envelope">ASD envelope that controls the so
    sfxr.Sound:exportWAV (f[, rate=44100[, depth=0]]) Randomize all sound parameters to generate a "blip" sound
    -

    SavingAndLoading

    +

    Serialization

    @@ -1650,7 +1650,7 @@ Decay_Sustain_Release_.28ADSR.29_envelope">ASD envelope that controls the so -

    SavingAndLoading

    +

    Serialization

    @@ -1792,7 +1792,7 @@ Decay_Sustain_Release_.28ADSR.29_envelope">ASD envelope that controls the so
    generated by LDoc 1.4.3 -Last updated 2016-06-12 01:12:38 +Last updated 2016-06-12 01:18:55
    diff --git a/sfxr.lua b/sfxr.lua index 6bda8a2..8074a02 100644 --- a/sfxr.lua +++ b/sfxr.lua @@ -1192,7 +1192,7 @@ function sfxr.Sound:randomBlip(seed) end --- Generate and export the audio data to a PCM WAVE file. --- @within SavingAndLoading +-- @within Serialization -- @tparam ?string|file|love.filesystem.File f a path or file in `wb`-mode -- (passed files will not be closed) -- @tparam[opt=44100] SAMPLERATE rate the sampling rate @@ -1301,7 +1301,7 @@ function sfxr.Sound:exportWAV(f, rate, depth) end --- Save the sound parameters to a file as a Lua table --- @within SavingAndLoading +-- @within Serialization -- @tparam ?string|file|love.filesystem.File f a path or file in `w`-mode -- (passed files will not be closed) -- @tparam[opt=true] bool minify whether to minify the output or not @@ -1360,7 +1360,7 @@ function sfxr.Sound:save(f, minify) end --- Load the sound parameters from a file containing a Lua table --- @within SavingAndLoading +-- @within Serialization -- @tparam ?string|file|love.filesystem.File f a path or file in `r`-mode -- (passed files will not be closed) -- @raise "incompatible version: x.x.x" @@ -1392,7 +1392,7 @@ function sfxr.Sound:load(f) end --- Save the sound parameters to a file in the sfxr binary format (version 102) --- @within SavingAndLoading +-- @within Serialization -- @tparam ?string|file|love.filesystem.File f a path or file in `wb`-mode -- (passed files will not be closed) function sfxr.Sound:saveBinary(f) @@ -1451,7 +1451,7 @@ end --- Load the sound parameters from a file in the sfxr binary format -- (version 100-102) --- @within SavingAndLoading +-- @within Serialization -- @tparam ?string|file|love.filesystem.File f a path or file in `rb`-mode -- (passed files will not be closed) -- @raise "incompatible version: x", "unexpected file length"
    sfxr.Sound:exportWAV (f[, rate=44100[, depth=0]])