2

たった今。キャラクターの方向から弾丸を発射するように設定しました。しかし、弾丸をマウスポイントに向けて発射できるようにして、プレイヤーの負担を軽減したいと考えています。

今は

if(gun_1[i].direction == 2){ gun_1[i].x -= gun_1[i].speed * modifier};
if(gun_1[i].direction == 3){ gun_1[i].x += gun_1[i].speed * modifier};
if(gun_1[i].direction == 1){ gun_1[i].y -= gun_1[i].speed * modifier};
if(gun_1[i].direction == 4){ gun_1[i].y += gun_1[i].speed * modifier };
if(gun_1[i].direction == 5){ gun_1[i].y -= gun_1[i].speed * modifier; gun_1[i].x -= gun_1[i].speed * modifier };
if(gun_1[i].direction == 7){ gun_1[i].y += gun_1[i].speed * modifier; gun_1[i].x -= gun_1[i].speed * modifier };
if(gun_1[i].direction == 6){ gun_1[i].y -= gun_1[i].speed * modifier; gun_1[i].x += gun_1[i].speed * modifier };
if(gun_1[i].direction == 8){ gun_1[i].y += gun_1[i].speed * modifier; gun_1[i].x += gun_1[i].speed * modifier };

マウスをクリックした位置まで撮影できるようにしたいです。もし可能ならば。

4

3 に答える 3

2

別の答え:

gun_1[i].x += gun_1[i].velocityX;
gun_1[i].y += gun_1[i].velocityY;


var dx = (e.x - character.x);
var dy = (e.y - character.y);
var angle = Math.atan2(dy, dx);

gun_1[i].velocityX = Math.cos(angle) * speed;
gun_1[i].velocityY = Math.sin(angle) * speed;
于 2014-03-04T18:53:15.407 に答える
0
   var i=0;
        var maxBullets=10;
        var allBullets=[];//a array for objects

        function bullet(){
           this.vx=0;
           this.vy=0;
           this.inix=0;
           this.iniy=0;
           this.angleGrads=0;
           this.angleRads=1.0;
           this.active=false;
        }
        bullet.prototype.exist=function(){
         //this.inix+=mathsin.bla,bla.bla.bla  bla
         if(this.x > wordWidth){
           //kill this bullet
           this.active=false;
          }
        }
        bullet.prototype.draw=function(){
          //ctx.draw bla, bla, bla 
        }
        function newBullets(){
          for(i=1;i<=maxBullets;i++){
            allBullets[i]=new bullet();
          }
        }
    function launchBullets(){
         for(i=1;i<=maxBullets;i++){
            if(!allBullets[i].active){
              //detemine angle with a point an the mouse point
              // math atan2()  ;)
              //asing values to this bullet
             allBullets[i].angleGrads=angleMouse;
             allBullets[i].inix=mousex;
             allBullets[i].iniy=mousey;
             allBullets[i].angleRads=(allBullets[i].angleGrads*PI)/180;
             //and end
             allBullets[i].active=true;
             //get out
             break;
            }
          }
    }//end of launchBullets

    function operations(){
      for(i=1;i<=maxBullets;i++){
            if(allBullets[i].active){
              allBullets[i].exist();
        }
      }
    }
    function paint(){
    for(i=1;i<=maxBullets;i++){
            if(allBullets[i].active){
              allBullets[i].draw();
        }
      }
    }//end of draw scene
于 2015-04-22T00:04:01.947 に答える