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

12 lines
162 B
C#

namespace Mapbox.Unity.Map
{
public interface ISubLayerLightStyle : ISubLayerStyle
{
float Opacity { get; set; }
void SetAsStyle(float opacity);
}
}