mixedreality/com.microsoft.mixedreality..../Core/Utilities/Gltf/Schema/GltfChildOfRootProperty.cs

21 lines
686 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema
{
/// <summary>
/// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/glTFChildOfRootProperty.schema.json
/// </summary>
[Serializable]
public class GltfChildOfRootProperty : GltfProperty
{
/// <summary>
/// The user-defined name of this object.
/// This is not necessarily unique, e.g., an accessor and a buffer could have the same name,
/// or two accessors could even have the same name.
/// </summary>
public string name;
}
}