私はスクエアとAreaを描画します。例:トップ平方移動(トップは==平方その後、停止した場合)...JavaScriptのキャンバスの上、右、左の値をチェックする方法
this.hitBottom=function()
{
var rbottom=myGameArea.canvas.height-this.height;
if(this.y > rbottom)
{
this.y=rbottom;
//this.gravitySpeed=0;
}
}
私はトップをチェックするには、右、キャンバスの左。どうやってするか?