Skip to content

Commit f49fa85

Browse files
committed
remove additional offset from int packed auto-offset #BUILD
1 parent a3b11b8 commit f49fa85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MainWindow.xaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ private static void ProcessAllFiles(System.Object importSettingsObject)
180180
}
181181

182182
//Console.WriteLine("Lowest bounds: " + lowestX + " " + lowestY + " " + lowestZ);
183-
// TODO could take center for XZ, and lowest for Y
184-
importSettings.offsetX = lowestX + 0.1f;
185-
importSettings.offsetY = lowestY + 0.1f;
186-
importSettings.offsetZ = lowestZ + 0.1f;
183+
// TODO could take center for XZ, and lowest for Y?
184+
importSettings.offsetX = lowestX;
185+
importSettings.offsetY = lowestY;
186+
importSettings.offsetZ = lowestZ;
187187
}
188188

189189
progressFile = 0;

0 commit comments

Comments
 (0)