Config
public struct Config : Equatable
Configuration type.
-
Undocumented
Declaration
Swift
public let minHeightM: Float
-
Undocumented
Declaration
Swift
public let followDistanceM: Float
-
Undocumented
Declaration
Swift
public let followDirection: FollowDirection
-
Undocumented
Declaration
Swift
public let responsiveness: Float
-
Direction relative to the target that the vehicle should follow
See moreDeclaration
Swift
public enum FollowDirection : Equatable
-
Initializes a new
Config
.Declaration
Swift
public init(minHeightM: Float, followDistanceM: Float, followDirection: FollowDirection, responsiveness: Float)
Parameters
minHeightM
Minimum height for the vehicle in meters (recommended minimum 8 meters)
followDistanceM
Distance from target for vehicle to follow in meters (recommended minimum 1 meter)
followDirection
Direction to follow in
responsiveness
How responsive the vehicle is to the motion of the target (range 0.0 to 1.0)
-
Declaration
Swift
public static func == (lhs: Config, rhs: Config) -> Bool