mixedreality/com.microsoft.mixedreality..../Core/Utilities/Gltf/Schema/GltfWrapMode.cs

17 lines
454 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema
{
/// <summary>
/// Texture wrap mode.
/// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/sampler.schema.json
/// </summary>
public enum GltfWrapMode
{
None = 0,
ClampToEdge = 33071,
MirroredRepeat = 33648,
Repeat = 10497
}
}