AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
ARLocationConfig.cs
1 using UnityEngine;
2 
3 namespace ARLocation
4 {
5 
10  [CreateAssetMenu(fileName = "ARLocationConfig", menuName = "AR+GPS/ARLocationConfig")]
11  public class ARLocationConfig : ScriptableObject
12  {
13 
14  public static string Version
15  {
16  get
17  {
18  return "v3.5.1";
19  }
20  }
21 
22  [Tooltip("The Earth's mean radius, in kilometers, to be used in distance calculations.")]
23  public double EarthMeanRadiusInKM = 6372.8;
24 
25  [Tooltip("The equatorial Earth radius, in kilometers, used in geo-location calculations.")]
26  public double EarthEquatorialRadiusInKM = 6378.137;
27 
28  [Tooltip("The Earth's eccentricuty squared, used in geo-location calculations.")]
29  public double EarthFirstEccentricitySquared = 0.00669437999014;
30 
31  [Tooltip("The initial ground height guess, relative from the device position.")]
32  [Range(0, 10)]
33  public float InitialGroundHeightGuess = 1.4f;
34 
35  [Tooltip("The initial ground height guess, relative from the device position.")]
36  [Range(0, 10)]
37  public float MinGroundHeight = 0.4f;
38 
39  [Tooltip("The initial ground height guess, relative from the device position.")]
40  [Range(0, 10)]
41  public float MaxGroundHeight = 3.0f;
42 
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;
45 
46  [Tooltip("The smoothing factor for object height adjustments.")]
47  [Range(0, 1)]
48  public float GroundHeightSmoothingFactor = 0.05f;
49 
50  [Tooltip("If true, use Vuforia instead of ARFoundation.")]
51  public bool UseVuforia;
52 
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;
55  }
56 }
ARLocation.ARLocationConfig
This scriptable object holds the global configuration data for the AR + GPS Location plugin.
Definition: ARLocationConfig.cs:12
ARLocation
Definition: ARLocationConfigInspector.cs:7