Skip to content

Commit

Permalink
Fix CalibrateType enum
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-akira committed Dec 26, 2023
1 parent fda882c commit 5ba3f17
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions UnityMemoryMappedFile/PipeCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 { }
Expand Down

0 comments on commit 5ba3f17

Please sign in to comment.