Skip to content

Commit 660491e

Browse files
committed
Fixed TSTLT hair.
1 parent ff72501 commit 660491e

File tree

3 files changed

+341
-310
lines changed

3 files changed

+341
-310
lines changed

FinModelUtility/Games/MarioArtist/MarioArtist/src/api/TstltModelImporterPlugin.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ public sealed class TstltModelImporterPlugin : IModelImporterPlugin {
1313
["N64"];
1414

1515
public IReadOnlyList<string> KnownGames { get; } = [
16-
"Mario Artist: Talent Studio"
17-
];
16+
"Mario Artist: Talent Studio"
17+
];
1818

1919

2020
public IReadOnlyList<string> MainFileExtensions { get; } = [".tstlt"];
2121
public IReadOnlyList<string> FileExtensions { get; } = [".tstlt"];
2222

2323
public IModel Import(IEnumerable<IReadOnlyTreeFile> files,
2424
float frameRate = 30) {
25-
var filesArray = files.ToArray();
26-
var tstltFiles = filesArray.WithFileType(".tstlt").ToArray();
25+
var filesArray = files.ToArray();
26+
var tstltFiles = filesArray.WithFileType(".tstlt").ToArray();
2727

28-
var tstltBundle = new TstltModelFileBundle(tstltFiles[0]);
28+
var tstltBundle = new TstltModelFileBundle(tstltFiles[0]);
2929

30-
var tstltImporter = new TstltModelLoader();
31-
return tstltImporter.Import(tstltBundle);
32-
}
30+
var tstltImporter = new TstltModelLoader();
31+
return tstltImporter.Import(tstltBundle);
32+
}
3333
}

0 commit comments

Comments
 (0)