DropAnimationEffect
public class DropAnimationEffect : NSObject, PoiAnimationEffect, InfoWindowAnimationEffect
AnimationEffect중 Animation 시간동안 특정 pixel값만큼 위에서 아래로 떨어지는 애니메이션 효과 클래스.
Poi와 InfoWindow Animator에 적용할 수 있다.
-
Initializer
Declaration
Swift
@objc public init(pixelHeight: Float)
Parameters
pixelHeight
Drop Animation시 떨어지는 pixel Height
-
Drop Animation시 떨어지는 pixel height
Declaration
Swift
@objc public var pixelHeight: Float { get }
-
애니메이션 지속 시간, 반복 횟수 등 세부사항 지정
Declaration
Swift
public var interpolation: AnimationInterpolation { get set }
-
애니메이션 종료 시 애니메이터에 속한 객체들을 숨길지에 대한 여부.
true로 설정하면 애니메이션이 종료되면 객체들이 화면에서 자동으로 사라진다.
Declaration
Swift
public var hideAtStop: Bool { get set }
-
애니메이션 종료 시 애니메이터에 속한 객체들을 제거할지에 대한 여부.
true로 설정하면 애니메이션이 종료되면 객체들이 제거된다.
Declaration
Swift
public var removeAtStop: Bool { get set }
-
애니메이션 재생 횟수.
Declaration
Swift
public var playCount: UInt { get set }