From 5ba3f17f0b89a376f74130a2d205efeca2952e90 Mon Sep 17 00:00:00 2001 From: sh_akira Date: Wed, 27 Dec 2023 01:31:08 +0900 Subject: [PATCH] Fix CalibrateType enum --- UnityMemoryMappedFile/PipeCommands.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/UnityMemoryMappedFile/PipeCommands.cs b/UnityMemoryMappedFile/PipeCommands.cs index 6b4b6f65..ebe137bd 100644 --- a/UnityMemoryMappedFile/PipeCommands.cs +++ b/UnityMemoryMappedFile/PipeCommands.cs @@ -75,10 +75,11 @@ public class SelectCalibrateMode public enum CalibrateType { Invalid = -1, - Ipose = 0, - Tpose = 1, + Default = 0, + FixedHand = 1, FixedHandWithGround = 2, - FixedHand = 3 + Ipose = 3, + Tpose = 4, } public class EndCalibrate { }