Add interface collection.

This commit is contained in:
Ottermandias 2022-09-17 22:53:14 +02:00
parent 8597070063
commit 273111775c
8 changed files with 91 additions and 14 deletions

View file

@ -121,6 +121,12 @@ public unsafe partial class ResourceLoader
}
path = path.ToLower();
if( category == ResourceCategory.Ui )
{
var resolved = Penumbra.CollectionManager.Interface.ResolvePath( path );
return ( resolved, Penumbra.CollectionManager.Interface.ToResolveData() );
}
if( ResolvePathCustomization != null )
{
foreach( var resolver in ResolvePathCustomization.GetInvocationList() )