31 lines
865 B
C#
31 lines
865 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema
|
|
{
|
|
/// <summary>
|
|
/// A texture and its sampler.
|
|
/// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/texture.schema.json
|
|
/// </summary>
|
|
[Serializable]
|
|
public class GltfTexture : GltfChildOfRootProperty
|
|
{
|
|
/// <summary>
|
|
/// The index of the sampler used by this texture.
|
|
/// </summary>
|
|
public int sampler = -1;
|
|
|
|
/// <summary>
|
|
/// The index of the image used by this texture.
|
|
/// </summary>
|
|
public int source = -1;
|
|
|
|
/// <summary>
|
|
/// Unity Texture2D wrapper for GltfTexture
|
|
/// </summary>
|
|
public Texture2D Texture { get; internal set; }
|
|
}
|
|
} |