P3D Sketch not running in Android Mode of 2.0b6
in
Android Processing
•
10 months ago
Why is this sketch not running on Emulator?
- void setup() {
size(480, 800, P3D);
}
void draw() {
background(0);
translate(width/2, height/2, -200);
box(100);
}
1