There is only one element: two letters(s1 and s2) in a ArrayList s,
I want to use it in a text, but I dont know how to do that. I dont know how to code this part; text(s[j], 20, 350);
Here is my code:
ArrayList s;
s.add(s1[0]+s2[0]);
for (int j = 0; j< s.size(); j++) {
s.get(j);
font = loadFont("YuppyTC-Regular-40.vlw");
textFont(font);
textSize(20);
fill(100, 255, 100);
text(s[j], 20, 350);
}
Could anyone please tell me???
I would very appreciate any advice that will achieve this result!!!
It is about a game, when players destroy all letters, they win!
But now I dont know how to write this code:
If (there is nothing o the screen){
}
could anyone please tell me???
I would very appreciate any advice that will achieve this result!!!
I tried to made a game, when players are lost, the movements on the background should be paused, but I dont know how to do that, could anyone please tell me???
I would very appreciate any advice that will achieve this result!!!
Hi~
I tried to make my sketch recognize two-letters simple words, I use rita.wordnet, but now it recognize all abbreviations. Could I just make it recognizes simple words, like "go", "us", "we"?
I would appreciate any advice that will achieve this result or if you know of any other Processing code that will accomplish the same task.