-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
79 changed files
with
9,327 additions
and
6,893 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
return { | ||
name = 'EffectWaveform', | ||
description = 'The different types of waveforms that can be used with the ringmodulator EffectType.', | ||
constants = { | ||
{ | ||
name = 'sawtooth', | ||
description = 'A sawtooth wave, also known as a ramp wave. Named for its linear rise, and (near-)instantaneous fall along time.' | ||
name = 'EffectWaveform', | ||
description = 'The different types of waveforms that can be used with the \'\'\'ringmodulator\'\'\' EffectType.', | ||
constants = { | ||
{ | ||
name = 'sawtooth', | ||
description = 'A sawtooth wave, also known as a ramp wave. Named for its linear rise, and (near-)instantaneous fall along time.', | ||
}, | ||
{ | ||
name = 'sine', | ||
description = 'A sine wave. Follows a trigonometric sine function.', | ||
}, | ||
{ | ||
name = 'square', | ||
description = 'A square wave. Switches between high and low states (near-)instantaneously.', | ||
}, | ||
{ | ||
name = 'triangle', | ||
description = 'A triangle wave. Follows a linear rise and fall that repeats periodically.', | ||
}, | ||
}, | ||
{ | ||
name = 'sine', | ||
description = 'A sine wave. Follows a trigonometric sine function.' | ||
}, | ||
{ | ||
name = 'square', | ||
description = 'A square wave. Switches between high and low states (near-)instantaneously.' | ||
}, | ||
{ | ||
name = 'triangle', | ||
description = 'A triangle wave. Follows a linear rise and fall that repeats periodically.' | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
return { | ||
name = 'FilterType', | ||
description = 'The different types of filters for Sources', | ||
constants = { | ||
{ | ||
name = 'lowpass', | ||
description = 'Low-pass filter. High frequency sounds are attenuated.' | ||
}, | ||
{ | ||
name = 'highpass', | ||
description = 'High-pass filter. Low frequency sounds are attenuated.' | ||
}, | ||
{ | ||
name = 'bandpass', | ||
description = 'Band-pass filter. Both high and low frequency sounds are attenuated based on the given parameters.' | ||
} | ||
} | ||
} | ||
name = 'FilterType', | ||
description = 'Types of filters for Sources.', | ||
constants = { | ||
{ | ||
name = 'lowpass', | ||
description = 'Low-pass filter. High frequency sounds are attenuated.', | ||
}, | ||
{ | ||
name = 'highpass', | ||
description = 'High-pass filter. Low frequency sounds are attenuated.', | ||
}, | ||
{ | ||
name = 'bandpass', | ||
description = 'Band-pass filter. Both high and low frequency sounds are attenuated based on the given parameters.', | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.