File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
RealtimeCSG/Assets/Plugins/RealtimeCSG Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ namespace RealtimeCSG.Foundation
2
2
{
3
3
internal static class Versioning
4
4
{
5
- public const string PluginVersion = "1_569 " ;
5
+ public const string PluginVersion = "1_570 " ;
6
6
public const string PluginDLLVersion = "1_559" ;
7
7
}
8
8
}
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ public enum DistanceUnit
12
12
Meters ,
13
13
Centimeters ,
14
14
Millimeters ,
15
- Inches ,
16
- Feet
15
+ Feet ,
16
+ Inches
17
17
}
18
18
19
19
public enum PixelUnit
@@ -67,7 +67,7 @@ public static DistanceUnit CycleToNextUnit (DistanceUnit unit)
67
67
{
68
68
if ( unit < DistanceUnit . Meters )
69
69
return DistanceUnit . Meters ;
70
- return ( DistanceUnit ) ( ( int ) ( unit + 1 ) % ( ( ( int ) DistanceUnit . Feet ) + 1 ) ) ;
70
+ return ( DistanceUnit ) ( ( int ) ( unit + 1 ) % ( ( ( int ) DistanceUnit . Inches ) + 1 ) ) ;
71
71
}
72
72
73
73
You can’t perform that action at this time.
0 commit comments