powerfun-unity/Assets/Mapbox/Unity/SourceLayers/ISubLayerCustomStyle.cs
2021-03-30 17:27:50 +08:00

14 lines
297 B
C#

namespace Mapbox.Unity.Map
{
public interface ISubLayerCustomStyle
{
UvMapType TexturingType { get; set; }
ISubLayerCustomStyleTiled Tiled { get; }
ISubLayerCustomStyleAtlas TextureAtlas { get; }
ISubLayerCustomStyleAtlasWithColorPallete TextureAtlasWithColorPallete { get; }
}
}