We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a35d6c2 commit 73948cdCopy full SHA for 73948cd
Assets/Scripts/Pinpoint/UI/EphysCopilot/DrivePanelHandler.cs
@@ -310,8 +310,8 @@ private void Start()
310
public void OnSpeedChanged(float value)
311
{
312
// Updates speed text and snap slider
313
- // _driveSpeedText.text = "Speed: " + SpeedToString(value / 1000f);
314
- // _driveSpeedSlider.SetValueWithoutNotify((int)value);
+ _driveSpeedText.text = "Speed: " + SpeedToString(value / 1000f);
+ _driveSpeedSlider.SetValueWithoutNotify((int)value);
315
316
// Warn if speed is too high
317
if (!_acknowledgeHighSpeeds && value > 5)
0 commit comments