AntiflickerMode

@objc(GSAntiflickerMode)
public enum AntiflickerMode : Int, CustomStringConvertible, CaseIterable

Anti-flickering modes.

  • off

    Anti-flickering is off.

    Declaration

    Swift

    case off
  • Anti-flickering set to 50hz.

    Declaration

    Swift

    @objc(GSAntiflickerMode50Hz)
    case mode50Hz
  • Anti-flickering set to 60hz.

    Declaration

    Swift

    @objc(GSAntiflickerMode60Hz)
    case mode60Hz
  • Anti-flickering automatically either managed by the drone or based on the location.

    Declaration

    Swift

    case auto
  • Debug description.

    Declaration

    Swift

    public var description: String { get }