Tagged Questions
1
vote
1answer
222 views
Rendering multiple layers of tiles
I have a little problem, when I try to draw multiple layers of tiles in my game, only the top layer shows up. For example, I have a for loop to draw air tiles, and below that I have another to draw ...
0
votes
0answers
75 views
Tile engine changing number in array not changing texture
I draw my map from a txt file. Would I have to write to the text file to notice the changes I made? Right now it changes the number in the array but the tile texture doesn't change. Do I have to do ...
0
votes
3answers
201 views
Java NullPointerException Collision is the source, but not sure Why
I have tried running the code without the collision, and it works fine. But with it, I get a NullPointerException. The root of the problem has something to do with
blocked[xAxis][yAxis] = true;
...