s

부드러운 움직임 2

· 17년 전 · 3083

//관성력
MovieClip.prototype.inertiaMove = function(widthX,heightY,g,fric){
        if(this._x + this.speedX > widthX - this._width/2){
                this.speedX = -1*this.speedX;
                this._x = widthX - this._width/2;
        }else if(this._x + speedX <0 + this._width/2){
                this.speedX = -1*this.speedX;
                this._x = 0 + this._width/2;
        }else{
                this._x += this.speedX ;
        }
        if(this._y + this.speedY > heightY - this._height/2){
                this.speedY = -1*this.speedY;
                this._y = heightY - this._height/2;
        }else if(this._y + this.speedY <0 + this._height/2){
                this.speedY = -1*this.speedY;
                this._y = 0 + this._height/2;
        }else{
                this._y += this.speedY;
        }
       
        this.speedY = this.speedY + g;
        this.speedX = fric*this.speedX;
        this.speedY = fric*this.speedY;
};

//포물선운동
MovieClip.prototype.parabolaMove = function(){
        this.vy = this.vy + this.g;
        this._x = this._x + this.vx;
        this._y = this._y + this.vy;
};

[이 게시물은 관리자님에 의해 2011-10-31 16:50:06 Flash에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
기타 17년 전 조회 2,780
기타 17년 전 조회 2,962
기타 17년 전 조회 2,686
기타 17년 전 조회 2,961
JavaScript 17년 전 조회 3,611
기타 17년 전 조회 2,944
기타 17년 전 조회 2,727
기타 17년 전 조회 2,595
JavaScript 17년 전 조회 2,773
기타 17년 전 조회 3,923
기타 17년 전 조회 3,713
JavaScript 17년 전 조회 3,131
MySQL 17년 전 조회 3,802
기타 17년 전 조회 2,747
기타 17년 전 조회 3,084
기타 17년 전 조회 2,400
MySQL 17년 전 조회 3,982
JavaScript 17년 전 조회 4,473
기타 17년 전 조회 4,784
MySQL 17년 전 조회 3,816
MySQL 17년 전 조회 4,286
MySQL 17년 전 조회 4,218
MySQL 17년 전 조회 3,971
MySQL 17년 전 조회 3,838
기타 17년 전 조회 2,551
MySQL 17년 전 조회 3,859
MySQL 17년 전 조회 4,974
기타 17년 전 조회 2,966
Flash 17년 전 조회 3,260
기타 17년 전 조회 3,965