我创建了一个游戏,你可以移动一个矩形并从天空中躲避其他下降的矩形.虽然每次矩形相交都没有任何反应.
如果(mSquare.intersect(jSquare)){
canvas.drawColor(Color.BLACK);
要么
collision = mSquare.intersect(jSquare);
if(collision==true){ canvas.drawColor(Color.RED);
} this always returns false no matter where the rectangles are.......
最佳答案
原文链接:https://www.f2er.com/android/430567.html