Files
AR-Menu/Library/PackageCache/org.khronos.unitygltf@6b55d14e19c1/Runtime/Plugins/GLTFSerialization/GLTFObject.cs
2025-11-30 08:35:03 +02:00

21 lines
379 B
C#

using GLTF.Schema;
namespace GLTF
{
/// <summary>
/// Represents a glTF file (specifically not GLB)
/// </summary>
public class GLTFObject : IGLTFObject
{
public GLTFObject(GLTFRoot root)
{
Root = root;
}
/// <summary>
/// Parsed glTF into a strongly typed C# object
/// </summary>
public GLTFRoot Root { get; internal set; }
}
}