// SPDX-FileCopyrightText: 2023 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
namespace GLTFast.Schema
{
///
/// Texture extensions
///
[System.Serializable]
public class TextureExtensions
{
///
// ReSharper disable once InconsistentNaming
public TextureBasisUniversal KHR_texture_basisu;
internal void GltfSerialize(JsonWriter writer)
{
throw new System.NotImplementedException($"GltfSerialize missing on {GetType()}");
}
}
///
/// Basis Universal texture extension
///
///
[System.Serializable]
public class TextureBasisUniversal
{
///
/// Index of the image which defines a reference to the KTX v2 image
/// with Basis Universal super-compression.
///
public int source = -1;
}
}