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

15 lines
405 B
C#

using Mapbox.Unity.Map;
namespace Mapbox.Unity.SourceLayers
{
public interface ISubLayerLineGeometryOptions
{
/// <summary>
/// Sets the width of the mesh generated for line features.
/// </summary>
/// <param name="width">Width of the mesh generated for line features.</param>
void SetLineWidth(float width);
void SetJoinType(LineJoinType join);
void SetCapType(LineCapType cap);
}
}