Big Dumb PImage Transferal Thing...
in
Programming Questions
•
2 years ago
How do I go about moving images from a PImage array in one class to a PImage array in another class?
Below is the function in the second class that I've been trying to use to move the images from the other which is what seems to be the issue.
[CODE]
PImage[] sprites;
void addImage(PImage _s) {
sprites = (PImage[])append(sprites, _s);
}
[/CODE]
I'm probably going about it the wrong way so any help is appreciated.
1