Skip to content

Commit

Permalink
Reduce slightly less sensitive min meaningful distance
Browse files Browse the repository at this point in the history
  • Loading branch information
acidbubbles committed Sep 24, 2021
1 parent bcf2f97 commit cfe8153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UI/Screens/ReduceScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cfe8153

Please sign in to comment.