ScaleAlphaAnimationKeyFrame

public class ScaleAlphaAnimationKeyFrame : AnimationKeyFrame

ScaleAlphaAnimation 을 구성하기 위해 하나의 keyframe을 구성하기 위한 클래스

Initializer

  • Initializer

    Declaration

    Swift

    @objc
    public init(scale: Vector2, alpha: Float, interpolation: AnimationInterpolation)

    Parameters

    scale

    확대변환 값. 1.0 기준 확대축소값.

    alpha

    투명도 값 0.0 ~ 1.0

    interpolation

    프레임 시간, 보간 방법.

  • 투명도 값. 0.0~1.0

    Declaration

    Swift

    @objc
    public var alpha: Float { get set }
  • 확대축소변환. 1.0 기준 확대값.

    Declaration

    Swift

    @objc
    public var scale: Vector2 { get set }