애니메이트의 effect_type 속성값을 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nEffectType | short | 효과 유형 값(*ReMark 참조) |
Type | Description |
---|---|
BOOL | 정상 여부 |
* effect_type 옵션값 0: linear 1: ease_in_out 2: ease_in 3: strong_ease_in 4: ease_out 5: strong_ease_out 6: elastic 7: strong_elastic 8: bounce 9: string_bounce
function btn_seteffecttype_on_mouseup(objInst)
{
// 8: bounce 유형으로 변경
animate.seteffecttype(8);
}