// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema { /// /// The indices of each root node. /// https://github.com/KhronosGroup/glTF/blob/master/specification/2.0/schema/scene.schema.json /// [Serializable] public class GltfScene : GltfChildOfRootProperty { /// /// Indices of each root node. /// public int[] nodes; } }