From 8fcd8b5006e0dbbc1f4e8c47289927a8dbdc58b9 Mon Sep 17 00:00:00 2001 From: ikpil Date: Sun, 12 Nov 2023 17:11:20 +0900 Subject: [PATCH] typo --- src/DotRecast.Detour.Extras/ObjExporter.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/DotRecast.Detour.Extras/ObjExporter.cs b/src/DotRecast.Detour.Extras/ObjExporter.cs index e88e1ae..526b74a 100644 --- a/src/DotRecast.Detour.Extras/ObjExporter.cs +++ b/src/DotRecast.Detour.Extras/ObjExporter.cs @@ -34,8 +34,7 @@ namespace DotRecast.Detour.Extras { for (int v = 0; v < tile.data.header.vertCount; v++) { - fw.Write("v " + tile.data.verts[v * 3] + " " + tile.data.verts[v * 3 + 1] + " " - + tile.data.verts[v * 3 + 2] + "\n"); + fw.Write("v " + tile.data.verts[v * 3] + " " + tile.data.verts[v * 3 + 1] + " " + tile.data.verts[v * 3 + 2] + "\n"); } } }