0

X軸を小さくするようにテクスチャを動かします。しかし、問題は、速度を上げて移動すると、正しく追加されないことです。私のサンプルコードは次のとおりです。

picx = 0;
newpicx = 1024;
if(speed<20) speed+=.05f;

picx -=speed;
newpicx -= speed;

if ((picx + 1024 - speed-4) <0) {
    picx = 1024;
}

if ((newpicx + 1024 - speed-4) <0) {
    newpicx = 1024;     
}
4

1 に答える 1