Files
badeend-go/Assets/Mapbox SDK/Mapbox/Unity/SourceLayers/ISubLayerCustomStyleAtlas.cs

15 lines
312 B
C#

namespace Mapbox.Unity.Map
{
using UnityEngine;
using Mapbox.Unity.MeshGeneration.Data;
public interface ISubLayerCustomStyleAtlas : ISubLayerCustomStyleOptions, ISubLayerStyle
{
AtlasInfo UvAtlas { get; set; }
void SetAsStyle(Material TopMaterial, Material SideMaterial, AtlasInfo uvAtlas);
}
}