Skip to content

Commit 2edbc09

Browse files
Daniel4144keveleigh
authored andcommitted
fixed enum values
1 parent 8cb6f4c commit 2edbc09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

org.mixedrealitytoolkit.spatialmanipulation/BoundsControl/BoundsControlTypes.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ public enum HandleType
7474
/// <summary>
7575
/// A handle that is mounted to the face of a <see cref="BoundsControl"/>, and can move the object normal to the forward axis.
7676
/// </summary>
77-
Translation2D = 1 << 2,
77+
Translation2D = 1 << 3,
7878

7979
/// <summary>
8080
/// A handle that is mounted to the face of a <see cref="BoundsControl"/>, and can move the object in all three dimensions.
8181
/// </summary>
82-
Translation3D = 1 << 2,
82+
Translation3D = 1 << 4,
8383
}
8484

8585
/// <summary>

0 commit comments

Comments
 (0)