mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-02 05:43:42 +01:00
Move Frameworkmanager to OtterGui.
This commit is contained in:
parent
513df2beac
commit
deb630795d
4 changed files with 9 additions and 110 deletions
|
|
@ -43,15 +43,13 @@ public unsafe partial class PathResolver
|
|||
{
|
||||
switch( type )
|
||||
{
|
||||
case ResourceType.Tex:
|
||||
case ResourceType.Shpk:
|
||||
if( _mtrlData.Value.Valid )
|
||||
{
|
||||
collection = _mtrlData.Value;
|
||||
return true;
|
||||
}
|
||||
|
||||
break;
|
||||
case ResourceType.Tex when _mtrlData.Value.Valid:
|
||||
case ResourceType.Shpk when _mtrlData.Value.Valid:
|
||||
collection = _mtrlData.Value;
|
||||
return true;
|
||||
case ResourceType.Scd when _avfxData.Value.Valid:
|
||||
collection = _avfxData.Value;
|
||||
return true;
|
||||
case ResourceType.Atex when _avfxData.Value.Valid:
|
||||
collection = _avfxData.Value;
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue