InfoWindowAnimationEffect

@objc
public protocol InfoWindowAnimationEffect

InfoWindowAnimation을 생성할 때 Animation Effect 종류를 정의하는 프로토콜

  • 애니메이션의 지속시간, 반복 회수, 프레임간의 보간 방법등을 지정

    Declaration

    Swift

    @objc
    var interpolation: AnimationInterpolation { get set }
  • 애니메이션 종료시 대상 객체를 숨길지 여부를 지정.

    Declaration

    Swift

    @objc
    var hideAtStop: Bool { get set }
  • 애니메이션 재생 횟수.

    Declaration

    Swift

    @objc
    var playCount: UInt { get set }