Tagged Questions
0
votes
1answer
251 views
How can I create multiple images in an array in java using a for statement?
I wish to link to the 52 card images to an array, but without adding them individually. I was thinking something like creating an array and using a piece of code something like this.
Image[] card;
...
2
votes
2answers
68 views
Method should check array against itself?
I tried to make a method to tell me if my array contained any duplicate coordinates, and if so set a boolean to true, else, set it to false. Any idea why it continuously returns false?
public ...
-1
votes
2answers
121 views
How do I check an array against itself in java [closed]
I am trying to create a basic falling sand game in java, I have each particle store it's X and Y in a Point array. Each Point array is specific to it's element, so sand and water are two different ...
0
votes
2answers
62 views
Referencing indexed Arrays [duplicate]
Possible Duplicate:
Checking against indexed arrays
So i have my code, every time the mouse is pressed it draws a new particle at mouseX and mouseY and stores the position in an array so it ...
1
vote
2answers
134 views
Multiple Rectangle Generation [duplicate]
Possible Duplicate:
Drawing multiple pixels/rectangles
In my code i wrote a method that creates a rectangle at mouseX, mouseY. but all it does is update the position of that rectangle so it ...
1
vote
1answer
111 views
Java arrays - Keep getting NullPointerExcpetion
So I'm trying to make a game where I spawn 20 enemies. The enemies are supposed to be loaded into an array of enemies, and then the game is meant to draw them out in a for loop, the only issue is that ...
0
votes
0answers
79 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 ...