mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-14 14:29:52 -05:00
12 lines
193 B
C#
12 lines
193 B
C#
using UnityEngine;
|
|
|
|
|
|
namespace VRMShaders
|
|
{
|
|
public struct SamplerParam
|
|
{
|
|
public (SamplerWrapType, TextureWrapMode)[] WrapModes;
|
|
public FilterMode FilterMode;
|
|
}
|
|
}
|