From cfe8153ab56c3fccd80817a8fc30159d1256b4c3 Mon Sep 17 00:00:00 2001 From: Acid Bubbles Date: Fri, 24 Sep 2021 16:00:57 -0400 Subject: [PATCH] Reduce slightly less sensitive min meaningful distance --- src/UI/Screens/ReduceScreen.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Screens/ReduceScreen.cs b/src/UI/Screens/ReduceScreen.cs index 511a3d12..8adc20b8 100644 --- a/src/UI/Screens/ReduceScreen.cs +++ b/src/UI/Screens/ReduceScreen.cs @@ -58,7 +58,7 @@ private void CreateReduceSettingsUI() _maxFramesPerSecondJSON.setCallbackFunction = val => _maxFramesPerSecondJSON.valNoCallback = Mathf.Round(val); _removeFlatSectionsKeyframes = new JSONStorableBool("Remove flat sections", true); _simplifyKeyframes = new JSONStorableBool("Simplify keyframes", true); - _minDistanceJSON = new JSONStorableFloat("Minimum meaningful distance", 0.005f, 0f, 1f, false); + _minDistanceJSON = new JSONStorableFloat("Minimum meaningful distance", 0.008f, 0f, 1f, false); _minRotationJSON = new JSONStorableFloat("Minimum meaningful rotation (dot)", 0.001f, 0f, 1f); _minFloatParamRangeRatioJSON = new JSONStorableFloat("Minimum meaningful float range ratio", 0.01f, 0f, 1f); prefabFactory.CreateToggle(_removeFlatSectionsKeyframes);