Removed unused parameter from exponential scaling function

This commit is contained in:
thepaperpilot 2022-03-03 22:28:37 -06:00
parent 8f7acf2e17
commit 322ad1529a

View file

@ -134,7 +134,6 @@ export function createLinearScaling(
// e.g. if exponent is 0.5 and base is 10, then having 10 points makes gain 1, and 40 points is 2
export function createExponentialScaling(
base: DecimalSource | Ref<DecimalSource>,
coefficient: DecimalSource | Ref<DecimalSource>,
exponent: DecimalSource | Ref<DecimalSource>
): ScalingFunction {
return {