0
一切都在一個文件中遺漏的類型錯誤:對象#<asteroid>有沒有方法「顯示」
一個HTML5的它的開始/ JavaScript的帆布遊戲
似乎每個人solotion更好的連接庫(這是所有一個文件) 或創建對象(我做了),當添加新
的代碼工作正常,沒有物體 :/
縮寫代碼
html codes
codes
var tempa = new asteroid(BASIC_L, 100, 300,300,0,0,2,2,0,0);
codes
function asteroid(type, hp, x, y, z, r, vx, vy, vz, vr)
{
this.type = type;
this.hp = hp;
this.x = x;
this.y = y;
this.z = z;
this.r = r;
this.vx = vx;
this.vy = vy;
this.vz = vz;
this.vr = vr;
function display(){
this.x += this.vx;
this.y += this.vy;
if(this.type == BASIC_L){
debug(this.type);
ctx.beginPath();
ctx.strokeStyle="#00fff0";
ctx.arc(this.x,this.y,100,0,2*Math.PI);
ctx.stroke();
}
}
}
//codes
function draw(){
//codes
tempa.display();
}
//codes
//html codes
是的......那工作......謝謝 – hutty 2013-04-23 21:35:01