9 lines
188 B
C#
9 lines
188 B
C#
using UnityEngine;
|
|
|
|
namespace Needle.Engine.Gltf
|
|
{
|
|
public interface IGltfComponentExportHandler
|
|
{
|
|
bool OnExportNode(GltfExportContext context, int nodeId, Component component);
|
|
}
|
|
} |