Files
2025-11-30 08:35:03 +02:00

9 lines
188 B
C#

using UnityEngine;
namespace Needle.Engine.Gltf
{
public interface IGltfComponentExportHandler
{
bool OnExportNode(GltfExportContext context, int nodeId, Component component);
}
}