특정지점으로 부드럽게 움직이는 메서드 공식
개발/IOS2012. 5. 30. 17:54
// 부드러운 움직임
MovieClip.prototype.smoothMove = function(speed, targetx, targety){
this._x += speed*(targetx - this._x);
this._y += speed*(targety - this._y);
};
_root.무비클립인스턴스.smoothMove(0.2, _xmouse, _ymouse);
'개발 > IOS' 카테고리의 다른 글
아이폰 OS 개발 자료 총정리 (0) | 2012.05.17 |
---|---|
iPhone용 Open Source 모음 (0) | 2012.05.17 |