PlanetKitFrameRate

@objc
public class PlanetKitFrameRate : NSObject

Represents the frame rate range for PlanetKit.

  • The minimum frame rate in frames per second (fps).

    Declaration

    Swift

    @objc
    public let minFps: Int32
  • The maximum frame rate in frames per second (fps).

    Declaration

    Swift

    @objc
    public let maxFps: Int32
  • Initializes a new instance of PlanetKitFrameRate.

    Declaration

    Swift

    @objc
    public init(minFps: Int32, maxFps: Int32)

    Parameters

    minFps

    The minimum frame rate in frames per second (fps).

    maxFps

    The maximum frame rate in frames per second (fps).

  • A string representation of the PlanetKitFrameRate instance.

    Declaration

    Swift

    public override var description: String { get }