PedestrianSpecification

public struct PedestrianSpecification : Hashable

Pedestrian specific settings.

  • Walking speed in meters per second. The provided value must be in the range [0.5, 2.0]. Defaults to a speed of 1 meter per second.

    Declaration

    Swift

    public var walkingSpeedInMetersPerSecond: Double
  • Creates a new instance.

    Declaration

    Swift

    public init(walkingSpeedInMetersPerSecond: Double = 1.0)