码迷,mamicode.com
首页 > 编程语言 > 详细

html5游戏-追踪算法

时间:2016-08-29 17:28:37      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

追踪算法的原理:目标位置 - 当前位置 / 速度,即: dx = targetX - currentX / speed, dy = targetY - currentY / speed

 

var getStep = function(iTarget, iNow) {
        var iStep = (iTarget - iNow) / this.speed;
        if (iStep == 0){ return 0; }
        if (Math.abs(iStep) < 1){ return (iStep > 0 ? 1 : -1); }
        return iStep;
 };

var dx = getStep(this.ctx.owner.owner.player.x,this.ctx.owner.x),
      dy = getStep(this.ctx.owner.owner.player.y,this.ctx.owner.y);

 

html5游戏-追踪算法

标签:

原文地址:http://www.cnblogs.com/gongshunkai/p/5818748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!