mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-31 21:03:48 +01:00
Support for TexTools .rgsp files for meta changes. (Racial Scaling Parameters)
This commit is contained in:
parent
d52086b69c
commit
546f6d4152
13 changed files with 424 additions and 9 deletions
|
|
@ -57,13 +57,15 @@ namespace Penumbra.Mod
|
|||
.SelectMany( dir => dir.EnumerateFiles( "*.*", SearchOption.AllDirectories ) )
|
||||
.OrderBy( f => f.FullName ) )
|
||||
{
|
||||
if( file.Extension != ".meta" )
|
||||
switch( file.Extension.ToLowerInvariant() )
|
||||
{
|
||||
tmpFiles.Add( file );
|
||||
}
|
||||
else
|
||||
{
|
||||
tmpMetas.Add( file );
|
||||
case ".meta":
|
||||
case ".rgsp":
|
||||
tmpMetas.Add( file );
|
||||
break;
|
||||
default:
|
||||
tmpFiles.Add( file );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue