Hello, I need some help. I want to display the picture (so she was always before my eyes, even when rotated). When using the background(img) function, I just have error: handleDraw() called before finishing
My code:
import processing.vr.*;
PImage img;
void setup() {
fullScreen(STEREO);
img = loadImage("starwars.png");
}
void draw() {
background(img);
}
The example I need: