You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mapbox-sdk/Unity/SourceLayers/ISubLayerCustomStyleOptions.cs

22 lines
405 B

6 months ago
namespace Mapbox.Unity.Map
{
using UnityEngine;
public interface ISubLayerCustomStyleOptions
{
/// <summary>
/// Gets or sets the top material.
/// </summary>
/// <value>The top material.</value>
Material TopMaterial { get; set; }
/// <summary>
/// Gets or sets the side material.
/// </summary>
/// <value>The side material.</value>
Material SideMaterial { get; set; }
}
}