From f527f9519928d228bbf1cdea8e5b0fb473c0f285 Mon Sep 17 00:00:00 2001 From: spatialfree Date: Thu, 6 Oct 2022 14:21:57 -0400 Subject: [PATCH] bigger flexion deadzone --- app/Mono.cs | 8 ++++---- app/dofs/stretch-cursor/wave/WaveCursor.cs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Mono.cs b/app/Mono.cs index 1b27add..9d1d14e 100644 --- a/app/Mono.cs +++ b/app/Mono.cs @@ -45,12 +45,12 @@ public class Mono { dofs = new dof[] { // new StretchFinger(), - new WaveCursor() { handed = Handed.Left, deadzone = 0.01f, strength = 3f }, - new WaveCursor() { handed = Handed.Right, deadzone = 0.01f, strength = 3f }, + new WaveCursor() { handed = Handed.Left }, + new WaveCursor() { handed = Handed.Right }, new Trackballer() { handed = Handed.Left }, new Trackballer() { handed = Handed.Right }, - // new StretchCursor() { deadzone = 0.01f, strength = 3f }, - // new StretchCursor() { deadzone = 0.01f, strength = 3f }, + // new StretchCursor() { }, + // new StretchCursor() { }, }; } diff --git a/app/dofs/stretch-cursor/wave/WaveCursor.cs b/app/dofs/stretch-cursor/wave/WaveCursor.cs index f245f75..47dd256 100644 --- a/app/dofs/stretch-cursor/wave/WaveCursor.cs +++ b/app/dofs/stretch-cursor/wave/WaveCursor.cs @@ -31,7 +31,7 @@ class WaveCursor : dof { // Demo(); } - public float deadzone = 0.1f; + public float deadzone = 0.03f; public float strength = 3f; public Handed handed = Handed.Left;