We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you put the code into processing and run it, there is a error with full screen. please make a quick fix for this
The text was updated successfully, but these errors were encountered:
Moving fullScreen(); to a settings() block fixed it for me:
Enigma enigma; void settings() { fullScreen(); } void setup() { frameRate(30); blackground = loadImage("blacktexture.jpg"); for (int i = 0; i< letters.length; i++) { letters[i] = new Light(letterOrder.charAt(i), i); } lightOnSprite = loadImage("light.png");
enigma = new Enigma(); enigma.randomRotors(); enigma.randomPositions(); }
Sorry, something went wrong.
No branches or pull requests
When you put the code into processing and run it, there is a error with full screen. please make a quick fix for this
The text was updated successfully, but these errors were encountered: