Slick2D is a wrapper around the LWJGL OpenGL library for Java.

learn more… | top users | synonyms

2
votes
2answers
234 views

Is there a way of placing a video in my Java game main menu

I have made a simple Java game, when I load the game a start-up menu pops up with a simple play button and a close button, if I press the start button Java changes to another class which takes the ...
5
votes
1answer
3k views

Slick2D and JBox2D. How to draw

Before asking this i did A LOT of searching on the net. I just can't do it. It's a little hard for me to understand. So how do i draw the images at the right screen positions coresponding to bodies in ...
2
votes
0answers
97 views

Java slick, html cant find AppletLoader

I have made a java game using slick state based game, as my game extends StatBasedGame it is not a true applet because it doesnt extend JApplet, so to solve that problem there is a method build in ...
0
votes
0answers
42 views

Checking against indexed arrays

In my code I have each particle created at the x, y position of the mouse. It then stores that in a Point array and increases y by 1 each frame so it zooms to the ground. I want to check the current x ...
0
votes
1answer
1k views

Slick2D Fonts don't work

I have Slick2D library and making a game in Java. I have been wondering, just a short question, how do you set fonts on Graphics object to draw in a different font. I can't make it work. I think it ...
2
votes
1answer
163 views

How to package resources, that are accessed directly , into a jar file

I have recently developed a game in Slick2D, i have accessed all my images directly e.g Image i = new Image("address.png"); as opposed to using a class that will load resources or using an input ...
2
votes
1answer
181 views

Putting my Java Slick game onto a website

I have made a GUI in Java using State Based Game, as it extends StateBasedGame and not JApplet its not a true applet, I want to put it on a website and am unsure on how to do this, I have been told ...
2
votes
2answers
2k views

Rotate image to 'point' to mouse position

I have a gun image on top of a tank image. I want the gun to point towards the mouse position so the mouse can be used to aim. The original gun image will be pointing upwards. I'm using Slick2D and ...
0
votes
1answer
140 views

Putting Java Slick game on a website using html

I have made a 2D java game using Slick and it extends StateBasedGame, it does not extend JApplet so it is not really a real application but from the link bellow it shows that StateBasedGame is part of ...
0
votes
1answer
145 views

Stop sprite from ghosting through another sprite

Ok so I've just started learning java (I usually program in Objective-C). My first game is a game similar to Pokémon, however, its a lot more simplified obviously... The trouble I'm having is I ...