diff --git a/WWTExplorer3d/Object3d.cs b/WWTExplorer3d/Object3d.cs index dde88ab..6903e83 100644 --- a/WWTExplorer3d/Object3d.cs +++ b/WWTExplorer3d/Object3d.cs @@ -862,6 +862,7 @@ public override void LoadData(string path) if (path.ToLower().EndsWith(".obj")) { ObjType = true; + flipHandedness = true; } if (lightID == 0) @@ -2566,8 +2567,8 @@ private void LoadMeshFromObj(string filename) if (FlipHandedness) { indexiesA = GetIndexies(parts[1]); - indexiesC = GetIndexies(parts[partIndex]); - indexiesB = GetIndexies(parts[partIndex - 1]); + indexiesB = GetIndexies(parts[partIndex]); + indexiesC = GetIndexies(parts[partIndex - 1]); } else {