[TASK] Initial commit with basic product setup
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user