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/DataContainers/ElevationRequiredOptions.cs

17 lines
392 B

namespace Mapbox.Unity.Map
{
using System;
using UnityEngine;
[Serializable]
public class ElevationRequiredOptions : MapboxDataProperty
{
[Range(0, 100)]
[Tooltip("Multiplication factor to vertically exaggerate elevation on terrain, does not work with Flat Terrain.")]
public float exaggerationFactor = 1;
public override bool NeedsForceUpdate()
{
return true;
}
}
}