2 using UnityEngine.Serialization;
13 [AddComponentMenu(
"AR+GPS/Place Along Path")]
14 [HelpURL(
"https://http://docs.unity-ar-gps-location.com/guide/#placealongpath")]
21 [Header(
"Path Settings")]
22 [FormerlySerializedAs(
"path")] [Tooltip(
"The path to place the prefab instances on.")]
28 [FormerlySerializedAs(
"prefab")] [Tooltip(
"The prefab/GameObject to be palced along the path.")]
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")]
41 [FormerlySerializedAs(
"splineSampleSize")] [Tooltip(
"The size of the sample used to calculate the spline.")]
46 public AltitudeMode AltitudeMode = AltitudeMode.DeviceRelative;
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;
58 private Vector3[] points;
64 for (var i = 0; i < points.Length; i++)
74 for (var i = 0; i < sample.Length; i++)
78 Latitude = sample[i].z,
79 Longitude = sample[i].x,
80 Altitude = sample[i].y,
81 AltitudeMode = AltitudeMode
85 instance.name = $
"{gameObject.name} - {i}";