15 lines
405 B
C#
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);
|
|||
|
|
}
|
|||
|
|
}
|