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

21 lines
513 B
C#

// SPDX-FileCopyrightText: 2025 Unity Technologies and the glTFast authors
// SPDX-License-Identifier: Apache-2.0
using System;
using UnityEngine;
namespace GLTFast.Loading
{
/// <summary>
/// Provides a mechanism to inspect the progress and result of a texture download
/// or texture file access request
/// </summary>
public interface ITextureDownload : IDownload
{
/// <summary>
/// Resulting texture
/// </summary>
Texture2D Texture { get; }
}
}