// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema { /// /// Metadata about the glTF asset. /// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/asset.schema.json /// [Serializable] public class GltfAssetInfo : GltfProperty { /// /// A copyright message suitable for display to credit the content creator. /// public string copyright; /// /// Tool that generated this glTF model. Useful for debugging. /// public string generator; /// /// The glTF version. /// public string version; /// /// The minimum glTF version that this asset targets. /// public string minVersion; } }