// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema { /// /// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/textureInfo.schema.json /// [Serializable] public class GltfTextureInfo : GltfProperty { /// /// The index of the texture. /// public int index = -1; /// /// This integer value is used to construct a string in the format /// TEXCOORD_<set index> which is a reference to a key in /// mesh.primitives.attributes (e.g. A value of 0 corresponds to TEXCOORD_0). /// public int textCoord = 0; } }