mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-14 14:29:52 -05:00
18 lines
482 B
C#
18 lines
482 B
C#
namespace UniVRM10
|
|
{
|
|
internal struct Vrm0XMToonTextureIndexMap
|
|
{
|
|
// glTF
|
|
public int? MainTex;
|
|
public int? BumpMap;
|
|
public int? EmissionMap;
|
|
// VRMC_materials_mtoon
|
|
public int? ShadeTexture;
|
|
public int? ReceiveShadowTexture;
|
|
public int? ShadingGradeTexture;
|
|
public int? RimTexture;
|
|
public int? SphereAdd;
|
|
public int? OutlineWidthTexture;
|
|
public int? UvAnimMaskTexture;
|
|
}
|
|
} |