14 lines
291 B
C#
14 lines
291 B
C#
namespace Mapbox.Unity.Map
|
|
{
|
|
using UnityEngine;
|
|
|
|
public interface ISubLayerCustomStyleTiled : ISubLayerCustomStyleOptions, ISubLayerStyle
|
|
{
|
|
void SetMaterials(Material TopMaterial, Material SideMaterial);
|
|
void SetAsStyle(Material TopMaterial, Material SideMaterial = null);
|
|
}
|
|
|
|
}
|
|
|
|
|