Files
AR-Menu/Library/PackageCache/com.needle.engine-exporter@8c046140a1d9/Gltf/Runtime/NestedGltf.cs
2025-11-30 08:35:03 +02:00

15 lines
358 B
C#

using UnityEngine;
namespace Needle.Engine.Gltf
{
/// <summary>
/// This component is only temporarily instantiated when a nested gltf is exported to automatically load this
/// </summary>
// empty path = hidden
[AddComponentMenu("")]
public class NestedGltf : MonoBehaviour
{
public string FilePath;
public bool LoadAssetInParent = true;
}
}