0
我正在單聲道android遊戲應用程序。我想要背景圖像從上到下垂直滾動的示例代碼。我有一個代碼,但它不能正常工作。因此,有人幫助我。單聲道爲Android應用程序
mBGFarMoveY = mBGFarMoveY + 3;
int newFarY = mBackgroundImageFar.Height + (+ mBGFarMoveY);
if (newFarY <= 0)
{
mBGFarMoveY = 0;
canvas.DrawBitmap (mBackgroundImageFar,0,mBGFarMoveY,null);
}
else
{
canvas.DrawBitmap (mBackgroundImageFar,0,mBGFarMoveY,null);
canvas.DrawBitmap (mBackgroundImageFar,0, newFarY, null);
}
感謝&方面的, Chakradhar。