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/SubLayerFantasyStyle.cs

20 lines
394 B

6 months ago
namespace Mapbox.Unity.Map
{
public class SubLayerFantasyStyle : ISubLayerFantasyStyle
{
private GeometryMaterialOptions _materialOptions;
public SubLayerFantasyStyle(GeometryMaterialOptions materialOptions)
{
_materialOptions = materialOptions;
}
public void SetAsStyle()
{
_materialOptions.style = StyleTypes.Fantasy;
_materialOptions.HasChanged = true;
}
}
}