Files
AR-Menu/Library/PackageCache/com.unity.cloud.gltfast@db5a82ec0b47/Runtime/Scripts/MaterialsVariants/MaterialsVariantsComponent.cs
2025-11-30 08:35:03 +02:00

21 lines
550 B
C#

// SPDX-FileCopyrightText: 2024 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using System;
using UnityEngine;
namespace GLTFast
{
/// <summary>
/// Wraps a <see cref="MaterialsVariantsControl"/> and provides access to it.
/// </summary>
public class MaterialsVariantsComponent : MonoBehaviour
{
/// <summary>
/// Materials variants control instance.
/// </summary>
[field: SerializeField]
public MaterialsVariantsControl Control { get; set; }
}
}