[TASK] Initial commit with basic product setup
This commit is contained in:
16
Assets/Mapbox SDK/Mapbox/Unity/DataContainers/MapOptions.cs
Normal file
16
Assets/Mapbox SDK/Mapbox/Unity/DataContainers/MapOptions.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Mapbox.Unity.Map
|
||||
{
|
||||
using System;
|
||||
using UnityEngine;
|
||||
[Serializable]
|
||||
public class MapOptions : MapboxDataProperty
|
||||
{
|
||||
public MapLocationOptions locationOptions = new MapLocationOptions();
|
||||
public MapExtentOptions extentOptions = new MapExtentOptions(MapExtentType.RangeAroundCenter);
|
||||
public MapPlacementOptions placementOptions = new MapPlacementOptions();
|
||||
public MapScalingOptions scalingOptions = new MapScalingOptions();
|
||||
[Tooltip("Texture used while tiles are loading.")]
|
||||
public Texture2D loadingTexture = null;
|
||||
public Material tileMaterial = null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user