Skip to content

Commit cd5a9c0

Browse files
author
Hannes Barfuss
committed
Removed logging in delay anc compressor, renamed Stereoverb to Freeverb in menuItem.cs
1 parent 185c874 commit cd5a9c0

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

Assets/Scripts/Compressor/compressorSignalGenerator.cs

-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ public override void Awake()
3636
SetParam(6.0f, (int)Param.P_KNEE);
3737
SetParam(0, (int)Param.P_LIMIT);
3838
SetParam(0, (int)Param.P_LOOKAHEAD);
39-
Debug.Log("Sample rate is " + AudioSettings.outputSampleRate);
4039
}
4140

4241
private void OnDestroy()
@@ -83,7 +82,6 @@ public void SetParam(float value, int param)
8382
p[param] = value == 0 ? 0 : 1;
8483
break;
8584
}
86-
Debug.Log("Set param " + param + " to value " + p[param]);
8785
}
8886

8987
[DllImport("SoundStageNative")]

Assets/Scripts/Delay/delaySignalGenerator.cs

-8
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ public override void Awake()
3636
{
3737
int maxDelaySamples = (int)(MAX_TIME * AudioSettings.outputSampleRate);
3838
x = Delay_New(maxDelaySamples);
39-
Debug.Log("Maximum delay time in samples is " + maxDelaySamples);
4039
}
4140

4241
private void OnDestroy()
@@ -61,7 +60,6 @@ public void SetParam(float value, int param)
6160
p[param] = Utils.dbToLin( Utils.map(value, 0, 1, MIN_DRY, MAX_DRY, 0.8f) );
6261
break;
6362
}
64-
Debug.Log("Delay: Set param " + ((Param)param).ToString() + " to value " + p[param]);
6563
}
6664

6765
[DllImport("SoundStageNative")]
@@ -93,12 +91,6 @@ public override void processBuffer(float[] buffer, double dspTime, int channels)
9391
//To optimize, we could store the timestamp when the last input connection was removed.
9492
//Then we only have to process if P_TIME is larger then the elapsed time since the connection was removed.
9593
Delay_Process(buffer, buffer.Length, channels, x);
96-
97-
if (!processing)
98-
{
99-
processing = true;
100-
Debug.Log("Delay is processing");
101-
}
10294
}
10395
}
10496

Assets/Scripts/Menu/menuItem.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public GameObject Setup(deviceType d) {
124124
if (item == deviceType.Microphone) label.text = "Mic";
125125
if (item == deviceType.SampleHold) label.text = "Sample / Hold";
126126
if (item == deviceType.Reverb) label.text = "Reverb";
127-
if (item == deviceType.stereoVerb) label.text = "StereoVerb";
127+
if (item == deviceType.stereoVerb) label.text = "Freeverb";
128128

129129
label.gameObject.SetActive(true);
130130
symbol.gameObject.SetActive(true);

0 commit comments

Comments
 (0)