0
キャンバスゲームに使用している円の変数です。どのように私はキャンバス全体の動きを維持しながら、その上に画像を配置するつもりですか?円のオブジェクトに画像を配置するにはどうすればいいですか?
var img = new Image();
img.src = "img.png";
var ball = {
radius: 0
,position: { x: 0, y: 0 }
,velocity: { x: 0, y: 0 }
,acceleration: 0
,draw:
function() {
context.fillStyle = "yellow";
context.beginPath();
context.arc(this.position.x, this.position.y, this.radius, 0, 2 * Math.PI);
context.fill();
}
};