16 lines
421 B
C#
16 lines
421 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema
|
|
{
|
|
/// <summary>
|
|
/// The alpha rendering mode of the material.
|
|
/// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/material.schema.json
|
|
/// </summary>
|
|
public enum GltfAlphaMode
|
|
{
|
|
OPAQUE,
|
|
MASK,
|
|
BLEND
|
|
}
|
|
} |