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

15 lines
312 B
C#
Raw Normal View History

2021-03-22 19:20:51 +08:00
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);
}
}