11 lines
168 B
C#
11 lines
168 B
C#
using UnityEngine;
|
|
|
|
namespace Needle.Engine.Gltf
|
|
{
|
|
public struct TextureExportSettings
|
|
{
|
|
public Texture Texture;
|
|
public int MaxSize;
|
|
public bool Linear;
|
|
}
|
|
} |