powerfun-unity/Assets/Mapbox/Unity/SourceLayers/ISubLayerCustomStyle.cs

14 lines
297 B
C#
Raw Normal View History

2021-03-22 19:20:51 +08:00
namespace Mapbox.Unity.Map
{
public interface ISubLayerCustomStyle
{
UvMapType TexturingType { get; set; }
ISubLayerCustomStyleTiled Tiled { get; }
ISubLayerCustomStyleAtlas TextureAtlas { get; }
ISubLayerCustomStyleAtlasWithColorPallete TextureAtlasWithColorPallete { get; }
}
}