File tree Expand file tree Collapse file tree 3 files changed +341
-310
lines changed
FinModelUtility/Games/MarioArtist/MarioArtist/src/api Expand file tree Collapse file tree 3 files changed +341
-310
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments