AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
PlaceAlongPath.cs
1 using UnityEngine;
2 using UnityEngine.Serialization;
3 
4 namespace ARLocation
5 {
6  using Utils;
7 
13  [AddComponentMenu("AR+GPS/Place Along Path")]
14  [HelpURL("https://http://docs.unity-ar-gps-location.com/guide/#placealongpath")]
15  public class PlaceAlongPath : MonoBehaviour
16  {
17 
21  [Header("Path Settings")]
22  [FormerlySerializedAs("path")] [Tooltip("The path to place the prefab instances on.")]
24 
28  [FormerlySerializedAs("prefab")] [Tooltip("The prefab/GameObject to be palced along the path.")]
29  public GameObject Prefab;
30 
35  [FormerlySerializedAs("objectCount")] [Tooltip("The number of object instances to be placed, excluding the endpoints. That is, the total number of instances is equal to objectCount + 2")]
36  public int ObjectCount = 10;
37 
41  [FormerlySerializedAs("splineSampleSize")] [Tooltip("The size of the sample used to calculate the spline.")]
42  public int SplineSampleSize = 200;
43 
44  public PlaceAtLocation.PlaceAtOptions PlacementSettings;
45 
46  public AltitudeMode AltitudeMode = AltitudeMode.DeviceRelative;
47 
48  [Space(4.0f)]
49 
50  [Header("Debug")]
51  [Tooltip("When debug mode is enabled, this component will print relevant messages to the console. Filter by 'PlaceAlongPath' in the log output to see the messages.")]
52  public bool DebugMode;
53 
54  [Space(4.0f)]
55 
56  private Spline spline;
57 
58  private Vector3[] points;
59 
60  private void Start()
61  {
62  points = new Vector3[Path.Locations.Length];
63 
64  for (var i = 0; i < points.Length; i++)
65  {
66  points[i] = Path.Locations[i].ToVector3();
67  }
68 
69  spline = Misc.BuildSpline(Path.SplineType, points, SplineSampleSize, Path.Alpha);
70 
71  var sample = spline.SamplePoints(ObjectCount);
72 
73 
74  for (var i = 0; i < sample.Length; i++)
75  {
76  var location = new Location()
77  {
78  Latitude = sample[i].z,
79  Longitude = sample[i].x,
80  Altitude = sample[i].y,
81  AltitudeMode = AltitudeMode
82  };
83  var instance = PlaceAtLocation.CreatePlacedInstance(Prefab, location, PlacementSettings, DebugMode);
84 
85  instance.name = $"{gameObject.name} - {i}";
86  }
87  }
88  }
89 }
ARLocation.LocationPath
Data used to construct a spline passing trough a set of geographical locations.
Definition: LocationPath.cs:12
ARLocation.Utils.Misc
Definition: Misc.cs:7
ARLocation.Location
Represents a geographical location.
Definition: Location.cs:19
ARLocation.PlaceAlongPath.ObjectCount
int ObjectCount
The number of object instances to be placed, excluding the endpoints. That is, the total number of in...
Definition: PlaceAlongPath.cs:36
ARLocation.LocationPath.Alpha
float Alpha
The path's alpha/tension factor.
Definition: LocationPath.cs:26
ARLocation.PlaceAlongPath.SplineSampleSize
int SplineSampleSize
The size of the sample used to calculate the spline.
Definition: PlaceAlongPath.cs:42
ARLocation.PlaceAlongPath
This component places instances of a given prefab/GameObject along equally spaced positions in a Loca...
Definition: PlaceAlongPath.cs:16
ARLocation.PlaceAtLocation.PlaceAtOptions
Definition: PlaceAtLocation.cs:62
ARLocation.PlaceAlongPath.Path
LocationPath Path
The path to place the prefab instances on.
Definition: PlaceAlongPath.cs:23
ARLocation.Spline.SamplePoints
Vector3[] SamplePoints(int n, System.Func< Vector3, Vector3 > func)
Calculates a sample of (N+2) equidistant points along the spline.
Definition: Spline.cs:114
ARLocation.Spline
Definition: Spline.cs:13
ARLocation.PlaceAtLocation
Apply to a GameObject to place it at a specified geographic location.
Definition: PlaceAtLocation.cs:54
ARLocation.LocationPath.Locations
Location[] Locations
The geographical locations that the path will interpolate.
Definition: LocationPath.cs:17
ARLocation
Definition: ARLocationConfigInspector.cs:7
ARLocation.PlaceAlongPath.Prefab
GameObject Prefab
The prefab/GameObject to be palced along the path.
Definition: PlaceAlongPath.cs:29