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

11 lines
168 B
C#

using UnityEngine;
namespace Needle.Engine.Gltf
{
public struct TextureExportSettings
{
public Texture Texture;
public int MaxSize;
public bool Linear;
}
}