0
votes
0answers
5 views

Collision not working

I have a problem in my game's collision. The game is "tiled based". The problem comes in when I place a tile that is supposed to block the player from walking into it, it produces a infinite vertical ...
0
votes
2answers
202 views

Slick2D Collision Detection - Strange Movement

The collection detection method I'm using currently can interpret a collision, but causes strange effects depending on the direction. It will: Always work if the player is hitting the right side of ...
0
votes
0answers
150 views

Rendering collision-polygon around incoming enemy object [closed]

I´m trying to make a simple 2D scrolling game for a school-project, and I've got a player, a background (scrolling) and a couple incoming objects. The enemy is being rendered at a random X-position ...
0
votes
2answers
542 views

java game - slick - collision handling

How can I manage collisions in slick ? I created map and every tile which is wall have option blocked = true; How to implement collision, that if I hit wall, I can move trough it? Also if I reach ...
2
votes
1answer
100 views

What is the fastest way to find overlaps in an array of rectangles?

I'm working on a "game" in my spare time, almost purely as a learning experience, and am at the point where collision detection between the player entity and enemy entities needs to occur. Both the ...
0
votes
0answers
377 views

Collision Detection in Slick 2D for Java

I'm new to Java Game Development, as well as Slick 2D, and I'm making a platforming game like Mario or Sonic. Anyways, I'm having trouble with collision detection. I have the code set up, but my ...
0
votes
0answers
1k views

Java Slick 2D collision detection [closed]

I'm new to Java Game Development, as well as Slick 2D, and I'm making a platforming game like Mario or Sonic. Anyways, I'm having trouble with collision detection. I have the code set up, but my ...
1
vote
3answers
90 views

testing for the color red

I am attempting to write a collision map for an old school RPG. I created an Image using the color red (255, 0, 0) where collisions should occur and am trying to test for when my sprites positions ...
0
votes
2answers
977 views

Rectangle collision detection algorithm half working

I am writing an algorithm for collision detection in slick2d + java that I will eventually use in a platformer game that I will be making. How the algorithm works is it detects how much the player is ...