I have checked out the following link:
http://www.ehow.com/how_12134402_detect-rectangle-collision-java.html
I have made the 2 rectangles around my player and house but am confused about what my if statement should look like, I have a boolean set on x meaning if my rectangles intersect x will return true so I know I start with
if(x=true){
//what to type in here for my collision?
}
この衝突は、私の 2D 状態変更ゲームに必要です。キー入力で動き回るプレーヤーとマップ上の家があり、プレーヤーが家の中を歩けないようにしたいと考えています。
前もって感謝します。