public enum CameraAnimationType extends Enum<CameraAnimationType>
CameraUpdate
에서 사용합니다.
Enum Constant and Description |
---|
Easing
시간 경과에 따라, 가감속이 적용되어 이동하는 애니메이션.
|
Fly
위치, 줌 레벨, 베어링, 기울기의 조합을 변경하여 비행처럼 이동하는 애니메이션.
|
Linear
시간 경과에 따라, 균일하게 이동하는 애니메이션.
|
None
애니메이션 없이 바로 이동합니다.
|
Modifier and Type | Method and Description |
---|---|
static CameraAnimationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CameraAnimationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraAnimationType None
public static final CameraAnimationType Linear
public static final CameraAnimationType Easing
public static final CameraAnimationType Fly
public static CameraAnimationType[] values()
for (CameraAnimationType c : CameraAnimationType.values()) System.out.println(c);
public static CameraAnimationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null© 2019. iNavi Systems Corp. All rights reserved.