Tagged Questions
0
votes
0answers
96 views
Platformer Collision Error [closed]
I am currently working on a relatively simple platform game that has an odd bug.You start the game by falling onto the ground (you spawn a few blocks above the ground), but when you land your feet get ...
1
vote
2answers
227 views
How do I make a Java gave without a JFrame?
I am working on an arcade-like game, and so far, I have been using JFrame. All the action occurs in the JFrame basically.
However, I've noticed that a lot of games that you install on a computer ...
5
votes
1answer
468 views
Appropriate level representation / data stucture for a 2D platfrom game?
I'm about to program a copy of Mario in Java. I'm thinking on 2 representations/data structures for the levels but I'm not sure which one should I choose:
A 2D integer array.
A quadtree to divide ...