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

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);
}
}