1
vote
1answer
40 views

StateBased Java Game - How to tell if the mouse button is released?

i'm creating a statebased game using slick 2d, and lwjgl. I currently am using if statements to check whether the mouse is inside the area of the button, and another if statement to check whether the ...
1
vote
1answer
140 views

Slick2d | Shoot to the mouse direction

The problem: I've got this "Shot" class. In the code, the target variables are the mouseX and mouseY. So when i click the mouse button, my player class will create a new shot object. But the shooting ...
0
votes
1answer
84 views

LWJGL allow negative mouse coordinates (outside window)

I'm trying to get the mouse coordinates with LWJGL Mouse class. By default, LWJGL clamps the values to [0, width] and [0, height], so the coordinates are always inside the window, even when the mouse ...
0
votes
2answers
401 views

Why is my image rotating off center?

I'm using Java/Slick 2D to play with graphics and using the mouse to rotate an image. Something strange happens though: the image doesn't necessarily face the mouse. At 45 degrees from the normal line ...
0
votes
2answers
513 views

Java Slick2d - How to translate mouse coordinates to world coordinates

I am translating in my main class' render. How do I get the mouse position based on the translation? public void render(GameContainer gc, Graphics g) throws SlickException { float ...