Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion synth/SynthConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ export class Config {
public static readonly effectNames: ReadonlyArray<string> = ["reverb", "chorus", "panning", "distortion", "bitcrusher", "note filter", "echo", "pitch shift", "detune", "vibrato", "transition type", "chord type"];
public static readonly effectOrder: ReadonlyArray<EffectType> = [EffectType.transition, EffectType.chord, EffectType.pitchShift, EffectType.detune, EffectType.vibrato, EffectType.noteFilter, EffectType.distortion, EffectType.bitcrusher, EffectType.panning, EffectType.chorus, EffectType.echo, EffectType.reverb];
public static readonly noteSizeMax: number = 3;
public static readonly volumeRange: number = 8;
public static readonly volumeRange: number = 24;
public static readonly volumeLogScale: number = -0.5;
public static readonly panCenter: number = 4;
public static readonly panMax: number = Config.panCenter * 2;
Expand Down