UniVRM/Assets/VRM10_Samples/VRM10Viewer/IMaterialImporter.cs
2025-02-06 03:43:16 +09:00

9 lines
184 B
C#

using UniGLTF;
namespace UniVRM10.VRM10Viewer
{
public interface IMaterialImporter
{
bool TryCreateParam(GltfData data, int i, out MaterialDescriptor matDesc);
}
}