From d03adbcec58fc9543433adc1a720e446a65cf629 Mon Sep 17 00:00:00 2001 From: Henry Ou Date: Wed, 22 Dec 2021 09:15:22 -0800 Subject: [PATCH] Fix updating the filter param of the right hand. --- Assets/Scipts/LandmarkInterface/LandmarkResultSet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scipts/LandmarkInterface/LandmarkResultSet.cs b/Assets/Scipts/LandmarkInterface/LandmarkResultSet.cs index b085ecc..a429879 100644 --- a/Assets/Scipts/LandmarkInterface/LandmarkResultSet.cs +++ b/Assets/Scipts/LandmarkInterface/LandmarkResultSet.cs @@ -59,7 +59,7 @@ private void Awake() private void Update() { LeftHandFilter.UpdateFilterParameter(FilterTimeInterval, FilterNoise, DisplacementLimit); - LeftHandFilter.UpdateFilterParameter(FilterTimeInterval, FilterNoise, DisplacementLimit); + RightHandFilter.UpdateFilterParameter(FilterTimeInterval, FilterNoise, DisplacementLimit); } public void UpdateLandmark(LandmarkType landmarkType, NormalizedLandmarkList landmarkList)