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

22 lines
582 B
C#

// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using System;
namespace GLTFast.Schema
{
/// <summary>
/// BufferView extensions
/// </summary>
/// <seealso href="https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#reference-bufferview"/>
[Serializable]
public class BufferViewExtensions
{
#if MESHOPT
// ReSharper disable InconsistentNaming
public BufferViewMeshoptExtension EXT_meshopt_compression;
// ReSharper restore InconsistentNaming
#endif
}
}