// SPDX-FileCopyrightText: 2024 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using System;
namespace GLTFast.Materials
{
///
/// Built-In render pipeline Standard shader modes
///
public enum StandardShaderMode
{
///
/// Opaque mode
///
Opaque = 0,
///
/// Cutout mode (alpha test)
///
Cutout = 1,
///
/// Fade mode (alpha blended opacity)
///
Fade = 2,
///
/// Transparent mode (alpha blended transmission; e.g. glass)
///
Transparent = 3
}
}