mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-13 22:09:53 -05:00
10 lines
221 B
C#
10 lines
221 B
C#
using UniGLTF;
|
|
using UnityEngine;
|
|
|
|
namespace VRM10.Settings
|
|
{
|
|
public abstract class MaterialDescriptorGeneratorFactory : ScriptableObject
|
|
{
|
|
public abstract IMaterialDescriptorGenerator Create();
|
|
}
|
|
} |