// SPDX-FileCopyrightText: 2024 Unity Technologies and the glTFast authors // SPDX-License-Identifier: Apache-2.0 using System; using GLTFast.Schema; namespace GLTFast { /// /// Provides access to glTF materials variants. /// public interface IMaterialsVariantsProvider { /// int MaterialsVariantsCount { get; } /// string GetMaterialsVariantName(int index); } }