10 [CreateAssetMenu(fileName =
"ARLocationConfig", menuName =
"AR+GPS/ARLocationConfig")]
14 public static string Version
22 [Tooltip(
"The Earth's mean radius, in kilometers, to be used in distance calculations.")]
23 public double EarthMeanRadiusInKM = 6372.8;
25 [Tooltip(
"The equatorial Earth radius, in kilometers, used in geo-location calculations.")]
26 public double EarthEquatorialRadiusInKM = 6378.137;
28 [Tooltip(
"The Earth's eccentricuty squared, used in geo-location calculations.")]
29 public double EarthFirstEccentricitySquared = 0.00669437999014;
31 [Tooltip(
"The initial ground height guess, relative from the device position.")]
33 public float InitialGroundHeightGuess = 1.4f;
35 [Tooltip(
"The initial ground height guess, relative from the device position.")]
37 public float MinGroundHeight = 0.4f;
39 [Tooltip(
"The initial ground height guess, relative from the device position.")]
41 public float MaxGroundHeight = 3.0f;
43 [Tooltip(
"The distance between Vuforia ground plane hit tests. Lower will be more precise but will affect performance.")]
44 public float VuforiaGroundHitTestDistance = 4.0f;
46 [Tooltip(
"The smoothing factor for object height adjustments.")]
48 public float GroundHeightSmoothingFactor = 0.05f;
50 [Tooltip(
"If true, use Vuforia instead of ARFoundation.")]
51 public bool UseVuforia;
53 [Tooltip(
"If true, geo-positioning calculations are performed by callind a user defined static method, 'ArGpsCustomGeoCalc.HorizontalVectorFromTo(Location l1, Location l1)'.")]
54 public bool UseCustomGeoCalculator;