From d48ec6a59351b212b377d6843c86c5f2163298d2 Mon Sep 17 00:00:00 2001 From: matthew-blackman Date: Thu, 29 Feb 2024 11:45:02 -0500 Subject: [PATCH] Update interval tool max sound clip and translation sound threshold - see https://github.com/phetsims/projectile-data-lab/issues/173 --- js/measures/view/IntervalToolNode.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/measures/view/IntervalToolNode.ts b/js/measures/view/IntervalToolNode.ts index 987a660e..fa9b6e78 100644 --- a/js/measures/view/IntervalToolNode.ts +++ b/js/measures/view/IntervalToolNode.ts @@ -59,7 +59,7 @@ const minSoundClip = new SoundClip( intervalTool_wav, { initialOutputLevel: 0.3 } ); const maxSoundClip = new SoundClip( intervalTool_wav, { - initialPlaybackRate: 3, + initialPlaybackRate: 2.5, initialOutputLevel: 0.3 } ); @@ -358,7 +358,7 @@ export default class IntervalToolNode extends Node { middleMovingDownSoundPlayer: centerSoundClip, middleMovingUpPlaybackRateMapper: centerPlaybackRateMapper, middleMovingDownPlaybackRateMapper: centerPlaybackRateMapper, - interThresholdDelta: 5, + interThresholdDelta: 2, minSoundPlayer: nullSoundPlayer, maxSoundPlayer: nullSoundPlayer } );