俳優の 4 つの画像をアニメーション化しようとしていますが、表示されているのは 1 つの画像だけで、他に変化はありません。
function init()
{
i=0;
while(i<ActStandX.length) //ActStandX holds the x locations of actor in a image spritesheet
{
for(var currentFrame=0;currentFrame<10;currentFrame++)
{
ctxBg.clearRect(0,0,800,600); //ctxBg is 2d context of canvas
ctxBg.drawImage(img,ActStandX[i],10,actWidth,actHeight,200,300,60,110);
}
i++;
}
requestAnimFrame(init);
}
私はこれまでこのコードを試しましたが、成功しませんでした。