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;