//탄력적인 움직임
MovieClip.prototype.moveElastic = function (target, a, b) {
this.tempx = this._x;
this._x = a*(this._x - target)+b*(this.prev_x - target)+ target;
this.prev_x = this.tempx;
};
MovieClip.prototype.moveElastic = function (target, a, b) {
this.tempx = this._x;
this._x = a*(this._x - target)+b*(this.prev_x - target)+ target;
this.prev_x = this.tempx;
};
'Flash&Action' 카테고리의 다른 글
외부 텍스트 파일을 로드할때 특수문자가 깨지는 것을 방지하기 특수문자 (0) | 2010.10.20 |
---|---|
Flash note (0) | 2010.10.20 |
3D 메뉴 만들기 (0) | 2010.10.20 |
Uppercase, LowerCase (0) | 2010.10.20 |
Flash Game + PHP 랭킹시스템 (0) | 2010.10.20 |